SourceInsight常用快捷键及注释快捷键设置.doc_第1页
SourceInsight常用快捷键及注释快捷键设置.doc_第2页
SourceInsight常用快捷键及注释快捷键设置.doc_第3页
SourceInsight常用快捷键及注释快捷键设置.doc_第4页
SourceInsight常用快捷键及注释快捷键设置.doc_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

Source Insight常用快捷键及注释快捷键设置 (/tlaff/article/details/6536610)在使用SI过程中,我根据自己的使用习惯修改了它的默认快捷键,并且在配置文件中添加了一些人性化功能,下面一一介绍:修改快捷键:Options-Key Assignments.1.main window:Esc 2.Hight light:Middle Mouse3.Go Back:Alt+z 4.Go Forward:Alt+x 5.Caller:Alt+c 6.Reference:Alt+r7.Previous Link:Alt+a 8.Next Link:Alt+s9.First Link:Alt+d 10.Go Line:Alt+g 11.Select Line:Alt+l12.Symbol Win:Alt+q 13.Activate SW:Alt+w14.Projcet Win:Alt+ 15.Activate PW:Alt+16.Contex Win:Alt+, 17.Activate CW:Alt+.18.Relation Win:Alt+; 19.Activate RW:Alt+20.Select All:Ctrl+a 21.Save All:Ctrl+Shift+a22.Browse Project Symbols:Alt+b添加一些配置文件宏,比如:注释掉代码:单行注释、多行注释,将选中内容注释掉;在一行代码的前、后添加注释性文字等。打开Projcet-Open project,选择base,可以看到utils.em文件,将下列宏添加到该文件中,并在其他工程里加入该文件,在上面介绍的快捷键添加方式里找到该宏并自定义快捷键。单行、多行注释:plain view plaincopyprint?1. macroMultiLineComment()2. 3. hwnd=GetCurrentWnd()4. selection=GetWndSel(hwnd)5. LnFirst=GetWndSelLnFirst(hwnd)/取首行行号6. LnLast=GetWndSelLnLast(hwnd)/取末行行号7. hbuf=GetCurrentBuf()8. 9. if(GetBufLine(hbuf,0)=/magic-number:tph85666031)10. stop11. 12. 13. Ln=Lnfirst14. buf=GetBufLine(hbuf,Ln)15. len=strlen(buf)16. 17. while(Ln=Lnlast)18. buf=GetBufLine(hbuf,Ln)/取Ln对应的行19. if(buf=)/跳过空行20. Ln=Ln+121. continue22. 23. 24. if(StrMid(buf,0,1)=/)/需要取消注释,防止只有单字符的行25. if(StrMid(buf,1,2)=/)26. PutBufLine(hbuf,Ln,StrMid(buf,2,Strlen(buf)27. 28. 29. 30. if(StrMid(buf,0,1)!=/)/需要添加注释31. PutBufLine(hbuf,Ln,Cat(/,buf)32. 33. Ln=Ln+134. 35. 36. SetWndSel(hwnd,selection)37. macro MultiLineComment() hwnd = GetCurrentWnd() selection = GetWndSel(hwnd) LnFirst = GetWndSelLnFirst(hwnd) /取首行行号 LnLast = GetWndSelLnLast(hwnd) /取末行行号 hbuf = GetCurrentBuf() if(GetBufLine(hbuf, 0) = /magic-number:tph85666031) stop Ln = Lnfirst buf = GetBufLine(hbuf, Ln) len = strlen(buf) while(Ln Key Assignments中你就可以看到这个宏了,宏的名字是MultiLineComments,然后我们为它分配快捷键“Ctrl + /”,然后就可以了。 这是一份添加“#ifdef 0”和“#endif”的宏代码,定义快捷键为Ctrl+#:plain view plaincopyprint?1. macroAddMacroComment()2. 3. hwnd=GetCurrentWnd()4. sel=GetWndSel(hwnd)5. lnFirst=GetWndSelLnFirst(hwnd)6. lnLast=GetWndSelLnLast(hwnd)7. hbuf=GetCurrentBuf()8. 9. if(LnFirst=0)10. szIfStart=11. else12. szIfStart=GetBufLine(hbuf,LnFirst-1)13. 14. szIfEnd=GetBufLine(hbuf,lnLast+1)15. if(szIfStart=#if0&szIfEnd=#endif)16. DelBufLine(hbuf,lnLast+1)17. DelBufLine(hbuf,lnFirst-1)18. sel.lnFirst=sel.lnFirst119. sel.lnLast=sel.lnLast120. else21. InsBufLine(hbuf,lnFirst,#if0)22. InsBufLine(hbuf,lnLast+2,#endif)23. sel.lnFirst=sel.lnFirst+124. sel.lnLast=sel.lnLast+125. 26. 27. SetWndSel(hwnd,sel)28. macro AddMacroComment() hwnd=GetCurrentWnd() sel=GetWndSel(hwnd) lnFirst=GetWndSelLnFirst(hwnd) lnLast=GetWndSelLnLast(hwnd) hbuf=GetCurrentBuf() if(LnFirst = 0) szIfStart = else szIfStart = GetBufLine(hbuf, LnFirst-1) szIfEnd = GetBufLine(hbuf, lnLast+1) if(szIfStart = #if 0 & szIfEnd = #endif) DelBufLine(hbuf, lnLast+1) DelBufLine(hbuf, lnFirst-1) sel.lnFirst = sel.lnFirst 1 sel.lnLast = sel.lnLast 1 else InsBufLine(hbuf, lnFirst, #if 0) InsBufLine(hbuf, lnLast+2, #endif) sel.lnFirst = sel.lnFirst + 1 sel.lnLast = sel.lnLast + 1 SetWndSel( hwnd, sel )这份宏的代码可以把光标所在的行注释掉,定义快捷键为Ctrl+*:plain view plaincopyprint?1. macroCommentSingleLine()2. 3. hbuf=GetCurrentBuf()4. ln=GetBufLnCur(hbuf)5. str=GetBufLine(hbuf,ln)6. str=cat(/*,str)7. str=cat(str,*/)8. PutBufLine(hbuf,ln,str)9. macro CommentSingleLine() hbuf = GetCurrentBuf() ln = GetBufLnCur(hbuf) str = GetBufLine (hbuf, ln) str = cat(/*,str) str = cat(str,*/) PutBufLine (hbuf, ln, str)将一行中鼠标选中部分注释掉,定义快捷键为Ctrl+shift+*:plain view plaincopyprint?1. macroCommentSelStr()2. 3. hbuf=GetCurrentBuf()4. ln=GetBufLnCur(hbuf)5. str=GetBufSelText(hbuf)6. str=cat(/*,str)7. str=cat(str,*/)8. SetBufSelText(hbuf,str)9. macro Comment

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论