Skip to content

Instantly share code, notes, and snippets.

@fcpauldiaz
Last active October 3, 2016 06:27
Show Gist options
  • Save fcpauldiaz/1b49d016691deabf0733e44dbf2fb7e1 to your computer and use it in GitHub Desktop.
Save fcpauldiaz/1b49d016691deabf0733e44dbf2fb7e1 to your computer and use it in GitHub Desktop.
Sublime Key Bindings
[
// 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