Added gitk and tig to Git completion.
This commit is contained in:
parent
81a1b591d4
commit
a36f551800
1 changed files with 12 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
#compdef git git-cvsserver git-receive-pack git-upload-archive git-upload-pack git-shell
|
#compdef git git-cvsserver git-receive-pack git-upload-archive git-upload-pack git-shell gitk tig
|
||||||
|
|
||||||
# Some parts of this completion's behaviour are configurable:
|
# Some parts of this completion's behaviour are configurable:
|
||||||
#
|
#
|
||||||
|
@ -4466,8 +4466,7 @@ _git_commands () {
|
||||||
stash:'stash away changes to dirty working directory'
|
stash:'stash away changes to dirty working directory'
|
||||||
status:'show working-tree status'
|
status:'show working-tree status'
|
||||||
submodule:'initialize, update, or inspect submodules'
|
submodule:'initialize, update, or inspect submodules'
|
||||||
tag:'create, list, delete or verify tag object signed with GPG'
|
tag:'create, list, delete or verify tag object signed with GPG')
|
||||||
gitk:'brows the repository interactively')
|
|
||||||
|
|
||||||
local -a ancillary_manipulator_commands
|
local -a ancillary_manipulator_commands
|
||||||
ancillary_manipulator_commands=(
|
ancillary_manipulator_commands=(
|
||||||
|
@ -5962,6 +5961,16 @@ __git_color_attributes () {
|
||||||
_describe -t attributes attribute attributes $*
|
_describe -t attributes attribute attributes $*
|
||||||
}
|
}
|
||||||
|
|
||||||
|
(( $+functions[_gitk] )) ||
|
||||||
|
_gitk () {
|
||||||
|
_git-log
|
||||||
|
}
|
||||||
|
|
||||||
|
(( $+functions[_tig] )) ||
|
||||||
|
_tig () {
|
||||||
|
_git-log
|
||||||
|
}
|
||||||
|
|
||||||
# Now, for the main driver…
|
# Now, for the main driver…
|
||||||
_git() {
|
_git() {
|
||||||
if (( CURRENT > 2 )); then
|
if (( CURRENT > 2 )); then
|
||||||
|
|
Loading…
Add table
Reference in a new issue