Skip to content

Instantly share code, notes, and snippets.

@abrahamfast
Last active August 21, 2018 11:14
Show Gist options
  • Save abrahamfast/582b2b13be563fcfd7ee92d89558ccff to your computer and use it in GitHub Desktop.
Save abrahamfast/582b2b13be563fcfd7ee92d89558ccff to your computer and use it in GitHub Desktop.
split tab and window in sublime
[
{ "keys": [":", "s", "p"], "command": "travel_to_pane", "args": {"direction": "up"} },
{ "keys": [":", "v", "s", "p"], "command": "travel_to_pane", "args": {"direction": "right"} },
{ "keys": [":", "b", "d"], "command": "destroy_pane", "args": {"direction": "self"} },
{ "keys": [":", "p", "z"], "command": "zoom_pane", "args": {"fraction": 1} },
{ "keys": [":", "p", "z", "d"], "command": "unzoom_pane", "args": {} },
{ "keys": [":", "p", "u"], "command": "travel_to_pane", "args": {"direction": "up"} },
{ "keys": [":", "p", "r"], "command": "travel_to_pane", "args": {"direction": "right"} },
{ "keys": [":", "p", "d"], "command": "travel_to_pane", "args": {"direction": "down"} },
{ "keys": [":", "p", "l"], "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