Created
November 1, 2017 07:25
-
-
Save apprentice1988/0a50936aea6f845989dce4905ffeea17 to your computer and use it in GitHub Desktop.
sublime Keymap - User
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
[ | |
{ "keys": ["ctrl+j"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
{ "keys": ["ctrl+l"], "command": "move_to", "args": {"to": "eol", "extend": false} }, | |
{ "keys": ["command+b"], "command": "erb" }, | |
{ "keys": ["command+alt+n"], "command": "quick_create_file" }, | |
{ "keys": ["command+k"], "command": "toggle_side_bar" }, | |
{ "keys": ["ctrl+u"], "command": "delete_word", "args": { "forward": false, "sub_words": true } }, | |
{ "keys": ["ctrl+'"], "command": "delete_word", "args": { "forward": true, "sub_words": true } }, | |
{ "keys": ["ctrl+;"], "command": "scroll_lines", "args": {"amount": 10.0} }, | |
{ "keys": ["ctrl+/"], "command": "scroll_lines", "args": {"amount": -10.0} }, | |
{ | |
"keys": ["command+shift+r"], "command": "browser_refresh", "args": { | |
"auto_save": true, | |
"delay": 0.5, | |
"activate": true, | |
"browsers" : ["chrome"] | |
} | |
}, | |
{ | |
"keys":["ctrl+,"], "caption": "SublimeREPL: Python", "command": "run_existing_window_command", "args": { | |
"id": "repl_python", | |
"file": "config/Python/Main.sublime-menu" | |
} | |
}, | |
{ | |
"keys": ["ctrl+."], | |
"caption": "SublimeREPL: Python - RUN current file", | |
"command": "run_existing_window_command", | |
"args": { | |
"id": "repl_python_run", | |
"file": "config/Python/Main.sublime-menu" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment