Created
March 25, 2022 18:10
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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