I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
365 B

  1. # Enable VI emulation keys.
  2. set-window-option -g mode-keys vi
  3. set-window-option -g status-keys vi
  4. # Selection with VI keys.
  5. bind -r h select-pane -L
  6. bind -r j select-pane -D
  7. bind -r k select-pane -U
  8. bind -r l select-pane -R
  9. # Resize with VI keys.
  10. bind -r C-h resize-pane -L 1
  11. bind -r C-j resize-pane -D 1
  12. bind -r C-k resize-pane -U 1
  13. bind -r C-l resize-pane -R 1