Created
April 5, 2013 19:52
-
-
Save Sjeanpierre/5322117 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias muxnew='tmux new -s' | |
alias muxlist='tmux list-sessions' | |
alias muxswitch='tmux switch -t' | |
alias muxsplit='tmux split-window -h' | |
alias muxdown='tmux select-pane -D' | |
alias muxup='tmux select-pane -U' | |
alias muxleft='tmux select-pane -L' | |
alias muxright='tmux select-pane -R' | |
alias muxnewtab='tmux new-window' | |
alias muxtab='tmux select-window -t' | |
alias muxbrb='tmux detach' | |
alias muxget='tmux attach -t' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment