Skip to content

Instantly share code, notes, and snippets.

@tomprogers
Created March 25, 2022 18:10
Show Gist options
  • Save tomprogers/85fcb1a8b68ad4018bc9d1c4bc1ec403 to your computer and use it in GitHub Desktop.
Save tomprogers/85fcb1a8b68ad4018bc9d1c4bc1ec403 to your computer and use it in GitHub Desktop.
How to fix Ctrl+Cmd+Down noise in Electron-based apps for MacOS
From: https://github.com/atom/atom/issues/1669#issuecomment-135503562
create the following file at `~/Library/KeyBindings/DefaultKeyBinding.dict` (or add these entries to the existing file):
```
{
"^@\UF701" = "noop:";
"^@\UF702" = "noop:";
"^@\UF703" = "noop:";
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment