diff options
Diffstat (limited to 'argvAutoshell.go')
| -rw-r--r-- | argvAutoshell.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/argvAutoshell.go b/argvAutoshell.go index d374360..082dbec 100644 --- a/argvAutoshell.go +++ b/argvAutoshell.go @@ -18,7 +18,7 @@ import ( // used for shell auto completion func (args) doBashAuto() { - argv.doBashHelp() + // argv.doBashHelp() switch argv.BashAuto[0] { case "merge": fmt.Println("--force") @@ -42,6 +42,7 @@ func (args) doBashHelp() { return } if argv.BashAuto[0] != ARGNAME { + fmt.Fprintln(os.Stderr, argv.BashAuto[0]) // if this is not the name of the command, the user already started doing something return } |
