completion: zsh: don't override suffix on _detault
[alt-git.git] / contrib / completion / git-completion.zsh
blob2565d2eef4cd23ac2137d4b047300ebc4078fcdb
1 #compdef git gitk
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 on the
8 # same directory as this script.
10 # If your script is on ~/.git-completion.sh instead, you can configure it on
11 # your ~/.zshrc:
13 # zstyle ':completion:*:*:git:*' script ~/.git-completion.sh
15 # The recommended way to install this script is to copy to
16 # '~/.zsh/completion/_git', and then add the following to your ~/.zshrc file:
18 # fpath=(~/.zsh/completion $fpath)
20 complete ()
22 # do nothing
23 return 0
26 zstyle -T ':completion:*:*:git:*' tag-order && \
27 zstyle ':completion:*:*:git:*' tag-order 'common-commands'
29 zstyle -s ":completion:*:*:git:*" script script
30 test -z "$script" && script="$(dirname ${funcsourcetrace[1]%:*})"/git-completion.bash
31 ZSH_VERSION='' . "$script"
33 __gitcomp ()
35 emulate -L zsh
37 local cur_="${3-$cur}"
39 case "$cur_" in
40 --*=)
43 local c IFS=$' \t\n'
44 local -a array
45 for c in ${=1}; do
46 c="$c${4-}"
47 case $c in
48 --*=*|*.) ;;
49 *) c="$c " ;;
50 esac
51 array+=("$c")
52 done
53 compset -P '*[=:]'
54 compadd -Q -S '' -p "${2-}" -a -- array && _ret=0
56 esac
59 __gitcomp_nl ()
61 emulate -L zsh
63 local IFS=$'\n'
64 compset -P '*[=:]'
65 compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
68 __gitcomp_file ()
70 emulate -L zsh
72 local IFS=$'\n'
73 compset -P '*[=:]'
74 compadd -Q -p "${2-}" -f -- ${=1} && _ret=0
77 __git_zsh_bash_func ()
79 emulate -L ksh
81 local command=$1
83 local completion_func="_git_${command//-/_}"
84 declare -f $completion_func >/dev/null && $completion_func && return
86 local expansion=$(__git_aliased_command "$command")
87 if [ -n "$expansion" ]; then
88 completion_func="_git_${expansion//-/_}"
89 declare -f $completion_func >/dev/null && $completion_func
93 __git_zsh_cmd_common ()
95 local -a list
96 list=(
97 add:'add file contents to the index'
98 bisect:'find by binary search the change that introduced a bug'
99 branch:'list, create, or delete branches'
100 checkout:'checkout a branch or paths to the working tree'
101 clone:'clone a repository into a new directory'
102 commit:'record changes to the repository'
103 diff:'show changes between commits, commit and working tree, etc'
104 fetch:'download objects and refs from another repository'
105 grep:'print lines matching a pattern'
106 init:'create an empty Git repository or reinitialize an existing one'
107 log:'show commit logs'
108 merge:'join two or more development histories together'
109 mv:'move or rename a file, a directory, or a symlink'
110 pull:'fetch from and merge with another repository or a local branch'
111 push:'update remote refs along with associated objects'
112 rebase:'forward-port local commits to the updated upstream head'
113 reset:'reset current HEAD to the specified state'
114 rm:'remove files from the working tree and from the index'
115 show:'show various types of objects'
116 status:'show the working tree status'
117 tag:'create, list, delete or verify a tag object signed with GPG')
118 _describe -t common-commands 'common commands' list && _ret=0
121 __git_zsh_cmd_alias ()
123 local -a list
124 list=(${${${(0)"$(git config -z --get-regexp '^alias\.')"}#alias.}%$'\n'*})
125 _describe -t alias-commands 'aliases' list $* && _ret=0
128 __git_zsh_cmd_all ()
130 local -a list
131 emulate ksh -c __git_compute_all_commands
132 list=( ${=__git_all_commands} )
133 _describe -t all-commands 'all commands' list && _ret=0
136 __git_zsh_main ()
138 local curcontext="$curcontext" state state_descr line
139 typeset -A opt_args
140 local -a orig_words
142 orig_words=( ${words[@]} )
144 _arguments -C \
145 '(-p --paginate --no-pager)'{-p,--paginate}'[pipe all output into ''less'']' \
146 '(-p --paginate)--no-pager[do not pipe git output into a pager]' \
147 '--git-dir=-[set the path to the repository]: :_directories' \
148 '--bare[treat the repository as a bare repository]' \
149 '(- :)--version[prints the git suite version]' \
150 '--exec-path=-[path to where your core git programs are installed]:: :_directories' \
151 '--html-path[print the path where git''s HTML documentation is installed]' \
152 '--info-path[print the path where the Info files are installed]' \
153 '--man-path[print the manpath (see `man(1)`) for the man pages]' \
154 '--work-tree=-[set the path to the working tree]: :_directories' \
155 '--namespace=-[set the git namespace]' \
156 '--no-replace-objects[do not use replacement refs to replace git objects]' \
157 '(- :)--help[prints the synopsis and a list of the most commonly used commands]: :->arg' \
158 '(-): :->command' \
159 '(-)*:: :->arg' && return
161 case $state in
162 (command)
163 _alternative \
164 'alias-commands:alias:__git_zsh_cmd_alias' \
165 'common-commands:common:__git_zsh_cmd_common' \
166 'all-commands:all:__git_zsh_cmd_all' && _ret=0
168 (arg)
169 local command="${words[1]}" __git_dir
171 if (( $+opt_args[--bare] )); then
172 __git_dir='.'
173 else
174 __git_dir=${opt_args[--git-dir]}
177 (( $+opt_args[--help] )) && command='help'
179 words=( ${orig_words[@]} )
181 __git_zsh_bash_func $command
183 esac
186 _git ()
188 local _ret=1
189 local cur cword prev
191 cur=${words[CURRENT]}
192 prev=${words[CURRENT-1]}
193 let cword=CURRENT-1
195 if (( $+functions[__${service}_zsh_main] )); then
196 __${service}_zsh_main
197 else
198 emulate ksh -c __${service}_main
201 let _ret && _default && _ret=0
202 return _ret
205 _git