如何设置gvim verilog语法高亮

如何设置gvim verilog语法高亮,第1张

配置文件的位置在目录 /etc/ 下面,有个名为vimrc的文件,这是系统中公共的vim配置文件,对所有用户都有效。而在每个用户的主目录下,都可以自己建立私有的配置文件,命名为:“.vimrc”。例如,/root目录下,通常已经存在一个.vimrc文件。

设置语法高亮显示打开vimrc,添加以下语句来使得语法高亮显示:</ol> syntax on 3. 如果此时语法还是没有高亮显示,那么在/etc目录下的profile文件中添加以下语句: export TERM=xterm-color

参考gvim的help文档

输入命令:help mysyntaxfile

MAKING YOUR OWN SYNTAX FILES*mysyntaxfile*

When you create your own syntax files, and you want to have Vim use these

automatically with ":syntax enable", do this:

1. Create your user runtime directory.You would normally use the first item

of the 'runtimepath' option. Example for Unix: >

mkdir ~/.vim

2. Create a directory in there called "syntax". For Unix: >

mkdir ~/.vim/syntax

3. Write the Vim syntax file. Or download one from t

这个需要在vim73\filetype.vim中加入systemverilog类型。

打开filetype.vim文件 ,加入下面1句:

"System Verilog,

au BufRead,BufNewFile *.sv,*.sva setf systemverilog,

我记得systemverilog文件类型就是*.sv。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11282596.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存