Last active
January 1, 2016 01:19
-
-
Save ross-nordstrom/8072233 to your computer and use it in GitHub Desktop.
My Sublime Text (3) keybinding preferences. "Preferences > Key Bindings - User"
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": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+shift+v"], "command": "paste" }, | |
{ "keys": ["control+shift+w"], "command": "close_all" }, | |
{ "keys": ["enter"], "command": "noop", "context": | |
[ | |
{ "key": "auto_complete_visible" }, | |
{ "key": "setting.auto_complete_commit_on_tab", "operand": false } | |
] | |
}, | |
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment