d
Amit DhamuSoftware Engineer
 

CTRL+CMD+DOWN in VSCode

1 minute read 00000 views

I've setup VSCode to use CTRL + CMD + to duplicate a line downwards like I had setup for Sublime Text 3. This causes a "beep" in macOS due to issues with Electron.

To fix:

  1. Create the following file if it doesn't exist
mkdir ~/Library/KeyBindings
vim ~/Library/KeyBindings/DefaultKeyBinding.dict
  1. Enter the following
{
    "^@\UF701" = "noop:";
    "^@\UF702" = "noop:";
    "^@\UF703" = "noop:";
}