[轉]Source Insight使用小技巧小結

來源:互聯網
上載者:User

標籤:style   blog   http   io   ar   color   使用   sp   strong   

Source Insight是一款強大的代碼查看工具,本身支援擴充性很好。下面我們就介紹2個擴充用例。

 

1、快速開啟當前檔案所在的目錄,這個功能類似於eclipse的easyshell外掛程式,就是能快速定位到檔案所在的目錄,這個在代碼查看的時候是很有好處的。

按照以下步驟,首先進入【option】->【Custom Commands】

自定的命令名,個人發揮,關鍵是填入 explorer.exe %d,

設定快速鍵CTRL+T

也可以將自訂命令加入Menu菜單中

到此設定完畢,可以通過快速鍵CTRL+T,直接開啟當前檔案所在的目錄。

 

2、與eclipse中快捷方便的注釋反注釋相比較,sI是有點古板和不方便額。但是可以通過自訂的宏塊來改善這個情況。

首先,開啟Projcet->Open project,選擇base,可以看到utils.em檔案,將下列宏添加到該檔案中。

MultiLineComment宏功能就是可以注釋、反注釋代碼

[cpp] view plaincopyprint?
  1. macro MultiLineComment()  
  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.         stop  
  11.     }  
  12.    
  13.     Ln = Lnfirst  
  14.     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 + 1  
  21.             continue  
  22.         }  
  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.             buf = Cat("//", buf)  
  32.             if(Ln == Lnfirst){  
  33.                 buf = Cat(buf,"//removed by jhy")//注釋作者資訊  
  34.             }  
  35.                 PutBufLine(hbuf, Ln, buf)  
  36.         }  
  37.         Ln = Ln + 1  
  38.     }  
  39.    
  40.     SetWndSel(hwnd, selection)  
  41. }  
[cpp] view plaincopyprint?
  1. macro MultiLineComment()  
  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.         stop  
  11.     }  
  12.    
  13.     Ln = Lnfirst  
  14.     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 + 1  
  21.             continue  
  22.         }  
  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.             buf = Cat("//", buf)  
  32.             if(Ln == Lnfirst){  
  33.                 buf = Cat(buf,"//removed by jhy")//注釋作者資訊  
  34.             }  
  35.                 PutBufLine(hbuf, Ln, buf)  
  36.         }  
  37.         Ln = Ln + 1  
  38.     }  
  39.    
  40.     SetWndSel(hwnd, selection)  
  41. }  

儲存後,開啟新的工程:options->key assignments(設定快速鍵)

到此為止,我們在代碼中使用ALT+X的快速鍵看看,效果如下:

3、我們再來貼一個快速插入時間的宏,類似於UltraEdit中的F7快速鍵功能

[cpp] view plaincopyprint?
  1. macro MonthToName(MonthNum)  
  2. {  
  3.   
  4.     if (MonthNum== 1)  
  5.         return "Jan"  
  6.     if (MonthNum== 2)  
  7.         return "Feb"  
  8.     if (MonthNum== 3)  
  9.         return "Mar"  
  10.     if (MonthNum== 4)  
  11.         return "Apr"  
  12.     if (MonthNum== 5)  
  13.         return "May"  
  14.     if (MonthNum== 6)  
  15.         return "Jun"  
  16.     if (MonthNum== 7)  
  17.         return "Jul"  
  18.     if (MonthNum== 8)  
  19.         return "Aug"  
  20.     if (MonthNum== 9)  
  21.         return "Sep"  
  22.     if (MonthNum== 10)  
  23.         return "Oct"  
  24.     if (MonthNum== 11)  
  25.         return "Nov"  
  26.     if (MonthNum== 12)  
  27.         return "Dec"  
  28. }  
  29.   
  30. macro DisplayDate()  
  31. {  
  32.     szTime = GetSysTime(1)  
  33.     Day = szTime.Day  
  34.     Month = szTime.Month  
  35.     Year = szTime.Year  
  36.     if (Day < 10)  
  37.         szDay = "[email protected]@"  
  38.     else  
  39.         szDay = Day  
  40.     szMonth = MonthToName(Month)  
  41.   
  42.     hbuf = GetCurrentBuf()  
  43.     SetBufSelText(hbuf, "@[email protected] @[email protected], @[email protected]")  
  44. }  
[cpp] view plaincopyprint?
    1. macro MonthToName(MonthNum)  
    2. {  
    3.   
    4.     if (MonthNum== 1)  
    5.         return "Jan"  
    6.     if (MonthNum== 2)  
    7.         return "Feb"  
    8.     if (MonthNum== 3)  
    9.         return "Mar"  
    10.     if (MonthNum== 4)  
    11.         return "Apr"  
    12.     if (MonthNum== 5)  
    13.         return "May"  
    14.     if (MonthNum== 6)  
    15.         return "Jun"  
    16.     if (MonthNum== 7)  
    17.         return "Jul"  
    18.     if (MonthNum== 8)  
    19.         return "Aug"  
    20.     if (MonthNum== 9)  
    21.         return "Sep"  
    22.     if (MonthNum== 10)  
    23.         return "Oct"  
    24.     if (MonthNum== 11)  
    25.         return "Nov"  
    26.     if (MonthNum== 12)  
    27.         return "Dec"  
    28. }  
    29.   
    30. macro DisplayDate()  
    31. {  
    32.     szTime = GetSysTime(1)  
    33.     Day = szTime.Day  
    34.     Month = szTime.Month  
    35.     Year = szTime.Year  
    36.     if (Day < 10)  
    37.         szDay = "[email protected]@"  
    38.     else  
    39.         szDay = Day  
    40.     szMonth = MonthToName(Month)  
    41.   
    42.     hbuf = GetCurrentBuf()  
    43.     SetBufSelText(hbuf, "@[email protected] @[email protected], @[email protected]"

 

 

轉:

[轉]Source Insight使用小技巧小結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.