Skip to content

Instantly share code, notes, and snippets.

@thurt
thurt / sublime_keybinding_gotoNextEmptyLine.JSON
Last active August 29, 2015 14:28
Keyboard shortcut for go to next empty line in Sublime Text. Add to Preferences > Key Bindings -- User
[
{"keys": ["alt+up"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false}},
{"keys": ["alt+down"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true}},
{"keys": ["shift+alt+up"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false, "extend": true}},
{"keys": ["shift+alt+down"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true, "extend": true}},
]