你可以看一下这个教程,关于如何在Xcode中添加自定义键盘快捷键---Xcode duplicate line,然后在IDETextKeyBindingSet.plist文件中添加一个新的键值Insert New Line Below Current LinemoveToEndOfLine:, insertNewline:,最后在Xcode中配置你的键绑定(如Shift+Enter)。
NOTESif you have permissions problem in saving the file. just copy the file to your desktop, edit it, and then move the file to the location /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/
4条答案
按热度按时间xiozqbni1#
你可以看一下这个教程,关于如何在Xcode中添加自定义键盘快捷键---Xcode duplicate line,然后在IDETextKeyBindingSet.plist文件中添加一个新的键值
Insert New Line Below Current Line
moveToEndOfLine:, insertNewline:
,最后在Xcode中配置你的键绑定(如Shift+Enter)。qgzx9mmu2#
我不认为XCode支持这种快捷方式。
检查
Key Bindings
首选项。在文本选项卡下搜索“line”。有很多“插入新行”命令可以设置组合键。有Ctrl+o,Cmd+Enter,Opt+Enter等。但是我不认为这是可能的。
6uxekuva3#
答案是
指定快捷键。
好好享受吧!
NOTESif you have permissions problem in saving the file. just copy the file to your desktop, edit it, and then move the file to the location /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/
6mzjoqzu4#
我发现
moveToEndOfLine:, insertNewline:
对我不起作用。相反,moveToEndOfLine:, insertLineBreak:
起作用了。我使用的是Xcode 13.4.1