美文网首页
xcode 10 复制一行 删除 一行 最新

xcode 10 复制一行 删除 一行 最新

作者: 九月_adhoc | 来源:发表于2018-10-23 11:09 被阅读41次

    xcode 10 复制一行

    sudo chmod 666 /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist
    
    sudo chmod 777 /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/
    
    open /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist
    

    复制一行

    在Insertions and Indentations下面增加:Duplicate Current Line,String类型 值为:
    ##失效
    selectLine:, copy:, moveToEndOfLine:, insertNewline:, paste:, deleteBackward:
    ##有效
    moveToBeginningOfLine:, deleteToEndOfLine:, yank:, insertNewline:, moveToBeginningOfLine:, yank:
    

    删除一行

    在Deletions下面增加:“Delete Current Line” String类型值:
    deleteToBeginningOfLine:, moveToEndOfLine:, deleteToBeginningOfLine:, deleteBackward:, moveDown:, moveToBeginningOfLine:
    

    相关文章

      网友评论

          本文标题:xcode 10 复制一行 删除 一行 最新

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