Skip to content

Instantly share code, notes, and snippets.

@mwrites
Last active December 5, 2018 11:42
Show Gist options
  • Save mwrites/7edc5bbc79ce5f399acdcca229d9fa06 to your computer and use it in GitHub Desktop.
Save mwrites/7edc5bbc79ce5f399acdcca229d9fa06 to your computer and use it in GitHub Desktop.
/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist
– Delete current line: ctrl + shift + k
– Duplicate current line: ctrl + shift + c
– Insert line below: ctrl + o
– Insert line above: ctrl + shift + o
#Insertion and indentation
<key>Insert New Line Below</key>
<string>moveToEndOfLine:, insertNewline:</string>
<key>Insert New Line Above</key>
<string>moveUp:, moveToEndOfLine:, insertNewline:</string>
<key>Duplicate Current Line</key>
<string>selectLine:, copy:, moveToEndOfLine:, insertNewline:, paste:, deleteBackward:</string>
#Deletion
<key>Delete Current Line</key>
<string>selectLine:, delete:</string>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment