1
0
mirror of https://github.com/gryf/python-syntax.git synced 2025-12-17 11:30:27 +01:00

Fixed hex error display

This commit is contained in:
Dmitry Vasiliev
2008-09-21 20:16:19 +04:00
parent 07c654e70d
commit 6f75c9ab82
2 changed files with 3 additions and 3 deletions

View File

@@ -220,7 +220,7 @@ syn match pythonFloat "\<\d\+[eE][+-]\=\d\+[jJ]\=\>" display
syn match pythonFloat "\<\d\+\.\d*\([eE][+-]\=\d\+\)\=[jJ]\=" display
syn match pythonOctError "\<0[oO]\=\o*[8-9]\d*[lL]\=\>" display
syn match pythonHexError "\<0[xX]\x*\X\x*[lL]\=\>" display
syn match pythonHexError "\<0[xX]\x*[g-zG-Z]\x*[lL]\=\>" display
syn match pythonBinError "\<0[bB][01]*[2-9]\d*[lL]\=\>" display
if exists("python_highlight_builtins") && python_highlight_builtins != 0