Last active
January 12, 2018 17:01
-
-
Save anatooly/6245688 to your computer and use it in GitHub Desktop.
Key bindings Sublime Text 3 like PhpStorm 6
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+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} } | |
] |
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
ctrl+w: i found it more suitable to make the "to":"tag"
for html of course