Created
September 17, 2015 06:24
-
-
Save monners/11b534738f9d44b3de62 to your computer and use it in GitHub Desktop.
User keymap for sublime text 3 setup
This file contains 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+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