Created
May 7, 2019 13:43
-
-
Save nafiesl/31c9c8b5b9413c8d441a7ba902563d48 to your computer and use it in GitHub Desktop.
Sublime PHP Keymap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
// { "keys": ["ctrl+k", "ctrl+t"], "command": "title_case" }, | |
{ "keys": ["ctrl+shift+g"], "command": "find_all_under" }, | |
{ "keys": ["ctrl+shift+up"], "command": "duplicate_line" }, | |
{ "keys": ["ctrl+shift+down"], "command": "duplicate_line" }, | |
// ctrl+alt+up and ctrl+alt+down are conflicted with window manager keyboard shortcuts | |
// We need to disable Window Manager -> Keyboard: Upper and Bottom workspace shortcuts | |
{ "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["alt+shift+up"], "command": "swap_line_up" }, | |
{ "keys": ["alt+shift+down"], "command": "swap_line_down" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "reindent", "args": {"single_line": false} }, | |
{ "keys": ["f6"], "command": "expand_fqcn" }, | |
{ "keys": ["shift+f6"], "command": "expand_fqcn", "args": {"leading_separator": true} }, | |
{ "keys": ["f5"], "command": "find_use" }, | |
{ "keys": ["f4"], "command": "import_namespace" }, | |
{ "keys": ["shift+f12"], "command": "goto_definition_scope" }, | |
{ "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"} }, | |
{ "keys": ["f7"], "command": "insert_php_constructor_property" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment