Skip to content

Instantly share code, notes, and snippets.

@gunharth
Last active November 11, 2016 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gunharth/7e5b81c4e03dc672464b15974d565a7a to your computer and use it in GitHub Desktop.
Save gunharth/7e5b81c4e03dc672464b15974d565a7a to your computer and use it in GitHub Desktop.
sublime.keymap
[
{ "keys": ["f9"], "command": "expand_fqcn"},
{ "keys": ["shift+f9"], "command": "expand_fqcn", "args": {"leading_separator": true} },
{ "keys": ["f10"], "command": "find_use"},
{ "keys": ["f7"], "command": "insert_php_constructor_property" },
{ "keys": ["alt+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["alt+shift+c"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["alt+x"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["alt+,"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["alt+shift+,"], "command": "move_to", "args": {"to": "eof", "extend": false} },
// Emmet overwrites
{ "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 1.0 } },
{ "keys": ["ctrl+down"], "command": "scroll_lines", "args": {"amount": -1.0 } },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment