diff options
author | Stephen Boyd <bebarino@gmail.com> | 2009-05-03 23:25:33 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-05 22:05:37 -0700 |
commit | 9b82d63b5a109112643843a8e6d1a201fdf2ec63 (patch) | |
tree | ba34b6e41c3ba30e6ed43aaac751cebaf6cacf51 /contrib | |
parent | 0aa62fd0414b0e8a6271d1d0dd80e5f640633473 (diff) | |
download | git-9b82d63b5a109112643843a8e6d1a201fdf2ec63.tar.gz git-9b82d63b5a109112643843a8e6d1a201fdf2ec63.tar.xz |
completion: complete values for help.format
Signed-off-by: Stephen Boyd <bebarino@gmail.com>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/completion/git-completion.bash | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index ec02b06cf..023b0c997 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1348,6 +1348,10 @@ _git_config () " return ;; + help.format) + __gitcomp "man info web html" + return + ;; *.*) COMPREPLY=() return |