New to the Mac (OS X 10.6.2), and Xcode (3.2.1), (and new here!), I ve been tinkering with the shortcuts, using the procedures described here.
I made the folders mentioned, and the file PBKeyBindings.dict:
/* ~/Library/KeyBindings/PBKeyBinding.dict */
{
"^f" = "moveWordForward:"; /* Ctrl-f = next word */
"^j" = "moveWordForward:";
}
This was just to test the water, before embarking on stuff like:
{
"^$K" = (
"selectLine:",
"cut:"
);
"^$D" = (
"selectLine:",
"copy:",
"moveToEndOfLine:",
"insertNewline:",
"paste:"
);
} (copied from another post, thanks)
Now, whatever I did (restart Xcode, restart Mac), Xcode took no notice.
Have I just done something daft, or has the whole facility been removed by the Mighty Ones?
Incidentally, another user has suggested that this can be done in Xcode Preferences, but I can t see a way of mapping multiple actions onto a key.