xcode修改快捷键

http://blog.csdn.net/meegomeego/article/details/12971089

修改以下文件
/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist


Deletions中添加:

1
2
<key>Delete Current Line</key>
<string>selectLine:, delete:</string>

Insertions and Indentations中添加:

1
2
3
4
5
6
7
8
<key>Insert NewLine Wherever</key>
<string>moveToEndOfLine:, insertNewline:</string>
<key>Duplicate Current Line</key>
<string>selectLine:, copy:, moveToEndOfLine:, insertNewline:, paste:, deleteBackward:</string>
<key>Copy Current Line</key>
<string>selectLine:, copy:</string>
<key>Paste Current Line</key>
<string>paste:</string>

Selection中添加:

1
2
<key>Move to Beginning Word of Line</key>
<string>moveToBeginningOfLine:, moveWordRight:, moveWordLeft:</string>

名称 快捷键
Delete Current Line Ctrl+D
Insert NewLine Wherever Shift+Enter
Duplicate Current Line Ctrl+Alt+下
Copy Current Line Ctrl+C
Paste Current Line Ctrl+V
Move to Beginning Word of Line Home

移动代码上下行

[This is an example image]


xcode7.3已经加入了删除行的功能。

This is an example image