Skip to content

Instantly share code, notes, and snippets.

@xrepzm
Last active May 3, 2017 16:40
Show Gist options
  • Select an option

  • Save xrepzm/640ac05fd742e2eccff0d0dfc3e608fa to your computer and use it in GitHub Desktop.

Select an option

Save xrepzm/640ac05fd742e2eccff0d0dfc3e608fa to your computer and use it in GitHub Desktop.
Sublime Text key bindings
// 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