Skip to content

Instantly share code, notes, and snippets.

@SauloSilva
Created December 30, 2015 05:38
Show Gist options
  • Save SauloSilva/b24f03ba1f69ed94dd26 to your computer and use it in GitHub Desktop.
Save SauloSilva/b24f03ba1f69ed94dd26 to your computer and use it in GitHub Desktop.
sublime keymap
[
// jump between block
{"keys": ["alt+k"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false}},
{"keys": ["alt+j"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true}},
{"keys": ["shift+alt+k"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false, "extend": true}},
{"keys": ["shift+alt+j"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true, "extend": true}},
// Origami
{ "keys": ["super+k", "super+w"], "command": "destroy_pane", "args": {"direction": "self"} },
{ "keys": ["super+k", "k"], "command": "travel_to_pane", "args": {"direction": "up"} },
{ "keys": ["super+k", "l"], "command": "travel_to_pane", "args": {"direction": "right"} },
{ "keys": ["super+k", "j"], "command": "travel_to_pane", "args": {"direction": "down"} },
{ "keys": ["super+k", "h"], "command": "travel_to_pane", "args": {"direction": "left"} },
{ "keys": ["ctrl+shift+f2"], "command": "select_all_bookmarks" },
{ "keys": ["ctrl+shift+l"], "command": "split_selection_into_lines" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment