]> git.phdru.name Git - dotfiles.git/commitdiff
.shellrc: add completion for git {fixup,rbi,rbia,rbiap,rbip}
authorOleg Broytman <phd@phdru.name>
Tue, 2 Aug 2016 17:37:17 +0000 (20:37 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 2 Aug 2016 17:37:17 +0000 (20:37 +0300)
.shellrc

index bd1228e0d3a2caa4ec101307e34917d40c51ead5..333091c0c2cb837abd4ff16bcaa0bf55f948bb58 100644 (file)
--- a/.shellrc
+++ b/.shellrc
@@ -172,6 +172,15 @@ if test -x /usr/bin/git >/dev/null 2>&1; then
    }
 
    if test -n "$BASH_VERSION"; then
+      # completion for global aliases in .gitconfig
+      # fixup rbi rbia rbiap rbip - delegate to git-rebase completion
+
+      _git_fixup() { _git_rebase ; }
+      _git_rbi() { _git_rebase ; }
+      _git_rbia() { _git_rebase ; }
+      _git_rbiap() { _git_rebase ; }
+      _git_rbip() { _git_rebase ; }
+
       # list remotes with URLs matching a regexp
       list_remotes() {
          GIT_REMOTES=""