Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Linux 操作系统上的 gvim 编辑器开发 Verilog。由于系统故障,我丢失了一些文件。以前预定义的 verilog 代码变量过去是有颜色的,但现在不是。我怎样才能找回那些颜色?请帮忙 !!
你只是不必打开语法。
:syntax on
或将其添加到您的 vimrc 文件中
syntax on
着色丢失可能是由于缺少 verilog 语法文件,我的可以在这里找到。我这里也有一个 ftplugin 。
我在.vimrc中使用以下行来强制进行文件类型检测:
au BufNewFile,BufRead *.v,*.vh,*.args,*.f,*.verilog set ft=verilog