Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: Verilog |
Bram Moolenaar | d5ab34b | 2007-05-05 17:15:44 +0000 | [diff] [blame] | 3 | " Maintainer: Mun Johl <Mun.Johl@emulex.com> |
Bram Moolenaar | 5302d9e | 2011-09-14 17:55:08 +0200 | [diff] [blame] | 4 | " Last Update: Wed Jul 20 16:04:19 PDT 2011 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 6 | " quit when a syntax file was already loaded |
| 7 | if exists("b:current_syntax") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 8 | finish |
| 9 | endif |
| 10 | |
Bram Moolenaar | 5302d9e | 2011-09-14 17:55:08 +0200 | [diff] [blame] | 11 | " Set the local value of the 'iskeyword' option. |
| 12 | " NOTE: '?' was added so that verilogNumber would be processed correctly when |
| 13 | " '?' is the last character of the number. |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 14 | setlocal iskeyword=@,48-57,63,_,192-255 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 15 | |
| 16 | " A bunch of useful Verilog keywords |
| 17 | |
| 18 | syn keyword verilogStatement always and assign automatic buf |
| 19 | syn keyword verilogStatement bufif0 bufif1 cell cmos |
| 20 | syn keyword verilogStatement config deassign defparam design |
| 21 | syn keyword verilogStatement disable edge endconfig |
| 22 | syn keyword verilogStatement endfunction endgenerate endmodule |
| 23 | syn keyword verilogStatement endprimitive endspecify endtable endtask |
| 24 | syn keyword verilogStatement event force function |
| 25 | syn keyword verilogStatement generate genvar highz0 highz1 ifnone |
| 26 | syn keyword verilogStatement incdir include initial inout input |
| 27 | syn keyword verilogStatement instance integer large liblist |
| 28 | syn keyword verilogStatement library localparam macromodule medium |
| 29 | syn keyword verilogStatement module nand negedge nmos nor |
| 30 | syn keyword verilogStatement noshowcancelled not notif0 notif1 or |
| 31 | syn keyword verilogStatement output parameter pmos posedge primitive |
| 32 | syn keyword verilogStatement pull0 pull1 pulldown pullup |
| 33 | syn keyword verilogStatement pulsestyle_onevent pulsestyle_ondetect |
| 34 | syn keyword verilogStatement rcmos real realtime reg release |
| 35 | syn keyword verilogStatement rnmos rpmos rtran rtranif0 rtranif1 |
| 36 | syn keyword verilogStatement scalared showcancelled signed small |
| 37 | syn keyword verilogStatement specify specparam strong0 strong1 |
| 38 | syn keyword verilogStatement supply0 supply1 table task time tran |
| 39 | syn keyword verilogStatement tranif0 tranif1 tri tri0 tri1 triand |
| 40 | syn keyword verilogStatement trior trireg unsigned use vectored wait |
| 41 | syn keyword verilogStatement wand weak0 weak1 wire wor xnor xor |
| 42 | syn keyword verilogLabel begin end fork join |
| 43 | syn keyword verilogConditional if else case casex casez default endcase |
| 44 | syn keyword verilogRepeat forever repeat while for |
| 45 | |
Bram Moolenaar | 5302d9e | 2011-09-14 17:55:08 +0200 | [diff] [blame] | 46 | syn keyword verilogTodo contained TODO FIXME |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 47 | |
| 48 | syn match verilogOperator "[&|~><!)(*#%@+/=?:;}{,.\^\-\[\]]" |
| 49 | |
Bram Moolenaar | 3982c54 | 2005-06-08 21:56:31 +0000 | [diff] [blame] | 50 | syn region verilogComment start="/\*" end="\*/" contains=verilogTodo,@Spell |
| 51 | syn match verilogComment "//.*" contains=verilogTodo,@Spell |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 52 | |
| 53 | "syn match verilogGlobal "`[a-zA-Z0-9_]\+\>" |
| 54 | syn match verilogGlobal "`celldefine" |
| 55 | syn match verilogGlobal "`default_nettype" |
| 56 | syn match verilogGlobal "`define" |
| 57 | syn match verilogGlobal "`else" |
| 58 | syn match verilogGlobal "`elsif" |
| 59 | syn match verilogGlobal "`endcelldefine" |
| 60 | syn match verilogGlobal "`endif" |
| 61 | syn match verilogGlobal "`ifdef" |
| 62 | syn match verilogGlobal "`ifndef" |
| 63 | syn match verilogGlobal "`include" |
| 64 | syn match verilogGlobal "`line" |
| 65 | syn match verilogGlobal "`nounconnected_drive" |
| 66 | syn match verilogGlobal "`resetall" |
| 67 | syn match verilogGlobal "`timescale" |
| 68 | syn match verilogGlobal "`unconnected_drive" |
| 69 | syn match verilogGlobal "`undef" |
| 70 | syn match verilogGlobal "$[a-zA-Z0-9_]\+\>" |
| 71 | |
| 72 | syn match verilogConstant "\<[A-Z][A-Z0-9_]\+\>" |
| 73 | |
Bram Moolenaar | d5ab34b | 2007-05-05 17:15:44 +0000 | [diff] [blame] | 74 | syn match verilogNumber "\(\<\d\+\|\)'[sS]\?[bB]\s*[0-1_xXzZ?]\+\>" |
| 75 | syn match verilogNumber "\(\<\d\+\|\)'[sS]\?[oO]\s*[0-7_xXzZ?]\+\>" |
| 76 | syn match verilogNumber "\(\<\d\+\|\)'[sS]\?[dD]\s*[0-9_xXzZ?]\+\>" |
| 77 | syn match verilogNumber "\(\<\d\+\|\)'[sS]\?[hH]\s*[0-9a-fA-F_xXzZ?]\+\>" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 78 | syn match verilogNumber "\<[+-]\=[0-9_]\+\(\.[0-9_]*\|\)\(e[0-9_]*\|\)\>" |
| 79 | |
Bram Moolenaar | 3982c54 | 2005-06-08 21:56:31 +0000 | [diff] [blame] | 80 | syn region verilogString start=+"+ skip=+\\"+ end=+"+ contains=verilogEscape,@Spell |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 81 | syn match verilogEscape +\\[nt"\\]+ contained |
| 82 | syn match verilogEscape "\\\o\o\=\o\=" contained |
| 83 | |
| 84 | " Directives |
| 85 | syn match verilogDirective "//\s*synopsys\>.*$" |
| 86 | syn region verilogDirective start="/\*\s*synopsys\>" end="\*/" |
| 87 | syn region verilogDirective start="//\s*synopsys dc_script_begin\>" end="//\s*synopsys dc_script_end\>" |
| 88 | |
| 89 | syn match verilogDirective "//\s*\$s\>.*$" |
| 90 | syn region verilogDirective start="/\*\s*\$s\>" end="\*/" |
| 91 | syn region verilogDirective start="//\s*\$s dc_script_begin\>" end="//\s*\$s dc_script_end\>" |
| 92 | |
| 93 | "Modify the following as needed. The trade-off is performance versus |
| 94 | "functionality. |
Bram Moolenaar | 3982c54 | 2005-06-08 21:56:31 +0000 | [diff] [blame] | 95 | syn sync minlines=50 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 96 | |
| 97 | " Define the default highlighting. |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 98 | " Only when an item doesn't have highlighting yet |
| 99 | command -nargs=+ HiLink hi def link <args> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 100 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 101 | " The default highlighting. |
| 102 | HiLink verilogCharacter Character |
| 103 | HiLink verilogConditional Conditional |
| 104 | HiLink verilogRepeat Repeat |
| 105 | HiLink verilogString String |
| 106 | HiLink verilogTodo Todo |
| 107 | HiLink verilogComment Comment |
| 108 | HiLink verilogConstant Constant |
| 109 | HiLink verilogLabel Label |
| 110 | HiLink verilogNumber Number |
| 111 | HiLink verilogOperator Special |
| 112 | HiLink verilogStatement Statement |
| 113 | HiLink verilogGlobal Define |
| 114 | HiLink verilogDirective SpecialComment |
| 115 | HiLink verilogEscape Special |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 116 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 117 | delcommand HiLink |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 118 | |
| 119 | let b:current_syntax = "verilog" |
| 120 | |
| 121 | " vim: ts=8 |