Merge pull request #62 from linux4life798/optionsfix

Minor option fix for go tool objdump and asm
This commit is contained in:
Eyal Posener 2018-04-10 09:43:25 +03:00 committed by GitHub
commit 6f14871ed7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -148,6 +148,7 @@ func main() {
"-D": complete.PredictAnything,
"-I": complete.PredictDirs("*"),
"-S": complete.PredictNothing,
"-V": complete.PredictNothing,
"-debug": complete.PredictNothing,
"-dynlink": complete.PredictNothing,
"-e": complete.PredictNothing,
@ -274,6 +275,7 @@ func main() {
"objdump": {
Flags: complete.Flags{
"-s": complete.PredictAnything,
"-S": complete.PredictNothing,
},
Args: anyFile,
},