Open file /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/IDETextKeyBindingSet.plist and add the text into the main <dict>...</dict>
Last active
November 9, 2016 03:37
-
-
Save tuanchauict/64344b08287c0bc1f6163cb5041e642c to your computer and use it in GitHub Desktop.
XCode IDEA-like macro. Make XCode less suck
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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