mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-15 05:01:13 +00:00
729fd07ab0
This prevents performance loss when git is aliased to hub. Signed-off-by: Sorin Ionescu <sorin.ionescu@gmail.com>
20 lines
380 B
Plaintext
20 lines
380 B
Plaintext
#compdef git-info
|
|
#autoload
|
|
|
|
#
|
|
# Completes git-info.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
if ! is-true "$(command git rev-parse --is-inside-work-tree 2> /dev/null)"; then
|
|
return 1
|
|
fi
|
|
|
|
_arguments "1:toggle:((
|
|
on\:'enable in-prompt information for the current repository'
|
|
off\:'disable in-prompt information for the current repository'
|
|
))" && return 0
|
|
|