diff options
Diffstat (limited to 'commands/help.go')
-rw-r--r-- | commands/help.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/help.go b/commands/help.go index 07332303..a3cfff40 100644 --- a/commands/help.go +++ b/commands/help.go @@ -36,7 +36,7 @@ func (Help) Aliases() []string { } func (*Help) CompleteTopic(arg string) []string { - return CompletionFromList(pages, arg) + return FilterList(pages, arg, nil) } func (h *Help) ParseTopic(arg string) error { |