Skip to content

Instantly share code, notes, and snippets.

@tuanchauict
Last active November 9, 2016 03:37
Show Gist options
  • Select an option

  • Save tuanchauict/64344b08287c0bc1f6163cb5041e642c to your computer and use it in GitHub Desktop.

Select an option

Save tuanchauict/64344b08287c0bc1f6163cb5041e642c to your computer and use it in GitHub Desktop.
XCode IDEA-like macro. Make XCode less suck

Open file /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/IDETextKeyBindingSet.plist and add the text into the main <dict>...</dict>

<key>Customized</key>
<dict>
<key>Duplicate Lines</key>
<string>selectLine:, copy:, moveToEndOfLine:, paste:, deleteBackward:</string>
<key>Duplicate Current Line</key>
<string>moveToBeginningOfLine:, deleteToEndOfLine:, yank:, insertNewline:, moveToBeginningOfLine:, yank:</string>
<key>Start New Line</key>
<string>moveToEndOfLine:, insertNewline:</string>
<key>Start New Line Above</key>
<string>moveUp:, moveToEndOfLine:, insertNewline:</string>
<!-- Set this to ESC key instead of the Cancel action -->
<key>Completion List Cancel</key>
<string>cancelOperation:, moveLeft:, moveRight:</string>
<key>Swap Up</key>
<string>selectLine:, copy:, delete:, moveUp:, moveToBeginningOfLine:, paste:, moveUp:, moveToEndOfLine:</string>
<key>Swap Down</key>
<string>selectLine:, copy:, delete:, moveDown:, moveToBeginningOfLine:, paste:, moveUp:, moveToEndOfLine:</string>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment