Skip to content

Instantly share code, notes, and snippets.

@cvcore
Created February 5, 2025 09:57
Show Gist options
  • Save cvcore/e0777d0cdbfe514039d83364b37d8326 to your computer and use it in GitHub Desktop.
Save cvcore/e0777d0cdbfe514039d83364b37d8326 to your computer and use it in GitHub Desktop.
Mute bell sound for VSCode When Pressing cmd + ctrl + left / right / down arrow keys
Add to ~/Library/KeyBindings/DefaultKeyBinding.Dict:
{
"@^\UF701" = "noop:";
"@^\UF702" = "noop:";
"@^\UF703" = "noop:";
"@~^\UF701" = "noop:";
}
Source: https://superuser.com/questions/1418419/how-to-stop-macos-from-making-bell-sound-on-moving-line-down-in-visual-studio-co
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment