Skip to content

Instantly share code, notes, and snippets.

@owenconti
Created May 19, 2020 01:33
Show Gist options
  • Select an option

  • Save owenconti/fdb58cd3db129e8af20e1d1dc325a41e to your computer and use it in GitHub Desktop.

Select an option

Save owenconti/fdb58cd3db129e8af20e1d1dc325a41e to your computer and use it in GitHub Desktop.
5 keyboard shortcuts to navigate your code faster
const name = "Owen";
console.log(`Hello world!`);
[
{
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