File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -58,8 +58,10 @@ if !exists("javascript_ignore_javaScriptdoc")
58
58
" other tags (no extra syntax)
59
59
syntax match javaScriptDocTags contained " @\( access\| addon\| alias\| author\| beta\| constant\| constructor\| copyright\| deprecated\| description\| event\| example\| exec\| field\| fileOverview\| fileoverview\| function\| global\| ignore\| inner\| license\| overview\| private\| protected\| project\| public\| readonly\| since\| static\)\> "
60
60
61
- syntax match javaScriptDocType contained " \% (#\|\"\| {\| }\|\w\|\.\| :\|\/\)\+ " nextgroup =javaScriptDocParam skipwhite
62
- syntax match javaScriptDocTypeNoParam contained " \% (#\|\"\| {\| }\|\w\|\.\| :\|\/\)\+ "
61
+ syntax region javaScriptDocType start =" {" end =" }" oneline contained nextgroup =javaScriptDocParam skipwhite
62
+ syntax match javaScriptDocType contained " \% (#\|\"\|\w\|\.\| :\|\/\)\+ " nextgroup =javaScriptDocParam skipwhite
63
+ syntax region javaScriptDocTypeNoParam start =" {" end =" }" oneline contained
64
+ syntax match javaScriptDocTypeNoParam contained " \% (#\|\"\|\w\|\.\| :\|\/\)\+ "
63
65
syntax match javaScriptDocParam contained " \% (#\|\"\| {\| }\|\w\|\.\| :\|\/\)\+ "
64
66
syntax region javaScriptDocSeeTag contained matchgroup =javaScriptDocSeeTag start =" {" end =" }" contains =javaScriptDocTags
65
67
You can’t perform that action at this time.
0 commit comments