美文网首页
设置 Xcode 删除整行快捷键

设置 Xcode 删除整行快捷键

作者: v2Next | 来源:发表于2015-04-23 13:20 被阅读0次

    介绍一种在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 ⌘+,
    • 点击 Key Bindings
    • 在搜索框中输入 Delete,找到 Delete Current Line in One Hit
    • 双击 Key,设置为⌘+D(你可以设置为你喜欢的快捷键)。

    当然,肯定会有人说 我用 XVim 插件、、、、、

    OK,以上完成✅。

    Enjoy it. :-)

    相关文章

      网友评论

          本文标题:设置 Xcode 删除整行快捷键

          本文链接:https://www.haomeiwen.com/subject/bzxpfttx.html