Skip to content

Instantly share code, notes, and snippets.

@mukuljainx
Created February 9, 2018 06:41
Show Gist options
  • Save mukuljainx/43144654e84ed7f75df7037cb905a646 to your computer and use it in GitHub Desktop.
Save mukuljainx/43144654e84ed7f75df7037cb905a646 to your computer and use it in GitHub Desktop.
Sublime Editor Key for replicating partial behaviour of OS X (This is after switching keys Left Alt as Ctrl, Ctrl as Super, Win as Alt)
[
{ "keys": ["ctrl+right"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+left"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+shift+left"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["ctrl+shift+right"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["ctrl+up"], "command": "swap_line_up" },
{ "keys": ["ctrl+down"], "command": "swap_line_down" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment