Created
May 19, 2020 01:33
-
-
Save owenconti/fdb58cd3db129e8af20e1d1dc325a41e to your computer and use it in GitHub Desktop.
5 keyboard shortcuts to navigate your code faster
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
| const name = "Owen"; | |
| console.log(`Hello world!`); |
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
| [ | |
| { | |
| key: "cmd+d", | |
| command: "editor.action.deleteLines", | |
| when: "editorTextFocus" | |
| }, | |
| { | |
| key: "cmd+t", | |
| command: "workbench.action.quickOpen" | |
| }, | |
| { | |
| key: "cmd+[", | |
| command: "workbench.action.navigateBack" | |
| }, | |
| { | |
| key: "cmd+]", | |
| command: "workbench.action.navigateForward" | |
| }, | |
| { | |
| key: "shift+cmd+b", | |
| command: "workbench.action.tasks.runTask" | |
| }, | |
| { | |
| key: "alt+`", | |
| command: "workbench.action.terminal.focusPrevious" | |
| }, | |
| { | |
| key: "ctrl+cmd+a", | |
| command: "-extension.align", | |
| when: "editorTextFocus" | |
| }, | |
| { | |
| key: "cmd+\\", | |
| command: "workbench.files.action.showActiveFileInExplorer" | |
| }, | |
| { | |
| key: "cmd+l", | |
| command: "workbench.action.gotoLine" | |
| } | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment