Last active
October 3, 2016 06:27
-
-
Save fcpauldiaz/1b49d016691deabf0733e44dbf2fb7e1 to your computer and use it in GitHub Desktop.
Sublime Key Bindings
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
[ | |
// Origami plugin customization | |
{ "keys": ["alt+right"], "command": "travel_to_pane", "args": {"direction": "right"} }, | |
{ "keys": ["alt+left"], "command": "travel_to_pane", "args": {"direction": "left"} }, | |
{ "keys": ["ctrl+shift+k"], "command": "refresh_folder_list" }, | |
{ "keys": ["command+7"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["command+shift+7"], "command": "toggle_comment", "args": { "block": true } }, | |
{ | |
"keys": ["tab"], "command": "expand_abbreviation_by_tab", "context": [ | |
{ | |
"operand": "source.js.jsx", | |
"operator": "equal", | |
"match_all": true, | |
"key": "selector" | |
}, | |
{ | |
"key": "selection_empty", | |
"operator": "equal", | |
"operand": true, | |
"match_all": true | |
} | |
] | |
}, | |
{ "keys": ["tab"], "command": "next_field", "context": | |
[ | |
{ "key": "has_next_field", "operator": "equal", "operand": true } | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment