mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
Mikael Magnusson: 23903: complete both modified and added files for git commit.
This commit is contained in:
parent
91b9f3d786
commit
79df5a832e
2 changed files with 18 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-10-04 Clint Adams <clint@zsh.org>
|
||||
|
||||
* Mikael Magnusson: 23903: Completion/Unix/Command/_git:
|
||||
complete both modified and added files for git commit.
|
||||
|
||||
2007-10-02 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 23896: configure.ac, INSTALL, README: replace
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue