Skip to content

Instantly share code, notes, and snippets.

@monners
Created September 17, 2015 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monners/11b534738f9d44b3de62 to your computer and use it in GitHub Desktop.
Save monners/11b534738f9d44b3de62 to your computer and use it in GitHub Desktop.
User keymap for sublime text 3 setup
[
{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+a"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+shift+a"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "subword_ends", "forward": true} },
{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "subwords", "forward": false} },
{ "keys": ["ctrl+shift+j"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
{ "keys": ["ctrl+shift+k"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} },
{ "keys": ["super+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} },
{ "keys": ["ctrl+super+p"], "command": "swap_line_up" },
{ "keys": ["ctrl+super+n"], "command": "swap_line_down" },
{ "keys": ["super+\\"], "command": "toggle_side_bar" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment