Skip to content

Instantly share code, notes, and snippets.

@herko
Created September 22, 2018 21:16
Show Gist options
  • Save herko/ecbc5230d484a415aeadc353fb68fad7 to your computer and use it in GitHub Desktop.
Save herko/ecbc5230d484a415aeadc353fb68fad7 to your computer and use it in GitHub Desktop.
[
{ "keys": ["super+shift+."], "command": "erb" },
{ "keys": ["ctrl+k"], "command": "travel_to_pane", "args": {"direction": "up"} },
{ "keys": ["ctrl+l"], "command": "travel_to_pane", "args": {"direction": "right"} },
{ "keys": ["ctrl+j"], "command": "travel_to_pane", "args": {"direction": "down"} },
{ "keys": ["ctrl+h"], "command": "travel_to_pane", "args": {"direction": "left"} },
{ "keys": ["super+k", "super+l"], "command": "create_pane", "args": {"direction": "right"} },
{ "keys": ["super+k", "super+j"], "command": "create_pane", "args": {"direction": "down"} },
{ "keys": ["super+k", "super+shift+k"], "command": "destroy_pane", "args": {"direction": "up"} },
{ "keys": ["super+k", "super+shift+l"], "command": "destroy_pane", "args": {"direction": "right"} },
{ "keys": ["super+k", "super+shift+j"], "command": "destroy_pane", "args": {"direction": "down"} },
{ "keys": ["super+k", "super+shift+h"], "command": "destroy_pane", "args": {"direction": "left"} },
{ "keys": ["super+alt+w"], "command": "destroy_pane", "args": {"direction": "self"} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment