Skip to content

Instantly share code, notes, and snippets.

@thurt
Last active August 29, 2015 14:28
Show Gist options
  • Save thurt/b5e441e771fe317973ac to your computer and use it in GitHub Desktop.
Save thurt/b5e441e771fe317973ac to your computer and use it in GitHub Desktop.
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}},
]
@thurt
Copy link
Author

thurt commented Aug 24, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment