在verilog編寫代碼時,可能模塊列表太長,或者變量定義列表太長,不容易看到代碼的重點。用代碼折疊功能可以大方便的看代碼、編寫代碼的效率。
配置方法
下面是emacs自帶hide/show
的配置方法,verilog-mode
除了默認(rèn)的module port列表、注釋等折疊規(guī)則,需要再定義幾個折疊關(guān)鍵詞,比如begin
/end
、task
/endtask
等。
;; define verilog hide/show keywords
(setq hs-special-modes-alist
(cons '(verilog-mode "<begin>|<case>|<task>|<function>|<class>|("
"<end>|<endcase>|<endtask>|<endfunction>|<endclass>|)"
nil
verilog-forward-sexp-function)
hs-special-modes-alist))
(add-hook 'verilog-mode-hook 'hs-minor-mode)
菜單和快捷鍵
配置好后,當(dāng)打開verilog文件時,就會出現(xiàn)hideshow菜單,如下。常用的有Hide All
、Show All
、Toggle Hiding
等。
其中,Toggle Hiding
最為常用,可以再綁定到全局快捷鍵,比如Windows
+``。
(global-set-key (kbd "s-") 'hs-toggle-hiding)
選中文本的折疊
有時候只是想折疊指定的幾行,并沒有特定的語法標(biāo)記。
這時就需要用到另一個庫fold-this
。從github(https://github.com/magnars/fold-this.el)下載,配置如下。
(add-to-list 'load-path "~/.emacs.d/fold-this.el")
(require 'fold-this)
配置好之后,選中一段文字,再執(zhí)行M-x fold-this
,就可以看到這段代碼被折疊了。如下:
[[...]]
在折疊區(qū)域按C-g
或M-x fold-this-unfold-at-point
即可以展開。