Skip to content

Instantly share code, notes, and snippets.

@gapurov
Last active March 23, 2021 13:44
Show Gist options
  • Save gapurov/e59bd0735073e907c0b98c9e77d468f3 to your computer and use it in GitHub Desktop.
Save gapurov/e59bd0735073e907c0b98c9e77d468f3 to your computer and use it in GitHub Desktop.
Workaround for the Annoying Shortcut Beep Sound in VSCODE on MacOSX

The workaround given in the upstream Chromium issue is to setup key bindings at the OS-level that are just noops.

$ mkdir -p ~/Library/KeyBindings
$ cat > ~/Library/KeyBindings/DefaultKeyBinding.dict <<EOF
{
  "^@\UF701" = "noop";
  "^@\UF702" = "noop";
  "^@\UF703" = "noop";
}
EOF

Then restart the affected apps.

microsoft/vscode#44070 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment