Skip to content

Instantly share code, notes, and snippets.

@stillfinder
Created June 10, 2019 13:10
Show Gist options
  • Save stillfinder/496b22c3fa0ce05b9abdca03fbbb7d2c to your computer and use it in GitHub Desktop.
Save stillfinder/496b22c3fa0ce05b9abdca03fbbb7d2c to your computer and use it in GitHub Desktop.
My sublime text key bindings
[
{ "keys": ["super+d"], "command": "duplicate_line" },
{ "keys": ["super+shift+d"], "command": "find_under_expand" },
// PHP Companion
{ "keys": ["alt+e"], "command": "expand_fqcn" },
{ "keys": ["shift+f6"], "command": "expand_fqcn", "args": {"leading_separator": true} },
{ "keys": ["alt+i"], "command": "find_use" },
{ "keys": ["f4"], "command": "import_namespace" },
// { "keys": ["f3"], "command": "implement" },
{ "keys": ["shift+f12"], "command": "goto_definition_scope" },
{ "keys": ["alt+c"], "command": "insert_php_constructor_property" },
{"keys": ["super+t"], "command": "run_single_phpunit_test"},
{ "keys": ["super+shift+t"], "command": "run_phpunit_tests_in_dir"},
{"keys": ["super+;"], "command": "run_macro_file", "args": {"file": "Packages/User/EndOfLineSemicolon.sublime-macro"}},
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["alt+up"], "command": "expand_selection", "args": {"to": "scope"} },
{ "keys": ["super+]"], "command": "jump_forward" },
{ "keys": ["super+["], "command": "jump_back" },
// { "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{"keys": ["f9"], "command": "expand_fqcn"},
{"keys": ["f5"], "command": "find_use"},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment