File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -97,13 +97,15 @@ hi def link solBuiltinFunction Keyword
9797syn match solOperator / \( !\| |\| &\| +\| -\| <\| >\| =\| %\|\/\| *\|\~\|\^\) /
9898syn match solNumber / \< -\=\d\+ L\=\>\|\< 0[xX]\x\+\> /
9999syn match solFloat / \< -\=\% (\d\+\.\d\+\|\d\+\.\|\.\d\+\)\% ([eE][+-]\=\d\+\)\=\> /
100- syn region solString start =+ "+ skip =+ \\\\\|\\ $"\|\\ "+ end =+ "+
101- syn region solString start =+ '+ skip =+ \\\\\|\\ $'\|\\ '+ end =+ '+
100+ syn region solString start =+ "+ skip =+ \\\\\|\\ "+ end =+ "+ contains =solStringEscape
101+ syn region solString start =+ '+ skip =+ \\\\\|\\ '+ end =+ '+ contains =solStringEscape
102+ syn match solStringEscape contained + \\ [nrt\\ '"]+
102103
103104hi def link solOperator Operator
104105hi def link solNumber Number
105106hi def link solFloat Float
106107hi def link solString String
108+ hi def link solStringEscape SpecialChar
107109
108110" Function
109111syn match solFunction / \< function\> / nextgroup =solFuncName,solFuncArgs skipwhite
You can’t perform that action at this time.
0 commit comments