diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-03-09 14:06:49 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-03-09 14:08:49 +0000 |
commit | 33bd9136d6700dcef772a48dc565fe11a7dfb85a (patch) | |
tree | 93c2eb1c7eb6df098c9797e8449bf1d2b6575e21 /Completion/Unix | |
parent | f4dfca490cb6d4b4fc7c6b977db56ab0d718de21 (diff) | |
download | zsh-33bd9136d6700dcef772a48dc565fe11a7dfb85a.tar.gz zsh-33bd9136d6700dcef772a48dc565fe11a7dfb85a.tar.xz zsh-33bd9136d6700dcef772a48dc565fe11a7dfb85a.zip |
38120: _git: Document the internal helper function __git_ignore_line.
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_git | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 7a459f1fb..2dd9a8028 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5038,6 +5038,16 @@ __git_describe_commit () { # Completion Wrappers +# '__git_ignore_line $callee "${callee_args[@]}" "${callee_compadd_args[@]}"' +# invokes '$callee "${callee_args[@]}" "${callee_compadd_args[@]}"' with +# callee_compadd_args modified to exclude positional parameters to the completed +# command from being completed. This causes 'git add foo <TAB>' not to offer +# 'foo' again. +# +# Note: This function can't be used to wrap bare 'compadd' calls that use a '--' +# argument terminator. It can wrap functions of the form +# f() { shift $N; compadd "$@" -a - mymatches } +# . (( $+functions[__git_ignore_line] )) || __git_ignore_line () { declare -a ignored |