介绍一种在Xcode中删除一整行代码的快捷键设置,
注:这里说的一整行不是你从行末尾按下 ⌘ + ⌫,而是说在行任何位置都可以删除。
在/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist 此路径中找到 IDETextKeyBindingSet.plist 文件。
或者在 Finder 中输入 ⌘ + G,然后复制这个路径粘贴并回车。
打开 IDETextKeyBindingSet.plist ,用 Sublime Text 或者 Vim 都可以。添加一个新的字典成员
<key>Custom</key>
<dict>
<key>Delete Current Line In One Hit</key>
<string>moveToEndOfLine:, deleteToBeginningOfLine:, deleteToEndOfParagraph:</string>
</dict>
保存并重启 Xcode。
打开Xcode Preferences or ⌘+,
点击 Key Bindings
在搜索框中输入 Delete,找到 Delete Current Line in One Hit
双击 Key,设置为⌘+D(你可以设置为你喜欢的快捷键)。
网友评论