← All examples

JavaScript Productivity vscode.dev

VS Code Web: Alt+G shortcut for Go to File

Adds an Alt+G shortcut that opens the Go to File picker in one motion (works on github.dev too).

Code to copy

/* Add Alt+G shortcut to open the Go-to-file quick picker (works on github.dev too) */
(function () {
  document.addEventListener('keydown', (e) => {
    if (e.altKey && (e.key === 'g' || e.key === 'G') && !e.ctrlKey && !e.metaKey) {
      e.preventDefault();
      const evt = new KeyboardEvent('keydown', {
        key: 'p', code: 'KeyP', ctrlKey: true,
        bubbles: true, cancelable: true
      });
      (document.activeElement || document.body).dispatchEvent(evt);
    }
  }, true);
  console.info('[vsc] Alt+G now opens Go to File');
})();

How to use this example

  1. Copy the code with the button above.
  2. Install JustZix (2 minutes) and open the extension on the target page.
  3. Add a new rule matching that page.
  4. Paste the code into the rule's JavaScript panel and save — it runs on every page visit.

Rate this example

No ratings yet — be the first.

Does this example work?

Snippets are useless without somewhere to paste them.

JustZix takes 2 minutes to install and runs your code on every matching page. No account, no payment.

Download free See use cases