Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove xcode keybinding

I'm making changes to the default keybindings and getting some conflicts. Just unsure how I can unmap a keybinding that I don't need? I tried to hit delete on when selecting the shortcut in the list but to no avail.

P.S. I've tried double clicking the shortcut but no - button appears on the right.

like image 348
John Mike Avatar asked May 11 '17 18:05

John Mike


2 Answers

How to delete a keybinding on Xcode ? (using version 9.3 of Xcode)

The first method is obviously the little - that sometimes appears when double-clicking a binding.

The second method is not so quick but (in my experience) just as efficient. (Here I am assuming you've got a personalised keybinding profile already. If you don't, create one. I'll call it Personal.)

  1. In Xcode: select the shortcut you want to remove and attribute it a random binding (even one that causes conflicts, you'll delete it in two minutes, you don't really care).
  2. Quit Xcode.
  3. Go to ~/Library/Developer/Xcode/UserData/KeyBindings/.
  4. Open the file personal.idekeybindings (it's a simple XML file, any decent text editor should be able to handle it).
  5. Find the shortcut you modified and want to delete by searching its name using command + F.

You should then find something looking like this (each dict corresponds to a modified shortcut):

<dict>
    <key>Action</key>
    <string>execute:</string>
    <key>Alternate</key>
    <string>NO</string>
    <key>CommandID</key>
    <string>Xcode.IDEPlaygroundEditor.CmdDefinition.Execute</string>
    <key>Group</key>
    <string>Editor Menu for Playground</string>
    <key>GroupID</key>
    <string>Xcode.IDEPegasusPlaygroundEditor.MenuDefinition.Editor</string>
    <key>GroupedAlternate</key>
    <string>NO</string>
    <key>Keyboard Shortcut</key>
    <string>^&lt;</string>
    <key>Navigation</key>
    <string>NO</string>
    <key>Title</key>
    <string>Execute Playground</string>
</dict>

Delete this part:

    <key>Keyboard Shortcut</key>
    <string>^&lt;</string>

Do that for each shortcut you want to remove and don't forget to save the file before closing it. Now open Xcode and check for the shortcut: the space for the keybinding should be empty.

like image 142
Typing-Apostle Avatar answered Sep 28 '22 06:09

Typing-Apostle


When you double click a key binding, you should see an icon with a minus all the way at the right end of the text box. Simply clicking that icon removes the binding.

like image 29
tsiki Avatar answered Sep 28 '22 07:09

tsiki