-
-
Save garhbod/bcf8675222d8ef1b0bf3e45451ca0b59 to your computer and use it in GitHub Desktop.
Key bindings Sublime Text 3 like PhpStorm 6
This file contains 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
[ | |
{ "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": ["ctrl+f3"], "command": "show_panel", "args": {"panel": "find", "reverse": false} }, | |
{ "keys": ["ctrl+shift+f3"], "command": "show_panel", "args": {"panel": "find", "reverse": true} } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment