Skip to content

Instantly share code, notes, and snippets.

@anatooly
Last active January 12, 2018 17:01
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anatooly/6245688 to your computer and use it in GitHub Desktop.
Save anatooly/6245688 to your computer and use it in GitHub Desktop.
Key bindings Sublime Text 3 like PhpStorm 6
[
{ "keys": ["ctrl+shift+a"], "command": "show_overlay", "args": {"overlay": "command_palette"} },
{ "keys": ["ctrl+shift+n"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["ctrl+shift+alt+n"], "command": "goto_symbol_in_project" },
{ "keys": ["ctrl+b"], "command": "goto_definition" },
{ "keys": ["ctrl+alt+left"], "command": "jump_back" },
{ "keys": ["ctrl+alt+right"], "command": "jump_forward" },
{ "keys": ["ctrl+y"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+w"], "command": "expand_selection", "args": {"to": "scope"} },
{ "keys": ["ctrl+d"], "command": "duplicate_line" },
{ "keys": ["alt+j"], "command": "find_under_expand" },
{ "keys": ["f11"], "command": "toggle_bookmark" },
{ "keys": ["f5"], "command": "refresh_folder_list" },
{ "keys": ["ctrl+f3"], "command": "show_panel", "args": {"panel": "find", "reverse": false} },
{ "keys": ["ctrl+shift+f3"], "command": "show_panel", "args": {"panel": "find", "reverse": true} }
]
@ishener
Copy link

ishener commented Jan 6, 2014

ctrl+w: i found it more suitable to make the "to":"tag"
for html of course

@samplenull
Copy link

Thanks for sharing, I think the last comma is unneeded, ST2 gives following error: "Error trying to parse file: Trailing comma before closing bracket".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment