Guest User

Untitled

a guest
Feb 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. bind-key -n M-Down select-pane -D
  2. bind-key -n M-Up select-pane -U
  3. bind-key -n M-Left select-pane -L
  4. bind-key -n M-Right select-pane -R
  5.  
  6. bind-key -n M-j select-pane -D
  7. bind-key -n M-k select-pane -U
  8. bind-key -n M-l select-pane -L
  9. bind-key -n M-h select-pane -R
  10.  
  11. bind-key -n S-M-Right next-window
  12. bind-key -n S-M-Left previous-window
  13. bind-key -n S-M-Up split-window -h -c "#{pane_current_path}"
  14. bind-key -n S-M-Down split-window -v -c "#{pane_current_path}"
  15.  
  16. // these do not work
  17. bind-key -n S-M-l next-window
  18. bind-key -n S-M-h previous-window
  19. bind-key -n S-M-k split-window -h -c "#{pane_current_path}"
  20. bind-key -n S-M-j split-window -v -c "#{pane_current_path}"
Add Comment
Please, Sign In to add comment