Created
June 12, 2017 06:23
-
-
Save asbubam/1f60055c6addf80eb01d45434bc1de15 to your computer and use it in GitHub Desktop.
sublime vi + webstorm shortcut
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
[ | |
{ "keys": ["g", "t"], "command": "next_view", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": true }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["g", "T"], "command": "prev_view", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": true }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["super+b"], "command": "goto_definition" }, | |
{ "keys": ["super+shift+o"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment