diff options
author | Clint Adams <clint@users.sourceforge.net> | 2007-10-06 01:09:22 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2007-10-06 01:09:22 +0000 |
commit | e18276d0317756908311930a4f57a0b182e7b1de (patch) | |
tree | cbf61643add1571a19611a21becf82c9d086da29 /Completion/Unix | |
parent | c0cb5d31d17af7e98f454303a722495a53cfd28e (diff) | |
download | zsh-e18276d0317756908311930a4f57a0b182e7b1de.tar.gz zsh-e18276d0317756908311930a4f57a0b182e7b1de.tar.xz zsh-e18276d0317756908311930a4f57a0b182e7b1de.zip |
Mikael Magnusson: 23907: add --cached option to git-diff completion.
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_git | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index ddc84c6e0..5ab64f817 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1585,6 +1585,7 @@ __git_zstyle_default ':completion::complete:git-commit:argument-rest:*' ignore-l _git-diff () { _arguments -S \ $diff_args \ + '--cached[show diff between index and named commit]' \ '::original revision:__git_commits' \ '::new revision:__git_commits' \ '*::index file:__git_modified_files' && ret=0 |