From 79df5a832e4a584253cd3b44f4ceaff73089a195 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Thu, 4 Oct 2007 08:24:32 +0000 Subject: Mikael Magnusson: 23903: complete both modified and added files for git commit. --- Completion/Unix/Command/_git | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'Completion/Unix/Command/_git') diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 3771da1a4..dfb96558a 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1568,7 +1568,7 @@ _git-commit () { '(-q --quiet -v --verbose)'{-q,--quiet}'[suppress commit summary message]' \ '(-q --quiet -v --verbose)'{-v,--verbose}'[show unified diff of all file changes]' \ '(-u --untracked-files)'{-u,--untracked-files}'[show files in untracked directories]' \ - '*:file:__git_modified_files' \ + '*:file:__git_changed_files' \ - '(message)' \ '--amend[amend the tip of the current branch]' \ {-c,--reedit-message=}'[use existing commit object and edit log message]:commit:__git_commits' \ @@ -2624,6 +2624,18 @@ __git_unmerged_files () { __git_files $* --unmerged } +#this is for git-commit which can take files both git-added and not +(( $+functions[__git_changed_files] )) || +__git_changed_files () { + gitdir=$(_call_program gitdir git rev-parse --git-dir 2>/dev/null) + __git_command_successful || return + + files=(${(ps:\0:)"$(_call_program files git diff-index -z --name-only HEAD 2>/dev/null)"}) + __git_command_successful || return + + _wanted files expl 'index file' _multi_parts $@ - / files +} + (( $+functions[__git_tree_files] )) || __git_tree_files () { local multi_parts_opts -- cgit 1.4.1