Skip to content

Instantly share code, notes, and snippets.

@ermand
Last active November 25, 2016 11:11
Show Gist options
  • Save ermand/bc0941f1b2a5b6d158d3 to your computer and use it in GitHub Desktop.
Save ermand/bc0941f1b2a5b6d158d3 to your computer and use it in GitHub Desktop.
Sublime Text Key Mappings
[
{
"keys": [".", "p"],
"command": "run_phpunit_test"
},
{
"keys": [".", "m"],
"command": "run_single_phpunit_test"
},
{
"button": "button1",
"count": 1,
"modifiers": ["ctrl"],
"press_command": "drag_select",
"command": "goto_definition"
},
{ "keys": ["ctrl+super+shift+a"], "command": "sublimelinter_show_all_errors" },
{ "keys": ["super+\\"], "command": "toggle_side_bar" },
{ "keys": ["super+shift+\\"], "command": "reveal_in_side_bar"},
{ "keys": ["super+shift+w"], "command": "close_others" },
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+shift+r"], "command": "goto_symbol_in_project" },
{ "keys": ["super+alt+r"], "command": "goto_definition" },
{ "keys": ["super+shift+t"], "command": "reopen_last_file" },
{ "keys": ["super+x"], "command": "clipboard_manager_cut" },
{ "keys": ["super+c"], "command": "clipboard_manager_copy" },
{ "keys": ["super+v"], "command": "clipboard_manager_paste", "args": { "indent": true } },
{ "keys": ["super+ctrl+v"], "command": "clipboard_manager_paste", "args": { "indent": false } },
{ "keys": ["super+shift+v"], "command": "clipboard_manager_previous_and_paste" },
{ "keys": ["super+alt+ctrl+v"], "command": "clipboard_manager_choose_and_paste" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment