vim: syntax highlight for inner doc comment
This commit is contained in:
parent
412a07055c
commit
7a1394d58f
@ -110,11 +110,11 @@ syn match rustFloat display "\<[0-9][0-9_]*\.[0-9_]\+\%([eE][+-]\=[0-9
|
||||
syn match rustLifetime display "\'\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*"
|
||||
syn match rustCharacter "'\([^'\\]\|\\\(['nrt\\\"]\|x\x\{2}\|u\x\{4}\|U\x\{8}\)\)'"
|
||||
|
||||
syn region rustCommentDoc start="/\*\*" end="\*/"
|
||||
syn region rustCommentDoc start="///" skip="\\$" end="$" keepend
|
||||
syn region rustCommentDoc start="/\*[\*!]" end="\*/"
|
||||
syn region rustCommentDoc start="//[/!]" skip="\\$" end="$" keepend
|
||||
syn match rustComment "/\*\*/"
|
||||
syn region rustComment start="/\*\([^\*]\|$\)" end="\*/" contains=rustTodo
|
||||
syn region rustComment start="//\([^/]\|$\)" skip="\\$" end="$" contains=rustTodo keepend
|
||||
syn region rustComment start="/\*\([^\*!]\|$\)" end="\*/" contains=rustTodo
|
||||
syn region rustComment start="//\([^/!]\|$\)" skip="\\$" end="$" contains=rustTodo keepend
|
||||
|
||||
syn keyword rustTodo contained TODO FIXME XXX NB
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user