@@ -186,12 +186,15 @@ endif
186186
187187if exists (" python_highlight_string_format" ) && python_highlight_string_format != 0
188188 " str.format syntax
189- syn match pythonStrFormat " {\( [a-zA-Z_][a-zA-Z0-9_]*\|\d\+\)\(\. [a-zA-Z_][a-zA-Z0-9_]*\|\[\(\d\+\| [^!:\} ]\+\)\]\) *\( ![rs]\)\=\( :\( {\( [a-zA-Z_][a-zA-Z0-9_]*\|\d\+\) }\|\( [^}]\= [<>=^]\)\= [ +-]\= #\= 0\=\d *\(\.\d\+\)\= [bcdeEfFgGnoxX%]\=\)\=\)\= }" contained containedin =pythonString,pythonUniString,pythonRawString,pythonUniRawString
189+ syn match pythonStrFormat " {{\| }}" contained containedin =pythonString,pythonUniString,pythonRawString,pythonUniRawString
190+ syn match pythonStrFormat " {\( [a-zA-Z_][a-zA-Z0-9_]*\|\d\+\)\(\. [a-zA-Z_][a-zA-Z0-9_]*\|\[\(\d\+\| [^!:\} ]\+\)\]\) *\( ![rsa]\)\=\( :\( {\( [a-zA-Z_][a-zA-Z0-9_]*\|\d\+\) }\|\( [^}]\= [<>=^]\)\= [ +-]\= #\= 0\=\d *\(\.\d\+\)\= [bcdeEfFgGnoxX%]\=\)\=\)\= }" contained containedin =pythonString,pythonUniString,pythonRawString,pythonUniRawString
190191endif
191192
192193if exists (" python_highlight_string_templates" ) && python_highlight_string_templates != 0
193194 " String templates
194- syn match pythonStrTemplate " \$\(\$\| {[a-zA-Z_][a-zA-Z0-9_]*}\| [a-zA-Z_][a-zA-Z0-9_]*\) " contained containedin =pythonString,pythonUniString,pythonRawString,pythonUniRawString
195+ syn match pythonStrTemplate " \$\$ " contained containedin =pythonString,pythonUniString,pythonRawString,pythonUniRawString
196+ syn match pythonStrTemplate " \$ {[a-zA-Z_][a-zA-Z0-9_]*}" contained containedin =pythonString,pythonUniString,pythonRawString,pythonUniRawString
197+ syn match pythonStrTemplate " \$ [a-zA-Z_][a-zA-Z0-9_]*" contained containedin =pythonString,pythonUniString,pythonRawString,pythonUniRawString
195198endif
196199
197200if exists (" python_highlight_doctests" ) && python_highlight_doctests != 0
@@ -252,7 +255,7 @@ if exists("python_highlight_exceptions") && python_highlight_exceptions != 0
252255 syn keyword pythonExClass SystemError SystemExit TypeError
253256 syn keyword pythonExClass UnboundLocalError UnicodeError
254257 syn keyword pythonExClass UnicodeEncodeError UnicodeDecodeError
255- syn keyword pythonExClass UnicodeTranslateError ValueError
258+ syn keyword pythonExClass UnicodeTranslateError ValueError VMSError
256259 syn keyword pythonExClass WindowsError ZeroDivisionError
257260
258261 syn keyword pythonExClass Warning UserWarning BytesWarning DeprecationWarning
0 commit comments