diff options
Diffstat (limited to 'commands/prompt.go')
-rw-r--r-- | commands/prompt.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/prompt.go b/commands/prompt.go index d42a6597..dd259c30 100644 --- a/commands/prompt.go +++ b/commands/prompt.go @@ -40,7 +40,7 @@ func (Prompt) Complete(args []string) []string { if hascommand { return nil } - cs, _ = GlobalCommands.GetCompletions(args[1]) + cs = GlobalCommands.Names() } if cs == nil { return nil |