diff options
author | Clint Adams <clint@users.sourceforge.net> | 2007-10-18 20:52:42 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2007-10-18 20:52:42 +0000 |
commit | 560da971cc4125323cf1b77566b0f0d43fd3a84a (patch) | |
tree | c979a9d1fff2933053e3ca16e3bfdbd243937140 | |
parent | ba34574308405f8f81408f7779b521bac9399b74 (diff) | |
download | zsh-560da971cc4125323cf1b77566b0f0d43fd3a84a.tar.gz zsh-560da971cc4125323cf1b77566b0f0d43fd3a84a.tar.xz zsh-560da971cc4125323cf1b77566b0f0d43fd3a84a.zip |
Mikael Magnusson: 23988: fix git-svn commands completion.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Unix/Command/_git | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 421bbc813..ab9ebaaa0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-10-18 Clint Adams <clint@zsh.org> + * Mikael Magnusson: 23988: Completion/Unix/Command/_git: fix + git-svn commands completion. + * 23989: Src/Modules/curses.c: add broken zcurses -C to set window colors. diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index d46c12acc..4400575f0 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -2345,6 +2345,7 @@ _git-svn () { 'set-tree:commit given commit or tree to SVN repository' 'show-ignore:output corresponding .gitignore file of svn:ignore' 'commit-diff:commit diff of two tree-ishs') + _describe -t commands command commands && ret=0 ;; (options) declare -a arguments |