Skip to content

Instantly share code, notes, and snippets.

@dccanter
Created April 10, 2013 05:59
Show Gist options
  • Select an option

  • Save dccanter/5352160 to your computer and use it in GitHub Desktop.

Select an option

Save dccanter/5352160 to your computer and use it in GitHub Desktop.
Sublime User Keybindings
[ { "keys": ["ctrl+k", "ctrl+m"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+shift+m"], "command": "show_overlay", "args": {"overlay": "command_palette"}},
{ "keys": ["ctrl+shift+7"], "command": "reopen_last_file" },
{ "keys": ["ctrl+alt+u"], "command": "soft_undo" },
{ "keys": ["shift+backspace"], "command": "right_delete" },
{ "keys": ["ctrl+alt+shift+w"], "command": "close_all" },
{
"keys": [
"ctrl+alt+o"
],
"args": {
"action": "next_edit_point"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.next_edit_point"
}
]
},
{
"keys": [
"ctrl+alt+8"
],
"args": {
"action": "prev_edit_point"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.prev_edit_point"
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment