Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The same question has been asked for Xcode 3 But the solution there is said to not work with Xcode4. And no new solution is available there.

How to get a key-binding to move the curser up/down about 10 lines in Xcode 4 ?

share|improve this question
If anybody knows for sure that there is no way then it would be great to have this as answer to be able to close this. – robo Feb 19 '12 at 15:04
Robo, given that today is your question's anniversary, I'd like to point out that I know (for sure) that there is a way. See the answer below. ;) – courteous Feb 10 at 20:11

3 Answers

up vote 2 down vote accepted

Eureka! Inspired by the answer on line duplication, this is how you empower Xcode 4 with multiple-line movement:

  1. Go to the folder /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources
  2. Open IDETextKeyBindingSet.plist.
  3. Add a new dictionary Customized and two new command (say, Move Down 10 and Move Up 10) keys as the screenshot below: Editing the plist
  4. Restart Xcode and go to Preferences - Key Bindings, search for your command.
  5. Set a key combination for both commands: Key Bindings

  6. Free at last from the shackles of the Jump To shortcut. Enjoy it!


Bonus: system-wide multiple-line movement

Unleash the cursor outside Xcode following with these steps:

  1. Go to the folder ~/Library/KeyBindings
  2. Open DefaultKeyBinding.dict.
  3. Enter the following. Customize as appropriate.

    {

    "^~n" = ("moveUp:", "moveUp:", "moveUp:", "moveUp:", "moveUp:", "moveUp:", "moveUp:", "moveUp:", "moveUp:", "moveUp:");
    "^~p" = ("moveDown:", "moveDown:", "moveDown:", "moveDown:", "moveDown:", "moveDown:", "moveDown:", "moveDown:", "moveDown:", "moveDown:");

    }

  4. Logout & Login


All of the above works on 10.8.2 with Xcode 4.5.1.

share|improve this answer

Looks like it is impossible. Answering myself to be able to close.

share|improve this answer

Resize the text editor window so that it shows 10 lines. Then use the Page Up / Page Down keys. :)

Unfortunately Xcode 4 doesn't offer as many customization options as Xcode 3, especially those that require peaking under the hood and re-wiring things. I suppose this is one of them.

share|improve this answer
Ha-Ha! Thank you Steffen ;) – robo Feb 10 '12 at 12:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.