Added git completion to zsh
This commit is contained in:
parent
db2c1a6ee2
commit
70d93acb15
16
fzf/git-completion.zsh
Normal file
16
fzf/git-completion.zsh
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
_fzf_complete_git() {
|
||||||
|
ARGS="$@"
|
||||||
|
local branches
|
||||||
|
branches=$(git branch --all --sort=-committerdate --format="%(refname:short)")
|
||||||
|
if [[ $ARGS == 'git co'* || $ARGS == 'git checkout'* || $ARGS == 'git merge'* ]]; then
|
||||||
|
_fzf_complete -- "$@" < <(
|
||||||
|
echo $branches
|
||||||
|
)
|
||||||
|
else
|
||||||
|
eval "zle ${fzf_default_compeltion:-expand-or-complete}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
_fzf_complete_git_post() {
|
||||||
|
sed "s/^origin\///"
|
||||||
|
}
|
Reference in New Issue
Block a user