Created
December 30, 2015 05:38
-
-
Save SauloSilva/b24f03ba1f69ed94dd26 to your computer and use it in GitHub Desktop.
sublime keymap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
// 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