Merge pull request #294 from GuillaumeSeren/feature/git-missing-add-ref-completion

Add ref completion to git-missing.
This commit is contained in:
hemanth.hm 2014-12-12 23:27:58 +05:30
commit fb573b2c4d

View file

@ -57,6 +57,11 @@ _git_ignore(){
esac
}
_git_missing(){
# Suggest all known refs
__gitcomp "$(git for-each-ref --format='%(refname:short)')"
}
_git_refactor(){
__git_extras_workflow "refactor"
}