diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-08 21:56:31 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-08 21:56:31 +0000 |
commit | 3982c541060fd8f74cb6547dc03a7c76b0ef1167 (patch) | |
tree | 820fb0b4d7b8bd6afab0915d4fe39bca1fff72e4 /runtime | |
parent | 0e4d877ed8a23c80a24b0cd5bd0c61cc7db93df2 (diff) | |
download | vim-git-3982c541060fd8f74cb6547dc03a7c76b0ef1167.tar.gz |
updated for version 7.0083
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/syntax/verilog.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/syntax/verilog.vim b/runtime/syntax/verilog.vim index 2e0179942..aad918cdf 100644 --- a/runtime/syntax/verilog.vim +++ b/runtime/syntax/verilog.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: Verilog " Maintainer: Mun Johl <mun_johl@sierralogic.com> -" Last Update: Tue Nov 4 09:39:40 PST 2003 +" Last Update: Tue Jun 7 14:27:10 PDT 2005 " For version 5.x: Clear all syntax items " For version 6.x: Quit when a syntax file was already loaded @@ -52,8 +52,8 @@ syn keyword verilogTodo contained TODO syn match verilogOperator "[&|~><!)(*#%@+/=?:;}{,.\^\-\[\]]" -syn region verilogComment start="/\*" end="\*/" contains=verilogTodo -syn match verilogComment "//.*" contains=verilogTodo +syn region verilogComment start="/\*" end="\*/" contains=verilogTodo,@Spell +syn match verilogComment "//.*" contains=verilogTodo,@Spell "syn match verilogGlobal "`[a-zA-Z0-9_]\+\>" syn match verilogGlobal "`celldefine" @@ -82,7 +82,7 @@ syn match verilogNumber "\(\<\d\+\|\)'[dD]\s*[0-9_xXzZ?]\+\>" syn match verilogNumber "\(\<\d\+\|\)'[hH]\s*[0-9a-fA-F_xXzZ?]\+\>" syn match verilogNumber "\<[+-]\=[0-9_]\+\(\.[0-9_]*\|\)\(e[0-9_]*\|\)\>" -syn region verilogString start=+"+ skip=+\\"+ end=+"+ contains=verilogEscape +syn region verilogString start=+"+ skip=+\\"+ end=+"+ contains=verilogEscape,@Spell syn match verilogEscape +\\[nt"\\]+ contained syn match verilogEscape "\\\o\o\=\o\=" contained @@ -97,7 +97,7 @@ syn region verilogDirective start="//\s*\$s dc_script_begin\>" end="//\s*\$s "Modify the following as needed. The trade-off is performance versus "functionality. -syn sync lines=50 +syn sync minlines=50 " Define the default highlighting. " For version 5.7 and earlier: only when not done already |