3 # zsh completion wrapper for git
5 # Copyright (c) 2012-2013 Felipe Contreras <felipe.contreras@gmail.com>
7 # You need git's bash completion script installed somewhere, by default it
8 # would be the location bash-completion uses.
10 # If your script is somewhere else, you can configure it on your ~/.zshrc:
12 # zstyle ':completion:*:*:git:*' script ~/.git-completion.zsh
14 # The recommended way to install this script is to copy to '~/.zsh/_git', and
15 # then add the following to your ~/.zshrc file:
17 # fpath=(~/.zsh $fpath)
25 zstyle
-T ':completion:*:*:git:*' tag-order
&& \
26 zstyle
':completion:*:*:git:*' tag-order
'common-commands'
28 zstyle
-s ":completion:*:*:git:*" script script
29 if [ -z "$script" ]; then
33 $
(dirname ${funcsourcetrace[1]%:*})/git-completion.bash
34 '/etc/bash_completion.d/git' # fedora, old debian
35 '/usr/share/bash-completion/completions/git' # arch, ubuntu, new debian
36 '/usr/share/bash-completion/git' # gentoo
38 for e
in $locations; do
39 test -f $e && script="$e" && break
42 GIT_SOURCING_ZSH_COMPLETION
=y .
"$script"
48 local cur_
="${3-$cur}"
65 compadd
-Q -S '' -p "${2-}" -a -- array
&& _ret
=0
76 compadd
-Q -- ${=1} && _ret
=0
85 compadd
-Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
88 __gitcomp_nl_append ()
93 compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret
=0
96 __gitcomp_file_direct
()
102 compadd
-Q -f -- ${=1} && _ret
=0
111 compadd
-Q -p "${2-}" -f -- ${=1} && _ret
=0
114 __git_zsh_bash_func
()
120 local completion_func
="_git_${command//-/_}"
121 declare -f $completion_func >/dev
/null
&& $completion_func && return
123 local expansion
=$
(__git_aliased_command
"$command")
124 if [ -n "$expansion" ]; then
126 completion_func
="_git_${expansion//-/_}"
127 declare -f $completion_func >/dev
/null
&& $completion_func
131 __git_zsh_cmd_common
()
135 add
:'add file contents to the index'
136 bisect
:'find by binary search the change that introduced a bug'
137 branch
:'list, create, or delete branches'
138 checkout
:'checkout a branch or paths to the working tree'
139 clone
:'clone a repository into a new directory'
140 commit
:'record changes to the repository'
141 diff:'show changes between commits, commit and working tree, etc'
142 fetch
:'download objects and refs from another repository'
143 grep:'print lines matching a pattern'
144 init
:'create an empty Git repository or reinitialize an existing one'
145 log
:'show commit logs'
146 merge
:'join two or more development histories together'
147 mv:'move or rename a file, a directory, or a symlink'
148 pull
:'fetch from and merge with another repository or a local branch'
149 push
:'update remote refs along with associated objects'
150 rebase
:'forward-port local commits to the updated upstream head'
151 reset:'reset current HEAD to the specified state'
152 rm:'remove files from the working tree and from the index'
153 show
:'show various types of objects'
154 status
:'show the working tree status'
155 tag
:'create, list, delete or verify a tag object signed with GPG')
156 _describe
-t common-commands
'common commands' list
&& _ret
=0
159 __git_zsh_cmd_alias
()
162 list
=(${${${(0)"$(git config -z --get-regexp '^alias\.')"}#alias.}%$
'\n'*})
163 _describe
-t alias-commands
'aliases' list $
* && _ret
=0
169 emulate ksh
-c __git_compute_all_commands
170 list
=( ${=__git_all_commands} )
171 _describe
-t all-commands
'all commands' list
&& _ret
=0
176 local curcontext
="$curcontext" state state_descr line
180 orig_words
=( ${words[@]} )
183 '(-p --paginate --no-pager)'{-p,--paginate}'[pipe all output into ''less'']' \
184 '(-p --paginate)--no-pager[do not pipe git output into a pager]' \
185 '--git-dir=-[set the path to the repository]: :_directories' \
186 '--bare[treat the repository as a bare repository]' \
187 '(- :)--version[prints the git suite version]' \
188 '--exec-path=-[path to where your core git programs are installed]:: :_directories' \
189 '--html-path[print the path where git''s HTML documentation is installed]' \
190 '--info-path[print the path where the Info files are installed]' \
191 '--man-path[print the manpath (see `man(1)`) for the man pages]' \
192 '--work-tree=-[set the path to the working tree]: :_directories' \
193 '--namespace=-[set the git namespace]' \
194 '--no-replace-objects[do not use replacement refs to replace git objects]' \
195 '(- :)--help[prints the synopsis and a list of the most commonly used commands]: :->arg' \
197 '(-)*:: :->arg' && return
202 'alias-commands:alias:__git_zsh_cmd_alias' \
203 'common-commands:common:__git_zsh_cmd_common' \
204 'all-commands:all:__git_zsh_cmd_all' && _ret
=0
207 local command="${words[1]}" __git_dir
209 if (( $
+opt_args
[--bare] )); then
212 __git_dir
=${opt_args[--git-dir]}
215 (( $
+opt_args
[--help] )) && command='help'
217 words
=( ${orig_words[@]} )
219 __git_zsh_bash_func
$command
229 cur
=${words[CURRENT]}
230 prev
=${words[CURRENT-1]}
233 if (( $
+functions
[__
${service}_zsh_main
] )); then
234 __
${service}_zsh_main
236 emulate ksh
-c __
${service}_main
239 let _ret
&& _default
&& _ret
=0