Skip to content

Instantly share code, notes, and snippets.

@ig10
Last active August 29, 2015 13:56
Show Gist options
  • Save ig10/9211375 to your computer and use it in GitHub Desktop.
Save ig10/9211375 to your computer and use it in GitHub Desktop.
OsxCustomKeysSBT2
[
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol", "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": ["super+left"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": false} },
{ "keys": ["super+right"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": false} },
{ "keys": ["super+shift+left"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
{ "keys": ["super+shift+right"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} },
{ "keys": ["super+shift+up"], "command": "swap_line_up" },
{ "keys": ["super+shift+down"], "command": "swap_line_down" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment