Source Insight使用技巧

1. source insight必设:

option-->key assignments-->
    Edit: Delete Line ---- Assign New Key: Ctrl+D
    Navaigation:Select All --- Assign New Key:Ctrl+A
    Edit: Drag Line Down ---- Assign New Key : Ctrl+Alt+Down
    Edit: Drag Line Up ---- Assign New Key : Ctrl+Alt+Up


option-->custom commands-->add-->
        command: dir_container
        Run: ShellExecute open explorer /e,/select,%f
        功能:跳转到目录:打开资源管理器并选中当前文件(LocateFileInExplorer)

   为之设置一个快捷键: keys-->key assignments--> command: dir_container-->Assign New Key:Ctrl+Alt+E

2. SIN KEY

显示文件状态                                 : Shift+F10

激活语法窗口(在当前文件中根据函数名打开函数) : Alt + L

在工程中根据文件名打开文件                          : Ctrl + o

回到该行的开始                       : Home

回到选择的开始                       : Ctrl+Alt+[

到块的下面                           : Ctrl+Shift+]

到块的上面                           : Ctrl+Shift+[

跳到连接( Jump to Link)     :  Alt + J (defined by myself)

跳到匹配                             : Alt+]

选择一块                             : Ctrl+ -

Edit: Complete Symbol                     :  Ctrl+E

Edit: Copy Line                           :  Ctrl+K

Edit: Copy Line Right                     :  Ctrl+Shift+K 

Edit: Lowercase                           :  Ctrl+,   (defined by myself)

Edit: Uppercase                           :  Ctrl+.   (defined by myself

 

 3. source insight 里编辑的时候,每次粘贴后,光标停留在粘贴内容的左面 http://blog.csdn.net/husion01/article/details/19765387

在source insight 里编辑的时候,每次粘贴后,光标停留在粘贴内容的左面。我想把它设定为 粘贴后,光标移动倒粘贴内容的右面。
该怎么做? 这是个设置问题,按照下面的步骤设定就可以了。
Options->Preferences...->Typing->After pasting,select:at end of pasted text->确定。

 

4. how to 快速打开函数和文件:

project window Ctrl+O打开

F7 :Look up symbols

F8 :Look up local symbols

 

参考:

1. SourceInsight使用技巧1

2. http://blog.csdn.net/hbd1986/article/details/5260727

3. Source Insight 配置和快捷键 http://blog.csdn.net/amosye/article/details/8052503

原文地址:https://www.cnblogs.com/mylinux/p/4481890.html