Skip to content

Instantly share code, notes, and snippets.

@twhitt14
Last active July 21, 2025 18:13
Show Gist options
  • Select an option

  • Save twhitt14/c2708aa9aeb858c3c81a6fca5530ffa1 to your computer and use it in GitHub Desktop.

Select an option

Save twhitt14/c2708aa9aeb858c3c81a6fca5530ffa1 to your computer and use it in GitHub Desktop.
Xcode keybindings in VS Code - remove annoying beep when navigating forward or back with ctrl+cmd+right or ctrl+cmd+left
# Run the code below in a terminal.
# Then quit and re-open VS Code for it to take effect.
mkdir -p ~/Library/KeyBindings/
<<EOF > ~/Library/KeyBindings/DefaultKeyBinding.dict
{
"@^\UF700" = "noop:";
"@^\UF701" = "noop:";
"@^\UF702" = "noop:";
"@^\UF703" = "noop:";
"@~^\UF700" = "noop:";
"@~^\UF701" = "noop:";
"@~^\UF702" = "noop:";
"@~^\UF703" = "noop:";
}
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment