Skip to content
Snippets Groups Projects
Commit aaaeea31 authored by Nikolaj Sjujskij's avatar Nikolaj Sjujskij
Browse files

zsh completion: complete additional topics for `help`, not commands only

parent e82fad58
No related branches found
No related tags found
No related merge requests found
......@@ -361,6 +361,19 @@
'urls:URL:_hg_urls'
}
_hg_add_help_topics=(
config dates diffs environment extensions filesets glossary hgignore hgweb
merge-tools multirevs obsolescence patterns phases revisions revsets
subrepos templating urls
)
_hg_help_topics() {
local topics
(( $#_hg_cmd_list )) || _hg_get_commands
topics=($_hg_cmd_list $_hg_add_help_topics)
_describe -t help_topics 'help topics' topics
}
# Common options
_hg_global_opts=(
'(--repository -R)'{-R+,--repository}'[repository root directory]:repository:_files -/'
......@@ -588,7 +601,7 @@
_hg_cmd_help() {
_arguments -s -w : $_hg_global_opts \
'*:mercurial command:_hg_commands'
'*:mercurial help topic:_hg_help_topics'
}
_hg_cmd_identify() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment