Skip to content

Instantly share code, notes, and snippets.

@sycobuny
Created June 4, 2015 15:55
Show Gist options
  • Save sycobuny/97f6309abcff9bc763fb to your computer and use it in GitHub Desktop.
Save sycobuny/97f6309abcff9bc763fb to your computer and use it in GitHub Desktop.
Mapping new keys for resizing windows
# Allows us to resize windows with WASD like a video game
# Primarily useful when we're on a system with a vanilla setup (no option-as-Meta Key enabled)
# Note that these are upper-case letters - tmux is case-sensitive
bind-key -r W resize-pane -U 5
bind-key -r A resize-pane -L 5
bind-key -r S resize-pane -D 5
bind-key -r D resize-pane -R 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment