Skip to content

Instantly share code, notes, and snippets.

@macodev
Last active February 15, 2016 11:18
Show Gist options
  • Save macodev/3987888 to your computer and use it in GitHub Desktop.
Save macodev/3987888 to your computer and use it in GitHub Desktop.
Default (OSX).sublime-keymap
[
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+alt+c"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["super+alt+l"], "command": "reindent" , "args": {"single_line": false} },
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["super+up"], "command": "expand_region" },
{ "keys": ["super+down"], "command": "expand_region", "args": {"undo": true}, "context": [{ "key": "expand_region_soft_undo" }] },
{ "keys": ["super+shift+up"], "command": "swap_line_up" },
{ "keys": ["super+shift+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+shift+j"], "command": "join_lines" },
{ "keys": ["super+1"], "command": "focus_side_bar" },
{ "keys": ["super+d"], "command": "duplicate_line" },
{ "keys": ["f8"], "command": "import_namespace" },
{ "keys": ["f9"], "command": "expand_fqcn" },
{ "keys": ["shift+f9"], "command": "expand_fqcn", "args": {"leading_separator": true} },
{ "keys": ["f10"], "command": "find_use" },
{ "keys": ["shift+f12"], "command": "goto_definition_scope" },
{ "keys": ["ctrl+g"], "command": "find_under_expand" },
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["super+g"], "command": "find_under" },
{ "keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment