前言
大家应该都有所体会,我们在使用eclipse过程中,特喜欢删除一行和复制一行的的快捷键。而恰巧Xcode不支持这两个快捷键,再一次的恰巧让笔者发现了一个小窍门来增加这两个快捷键,以下是步骤:
修改权限
修改 Xcode 里快捷键的配置文件 (plist) 权限,打开终端输入如下两条命令:
sudo chmod 666 /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist sudo chmod 777 /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/
打开 plist 文件
open /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist
删除整行
然后找到 root 下的 Deletions ,在 Deletions 下添加一个key: Delete Current Line 值为:
deleteToBeginningOfLine:, moveToEndOfLine:, deleteToBeginningOfLine:, deleteBackward:
复制整行和在下方添加一行
在 Insertions and Indentations 下添加两个key:
- Duplicate Current Line 值为: selectLine:, copy:, moveLeft:, moveToEndOfLine:, insertNewline:, paste:, deleteBackward:
- Insert Line Under 值为: moveToEndOfLine:, insertNewline:
设置快捷键
重启一下 Xcode ,然后在 preferences 里找到 Key Bindings ,就能找到 Delete Current Line 和 Duplicate Current Line 两个选项了,最后设置自己喜欢的快捷键即可
plist文件
设置快捷键
设置快捷键
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对找一找教程网的支持。