Skip to content

Instantly share code, notes, and snippets.

@benhoIIand
Created September 4, 2014 08:51
Show Gist options
  • Select an option

  • Save benhoIIand/6189115cbf2203758d52 to your computer and use it in GitHub Desktop.

Select an option

Save benhoIIand/6189115cbf2203758d52 to your computer and use it in GitHub Desktop.
Sublime Key Mappings
[
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["ctrl+shift+up"], "command": "swap_line_up" },
{ "keys": ["ctrl+shift+down"], "command": "swap_line_down" },
{ "keys": ["alt+f3"], "command": "find_all_under" },
{ "keys": ["super+shift+a"], "command": "alignment" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment