Created
February 9, 2018 06:41
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "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