about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbewater <bewater>2010-03-04 16:13:54 +0000
committerbewater <bewater>2010-03-04 16:13:54 +0000
commitb2daf9a6fa95f74706d89216e2bf0eb19529b178 (patch)
tree705e2cf96da956f56d6da0f97cd023a18fd886ff
parentde3159d73ae3727d46f7daa2bfef2e990dcf4dc1 (diff)
downloadzsh-b2daf9a6fa95f74706d89216e2bf0eb19529b178.tar.gz
zsh-b2daf9a6fa95f74706d89216e2bf0eb19529b178.tar.xz
zsh-b2daf9a6fa95f74706d89216e2bf0eb19529b178.zip
_git: support for user-specific sub commands
-rw-r--r--ChangeLog7
-rw-r--r--Completion/Unix/Command/_git25
2 files changed, 30 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1218cb60b..3c01bff33 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-03-04  Frank Terbeck  <ft@bewatermyfriend.org>
+
+	* 27770: Completion/Unix/Command/_git: support for user specific
+	sub commands.
+
 2010-03-04  Peter Stephenson  <pws@csr.com>
 
 	* Frank: 27768: Functions/VCS_Info/VCS_INFO_realpath: shut up cd
@@ -12859,5 +12864,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.4923 $
+* $Revision: 1.4924 $
 *****************************************************
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index c87593e93..d7570cc6f 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -1,5 +1,25 @@
 #compdef git git-cvsserver git-receive-pack git-upload-archive git-upload-pack git-shell
 
+# Some parts of this completion's behaviour are configurable:
+#
+# Say, you got your own git sub-commands (git will run a program `git-foo'
+# when you run "git foo") and you want "git f<tab>" to complete that sub
+# commands name for you. You can make that sub-command know to the completion
+# via the user-command style:
+#
+#     % zstyle ':completion:*:*:git:*' user-commands foo:'description for foo'
+#
+# `user-commands' is a list style, so you can add any number of programs there.
+# The :description part is optional, so you could add all git-* programs from
+# your $path like this:
+#
+#     % zstyle ':completion:*:*:git:*' user-commands ${${(M)${(k)commands}:#git-*}/git-/}
+#
+# You could even create a function _git-foo() to handle specific completion
+# for that command.
+
+# TODO: There is still undocumented configurability in here.
+
 # TODO: All if (( words[(I)-option] )) should be turned into
 # if (( words[(I)-option] > 0 && words[(I)-option] < CURRENT )), as the user
 # may go back and want to add an option before -option and in that case should
@@ -304,7 +324,9 @@ _git_commands () {
     'upload-pack:command invoked by clone-pack and fetch-pack')
 
   local wanted_commands
-  zstyle -s ':completion:${curcontext}:' commands wanted_commands || wanted_commands="all -internal"
+  zstyle -s ":completion:${curcontext}:" commands wanted_commands || wanted_commands="all -internal"
+  local -a user_commands
+  zstyle -a ":completion:${curcontext}:" user-commands user_commands || user_commands=()
 
   local -aU unique_wanted_commands
   unique_wanted_commands=($=wanted_commands)
@@ -339,6 +361,7 @@ _git_commands () {
         commands+=($internal_commands) ;;
     esac
   done
+  commands+=( $user_commands )
 
   _describe -t commands 'git command' commands && ret=0
 }