diff options
author | Ben Sima <ben@bsima.me> | 2020-06-18 14:56:47 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-06-18 14:56:47 -0700 |
commit | cd91afea0d9e3ed6191885c1e25cc5f1cd614b27 (patch) | |
tree | f79811fa2610e40b2f446a7a3d342390fce7c9a4 /lib | |
parent | 9128ee40ec77b5df0ac0ba38254098b2d653327e (diff) |
tmux: next/previous layout
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tmux | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -36,6 +36,10 @@ bind -n S-Right next-window # Set current window pane to 80 columns bind-key 8 resize-pane -x 80 +# cycle pane layout +bind-key N next-layout +bind-key P previous-layout + ## Text manipulation # vim-like copy/paste @@ -47,7 +51,7 @@ bind ] paste-buffer # copy/paste with xclip bind-key -Tcopy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -sel clip -i' -# buffer +# select buffer to paste from bind Space choose-buffer ## Meta |