How to disable keyboard shortcuts in Mac OS X?

MacosKeyboard Shortcuts

Macos Problem Overview


I would like to disable keyboard shortcuts Command-W and Command-Q in Mac OS X 10.8 Mountain Lion.

This is because they interfere with emacs commands which I run from inside a terminal running from xQuartz. How can I disable the keyboard shortcuts?

Macos Solutions


Solution 1 - Macos

> ## BetterTouchTool is no longer free.

I reached this page because I wanted to disable command-h (hide application) which is not shown in System Preferences. This is my solution.

BetterTouchTool is a utility which can disable keyboard shortcuts (and has many other uses). http://www.boastr.de/

To disable command-w globally

  1. Install BetterTouchTool
  2. Click on the BetterTouchTool menubar item and choose "Preferences"
  3. Click "Gestures"
  4. Click "Keyboard"
  5. Click "Global"
  6. Click "Add New Shortcut"
  7. Click "Keyboard Shortcut"
  8. Type the shortcut you want to disable (for example, command-w)
  9. Set Trigger Predefined Action to "No Action" (which is the default)

Note that you can also set a keyboard shortcut for a specific application.

To disable command-w only for Terminal

  1. Install BetterTouchTool
  2. Click on the BetterTouchTool menubar item and choose "Preferences"
  3. Click "Gestures"
  4. Click "Keyboard"
  5. Click the plus sign at the bottom of the "Select Application" pane
  6. Choose Terminal (in Applications/Utilities folder)
  7. Click "Add New Shortcut"
  8. Click "Keyboard Shortcut"
  9. Type the shortcut you want to disable (for example, command-w)
  10. Set Trigger Predefined Action to "No Action" (which is the default)

Solution 2 - Macos

To view or change Keyboard shortcuts:

  1. Open the System Preferences->Keyboard
  2. Click on the Keyboard Shortcuts tab
  3. To change a shortcut, double click on the existing shortcut, and press the keys that make up your new shortcut.
  4. If you make a mistake, click '"Restore Defaults to return the keyboard shortcuts to the factory defaults

Solution 3 - Macos

BetterTouch wasn't able to change or disable the key that was causing me grief: ctrl-cmd-d.

Here is how I was able to delete it:

  1. Edit open ~/Library/Preferences/com.apple.symbolichotkeys.plist
  2. Find the code for kCGHotKeyLookUpWordInDictionary (70), and set 'enabled' to OFF (if it's not there just create an entry '70' with 'enabled' = OFF).
  3. Restart your system

From this site I learned about symbolic hot keys and found a list of them: http://www.theregister.co.uk/2009/02/24/hotkeys_framework2/

These sites have lists of the codes used in the plist file, so one can actually change the shortcuts instead of only deleting them: http://krypted.com/mac-os-x/defaults-symbolichotkeys/ and Documenting com.apple.symbolichotkeys.plist.

Solution 4 - Macos

A solution that may work for factory hotkeys in individual apps which conflict with your desired assignment:

Use the built-in hotkey management:

System Preferences | Keyboard | Shortcuts | App Shortcuts

...to map the pre-existing to some hard-to-hit keyboard combination (like Cmd-Opt-Shift-backslash). This will free-up the old key combination for assignment.

Solution 5 - Macos

Which highly recommend is hammerspoon, who defined GOD LIKE!

  1. install hammerspoon

  2. vim ~/.hammerspoon/init.lua

  3. paste this hs.hotkey.bind("cmd", 'H', function()end) in

  4. :wq and then StatusBar -> Hammerspoon -> ReloadConfig

  5. done!

Happy Hack!

Solution 6 - Macos

A solution is to configure XQuartz to enable "Option keys send Alt_L and Alt_R" under Preferences/Input.

Then add this to your ~/.emacs:

(setq x-alt-keysym 'meta)

It is not perfect, as you might still slip on Cmd-W instead of Option-W sometimes, but at least it is functional.

Solution 7 - Macos

Following an article on how to script shortcuts I tried setting a shortcut to '' to no avail, but setting it to NULL worked fine. Here's an example:

TAB_KEY_SYMBOL="\\U21e5"
COMMAND_KEY_SYMBOL="@"
SHIFT_KEY_SYMBOL="$"

defaults write com.apple.finder NSUserKeyEquivalents "{ 'Show Package Contents' = '${COMMAND_KEY_SYMBOL}${SHIFT_KEY_SYMBOL}O'; }"

defaults write com.apple.finder NSUserKeyEquivalents -dict-add 'Add to Sidebar' '\U0000'
defaults write com.apple.finder NSUserKeyEquivalents -dict-add 'Add to Dock' '\U0000'

# kill finder and prefs daemon
killall Finder
killall cfprefsd

# *only* if absent, add bundle id to make it show up in keyboard prefs pane
defaults read com.apple.universalaccess "com.apple.custommenu.apps"
defaults write com.apple.universalaccess "com.apple.custommenu.apps" -array-add "com.apple.finder"

$ defaults read com.apple.finder NSUserKeyEquivalents 
{
    "Add to Dock" = "";
    "Add to Sidebar" = "";
    "Show Package Contents" = "@$O";
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionEkalavyaView Question on Stackoverflow
Solution 1 - MacosWorld GeekView Answer on Stackoverflow
Solution 2 - MacosTamil Selvan CView Answer on Stackoverflow
Solution 3 - MacostaranakiView Answer on Stackoverflow
Solution 4 - Macosuser3442769View Answer on Stackoverflow
Solution 5 - Macos杨小超View Answer on Stackoverflow
Solution 6 - MacosmaxView Answer on Stackoverflow
Solution 7 - Macos1.61803View Answer on Stackoverflow