Merge pull request #62 from linux4life798/optionsfix
Minor option fix for go tool objdump and asm
This commit is contained in:
commit
6f14871ed7
|
@ -148,6 +148,7 @@ func main() {
|
||||||
"-D": complete.PredictAnything,
|
"-D": complete.PredictAnything,
|
||||||
"-I": complete.PredictDirs("*"),
|
"-I": complete.PredictDirs("*"),
|
||||||
"-S": complete.PredictNothing,
|
"-S": complete.PredictNothing,
|
||||||
|
"-V": complete.PredictNothing,
|
||||||
"-debug": complete.PredictNothing,
|
"-debug": complete.PredictNothing,
|
||||||
"-dynlink": complete.PredictNothing,
|
"-dynlink": complete.PredictNothing,
|
||||||
"-e": complete.PredictNothing,
|
"-e": complete.PredictNothing,
|
||||||
|
@ -274,6 +275,7 @@ func main() {
|
||||||
"objdump": {
|
"objdump": {
|
||||||
Flags: complete.Flags{
|
Flags: complete.Flags{
|
||||||
"-s": complete.PredictAnything,
|
"-s": complete.PredictAnything,
|
||||||
|
"-S": complete.PredictNothing,
|
||||||
},
|
},
|
||||||
Args: anyFile,
|
Args: anyFile,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue