revert tmux split keys to original

This commit is contained in:
Maxim Kraev 2016-07-18 13:03:47 +01:00 committed by Maksim Kraev
commit 09b6fde6af
19 changed files with 1422 additions and 85 deletions

View file

@ -48,6 +48,8 @@ alias gb='git branch'
alias gba='git branch -a'
alias gbd='git branch -d'
alias gbda='git branch --no-color --merged | command grep -vE "^(\*|\s*(master|develop|dev)\s*$)" | command xargs -n 1 git branch -d'
alias gbclean='git fetch -p && git branch --merged master | grep -v "\* master" | grep -v "master" | xargs -r -n 1 git branch -d'
alias gbda='git branch --merged | command grep -vE "^(\*|\s*master\s*$)" | command xargs -n 1 git branch -d'
alias gbl='git blame -b -w'
alias gbnm='git branch --no-merged'
alias gbr='git branch --remote'