Xcode5.0中常用的快捷键及自定义快捷键

来源:互联网 发布:ubuntu 挂载usb硬盘 编辑:程序博客网 时间:2024/06/11 19:29
Command + [ :左移代码块

Command + ] :右移代码块

Ctrl + A : 移动光标到本行行首 (COMMAND + <--)
Ctrl + E : 移动光标到本行行尾 (COMMAND + -->)


自定义快捷键:

Xcode - Select Line Shortcut

1 . Go to this folder :

/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources

 

  Then open the file : 

IDETextKeyBindingSet.plist

 

2 . Create a dictonary named "Customized" ,

在某行</dict>之后加上:

<key>Customized</key>
<dict>
<key>Select Current Line</key>
<string>selectLine:</string>
</dict>

(be careful that the "space" is needed between the every Meta Commands)

 

3 . Restart Xcode and go to Preferences - Key Bindings, search "Select Current Line" . Finally , set a key shortcut combination for this command .


0 0
原创粉丝点击