Source Insight常用快捷键及注释快捷键设置

修改快捷键:Options->Key Assignments…(配置个人快捷菜单)

	1.main window:Esc    					   2.Hight light:Middle Mouse
	3.Go Back:Alt+z            				   4.Go Forward:Alt+x               
	5.Caller:Alt+c                  	       6.Reference:Alt+r
	7.Previous Link:Alt+a                      8.Next Link:Alt+s
	9.First Link:Alt+d                         10.Go Line:Alt+g           
	11.Select Line:Alt+l                       12.Symbol Win:Alt+q    
	13.Activate SW:Alt+w                       14.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+a                   22.Browse Project Symbols:Alt+b

在上面介绍的快捷键添加方式里找到该宏并自定义快捷键

添加一些配置文件宏,比如:注释掉代码:单行注释、多行注释,将选中内容注释掉;在一行代码的前、后添加注释性文字等。
打开Projcet->Open project,选择base,可以看到utils.em文件,将下列宏添加到该文件中,并在其他工程里加入该文件

单行、多行注释:

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 <= Lnlast) {
        buf = GetBufLine(hbuf, Ln)  //取Ln对应的行
        if(buf == ""){                    //跳过空行
            Ln = Ln + 1
            continue
     }

    if(StrMid(buf, 0, 1) == "/") {       //需要取消注释,防止只有单字符的行
        if(StrMid(buf, 1, 2) == "/"){
            PutBufLine(hbuf, Ln, StrMid(buf, 2, Strlen(buf)))
        }
    }

    if(StrMid(buf,0,1) != "/"){          //需要添加注释
        PutBufLine(hbuf, Ln, Cat("//", buf))
    }
    Ln = Ln + 1
}

SetWndSel(hwnd, selection)
}

将上面的代码保存到utils.em文件,打开source insight,将该文件添加到工程中,然后在Options->Key Assignments中你就可以看到这个宏了,宏的名字是MultiLineComments,然后我们为它分配快捷键“Ctrl + /”,然后就可以了。

添加“#ifdef 0”和“#endif”的宏代码,定义快捷键为Ctrl+#:

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+*:

macro CommentSingleLine()
{
    hbuf = GetCurrentBuf()
    ln = GetBufLnCur(hbuf)
    str = GetBufLine (hbuf, ln)
    str = cat("/*",str)
    str = cat(str,"*/")
    PutBufLine (hbuf, ln, str)
}

将一行中鼠标选中部分注释掉,定义快捷键为Ctrl+shift+*:

macro CommentSelStr()
{
    hbuf = GetCurrentBuf()
    ln = GetBufLnCur(hbuf)
    str = GetBufSelText(hbuf)
    str = cat("/*",str)
    str = cat(str,"*/")
    SetBufSelText (hbuf, str)
}

在一行代码前添加注释性文字,定义快捷键为Alt+/:
在一行代码前添加注释性文字,定义快捷键为Alt+:

  • 0
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

月如琉璃

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值