Created
January 21, 2014 17:02
-
-
Save guptag/8543837 to your computer and use it in GitHub Desktop.
Sublime User Key Bindings
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
[ | |
{ "keys": ["ctrl+left"], "command": "move", "args": {"by": "words", "forward": false} }, | |
{ "keys": ["ctrl+right"], "command": "move", "args": {"by": "words", "forward": true} }, | |
{ "keys": ["ctrl+shift+left"], "command": "move", "args": {"by": "words", "forward": false, "extend": true} }, | |
{ "keys": ["ctrl+shift+right"], "command": "move", "args": {"by": "words", "forward": true, "extend": true} }, | |
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol", "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": ["ctrl+home"], "command": "move_to", "args": {"to": "bof", "extend": false} }, | |
{ "keys": ["ctrl+end"], "command": "move_to", "args": {"to": "eof", "extend": false} }, | |
{ "keys": ["ctrl+shift+home"], "command": "move_to", "args": {"to": "bof", "extend": true} }, | |
{ "keys": ["ctrl+shift+end"], "command": "move_to", "args": {"to": "eof", "extend": true} }, | |
{ "keys": ["ctrl+f"], "command": "show_panel", "args": {"panel": "find"} }, | |
{ "keys": ["ctrl+h"], "command": "show_panel", "args": {"panel": "replace"} }, | |
{ "keys": ["ctrl+s"], "command": "save" }, | |
{ "keys": ["ctrl+shift+s"], "command": "prompt_save_as" }, | |
{ "keys": ["ctrl+t"], "command": "side_bar_new_file2" }, | |
{ "keys": ["f2"], "command": "side_bar_rename" }, | |
{ "keys": ["ctrl+alt+f"], "command": "side_bar_find_files_path_containing" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment