wenhaoyx 2019-06-27
最新版可以见 verilog-mode
从网上找到的教程清一色是让在$HOME目录下新建一个elisp目录然后放verilog-mode.el进去,再写个.emacs
要新建.emacs还需要用cmd窗口echo hi > .emacs
但我照做了没有用
在emacs下, 依次输入C-h v load-path
回车, 就可以看到下面界面
里面并不包含$HOME目录,所以它没有起作用
从load-path的输出看,第一个是emacs/26.1/site-lisp,所以可以把解压缩后的verilog-mode.el放到这个目录里
同时在该目录新建一个文件site-start.el
;; Load verilog mode only when needed (autoload 'verilog-mode "verilog-mode" "Verilog mode" t ) ;; Any files that end in .v should be in verilog mode (setq auto-mode-alist (cons '("\\.[v|sv]\\'" . verilog-mode) auto-mode-alist)) ;; Any files in verilog mode should have their keywords colorized (add-hook 'verilog-mode-hook '(lambda () (font-lock-mode 1)))
这样当打开.v或.sv开头的文件,会自动加载verilog-mode插件
新建~/.elisp目录,把verilog-mode.el拷贝进去
在~/.emacs里输入
(defun prepend-path ( my-path ) (setq load-path (cons (expand-file-name my-path) load-path))) (defun append-path ( my-path ) (setq load-path (append load-path (list (expand-file-name my-path))))) ;; Look first in the directory ~/elisp for elisp files (prepend-path "~/.elisp") ;; Load verilog mode only when needed (autoload 'verilog-mode "verilog-mode" "Verilog mode" t ) ;; Any files that end in .v, .dv or .sv should be in verilog mode (add-to-list 'auto-mode-alist '("\\.[ds]?v\\'" . verilog-mode)) ;; Any files in verilog mode should have their keywords colorized (add-hook 'verilog-mode-hook '(lambda () (font-lock-mode 1)))
在网上有一个插件,但它有很多问题,基于它我修改出了一个无问题版本
https://github.com/zhuzhzh/ve...
使用vim-plug或Vundle安装的方法如下:
Plug 'zhuzhzh/verilog_emacsauto.vim', {'for': ['verilog', 'systemverilog'] }
Plugin 'zhuzhzh/verilog_emacsauto.vim'
注意,默认<Leader>是, 也可以在.vimrc里重设它
原始代码如下:
// // Created by : Harris Zhu // Filename : test.sv // Author : Harris Zhu // Created On : 2018-07-14 22:20:59 // Last Modified : 2018-07-14 22:20:59 // Update Count : 1 // Tags : // Description : // Conclusion : // //======================================================================= module foo(/*AUTOARG*/); input i; output [DWIDTH-1:0] o; endmodule module test (/*AUTOARG*/); parameter DWIDTH=32; input i; output [DWIDTH-1:0] o; foo u0(/*AUTOINST*/); endmodule
按下<leader>a后, 变成如下
// // Created by : Harris Zhu // Filename : test.sv // Author : Harris Zhu // Created On : 2018-07-14 22:20:59 // Last Modified : 2018-07-14 22:20:59 // Update Count : 1 // Tags : // Description : // Conclusion : // //======================================================================= module foo(/*AUTOARG*/ // Outputs o, // Inputs i ); input i; output [DWIDTH-1:0] o; endmodule module test (/*AUTOARG*/ // Outputs o, // Inputs i ); parameter DWIDTH=32; input i; output [DWIDTH-1:0] o; foo u0(/*AUTOINST*/ // Outputs .o (o[DWIDTH-1:0]), // Inputs .i (i)); endmodule