Turn off the
"You are about to undo past the last point this file was saved. Do you want to do this?"
when you save then try to undo something. Enter this in a terminal window:
defaults write com.apple.Xcode XCShowUndoPastSaveWarning NO
Change the company name in template files
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "Microsoft";}'
Edit: Found another one. Change com.yourcompanyname in your templates:
Go to this directory
/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates/Application
and use your favourite multi-file search and replace tool to change "com.yourcompany" to whatever value you normally change it to before building for a device. You should be replacing the value in all the info.plist files. I found 8 files there and used BBEdit's multi-find-and-replace after I opened the whole directory.
The number of times a build has failed because I forgot to change this string is ridiculous.
Edit
If you hold down the three keys ctrl-opt-shift, you can quickly jump to groups in the left (Groups and Files) page by pressing the first letter of a groups name. ctrl-opt-shift-T takes you to Targets, ctrl-opt-shift-S to Source. Press it again and it jumps to SCM. Sometimes it takes several tries for this to work (don't know why).
Edit
ctrl-. (control-period) after a word automatically accepts the first choice from the menu that would pop up if you opt-esc. Try typing "log" then ctrl-. and you'll get a nice NSLog statement. Press it again to cycle through any choices. Press shift-ctrl-. to go backwards. Try it by typing NSMu then ctrl-. to see the mutable choices.
Edit
opt-double-click on a method name behaviour has changed. Now it shows a little pop up with a quick definition. You can click on a tiny icon to go to that method's documentation. If you want to go straight to the docs (I usually do), opt-cmd-double-click on the method name.
For a strange way of selecting multiple words, ctrl-command-double-click. You can make selections of words in totally different places, then delete or copy them all at once. Not sure if this is useful. It's Xcode only as far as I can tell.
