Last active
May 3, 2017 16:40
-
-
Save xrepzm/640ac05fd742e2eccff0d0dfc3e608fa to your computer and use it in GitHub Desktop.
Sublime Text key bindings
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
Show hidden characters
| // sublime.log_commands(True) | |
| [ | |
| { "keys": ["ctrl+k", "ctrl+m"], "command": "toggle_menu" }, | |
| { "keys": ["ctrl+k", "ctrl+s"], "command": "toggle_status_bar" }, | |
| { "keys": ["ctrl+alt+l"], "command": "toggle_setting", "args": { "setting": "line_numbers" } }, | |
| // Use chain.py plugin | |
| { "keys": ["ctrl+alt+z"], "command": "chain", "args": { "commands": [["toggle_tabs"], ["toggle_show_open_files"]] } }, | |
| { "keys": ["ctrl+keypad_divide"],"command": "toggle_comment", "args": { "block": false } }, | |
| { "keys": ["ctrl+shift+keypad_divide"],"command": "toggle_comment", "args": { "block": true } }, | |
| // PHPCompanion settings | |
| { "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": ["f3"], "command": "implement" }, | |
| { "keys": ["shift+f12"], "command": "goto_definition_scope" }, | |
| { "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