Source Insight使用技巧

2021-05-04 14:47:39 字數 2035 閱讀 8258

source insight設定

1、背景色選擇

要改變背景色options->preference->windows background->color設定背景色

2、解決字元等寬對齊問題。

sis預設字型是verdana,很漂亮。這網頁上應該也是用的verdana字型。但由於美觀的緣故,verdana字型是不等寬的。比如下面兩行

llllllllll

mmmmmmmmmm

同樣10個字元,長度差多了.用verdana來看程式,有些本應該對齊的就歪了。解放方法是使用等寬的字型,但肯定比較醜。比較推薦的是用courier new。

3、解決tab鍵縮排問題

options-> document options裡面的右下角editing options欄裡,把expand tabs勾起來,然後確定。ok,現在tab鍵的縮排和四個空格的縮排在sis裡面看起來就對齊咯

4、si中的自動對齊設定:

在c程式裡, 如果遇到行末沒有分號的語句,如if, while, switch等, 寫到該行末按回車,則新行自動相對上一行縮排兩列。

option->document option下的auto indient中auto indient type有三種型別 none,******,smart。個人推薦選用******型別。

5、向專案中新增檔案時,只新增特定型別的檔案(檔案型別過濾器)

編輯彙編**時,在sis裡建立project並add tree的時候,根據預設設定並不會把該tree裡面所有彙編檔案都包含進來

只加了.inc和.asm字尾的,.s字尾的沒有。而且用sis開啟.s的檔案,一片黑白沒有色彩,感覺回到dos的edit時代了……

解決方法是在options->document options裡面,點左上的document type下拉列表,選擇x86 asm source file,

然後在右邊的file filter裡*.asm;*.inc;的後面加上*.s;接著close就可以了。

上面問題解決了,但注意加入*.s後還需要重新add tree一遍才能把這些彙編加到project裡面。

6、新增檔案型別

使用者可以定義自己的型別,options->document options->add type,定義檔案型別名以及檔名字尾。

勾選include when adding to projects在新增目錄下檔案到工程是該類檔案就會新增進si的工程。

如果需要將所有檔案新增進si的工程,可以定義一種檔案型別*.*。  

7、恢復ctrl+a的全選功能

source insight常用的快捷鍵:

ctrl+= :jump to definition

alt+/ :look up reference

f3 : search backward

f4 : search forward

f5: go to line

f7 :look up symbols

f8 :look up local symbols

f9 :ident left

f10 :ident right

alt+, :jump backword

alt+. : jump forward

shift+f3 : search the word under cusor backward

shift+f4 : search the word under cusor forward

f12 : incremental search

shift+ctrl+f: search in project

shift+f8 : hilight word

source insight的視窗操作:

project window ctrl+o開啟

symbol window alt+f8開啟和關閉

contex window 自定義鍵開啟和關閉

relation window 自定義鍵開啟 先鎖定再重新整理聯絡

source insight使用技巧

工作中最常用的功能 1.在windows的資源管理器中開啟當前檔案 options custom commands add 在彈出的視窗中鍵入自定義的命令名稱如yuebao open explorer 按ok 在run中鍵入shellexecute open explorer e,select,f,...

Source Insight使用技巧

1 將滑鼠放在你想搜尋的字串上,然後同時按下 shift f4 這樣話,會從當前位置,向後搜尋,第一次,需要同時按下,如果接著搜尋的話,在按f4就可以了,如果想向前搜尋的話,使用 f3 就可以了。但是第一次都需要同時按下 shift 2 使用工具欄中的有乙個字元為 r 的按鈕 不要說你看不到,呵呵 ...

Source Insight 使用小技巧 2

總地說來,sourcelink根據特定的搜尋模式,把當前檔案中滿足模式的行 鏈結到由該行指定的其他原始檔中。所謂特定的搜尋模式,共有兩種 file,then line 和 line,then file 其中前後兩部分依靠正規表示式的組的概念來予以分割。如果當前檔案具有匹配行,比如 error d t...