Skip to content

Instantly share code, notes, and snippets.

@rhberro
Created August 11, 2016 19:43
Show Gist options
  • Save rhberro/c5207ee0bc1344c81f65417171967e93 to your computer and use it in GitHub Desktop.
Save rhberro/c5207ee0bc1344c81f65417171967e93 to your computer and use it in GitHub Desktop.
My latest user sublime keymap.
[
// origami.
{ "keys": [":", "v", "s", "p"], "command": "create_pane", "args": {"direction": "right", "give_focus": true} },
{ "keys": [":", "s", "p"], "command": "create_pane", "args": {"direction": "down", "give_focus": true} },
{ "keys": [":", "b", "d"], "command": "destroy_pane", "args": {"direction": "self"} },
{ "keys": [":", "w", "="], "command": "zoom_pane", "args": {"fraction": 0.9} },
{ "keys": [":", "w", "-"], "command": "unzoom_pane" },
{ "keys": [":", "w", "n"], "command": "travel_to_pane", "args": {"direction": "right"} },
{ "keys": [":", "w", "p"], "command": "travel_to_pane", "args": {"direction": "left"} },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment