Fixed number display

This commit is contained in:
Dmitry Vasiliev
2008-12-07 18:56:30 +03:00
parent 75cbf6b07f
commit 1838753d2c
2 changed files with 2 additions and 2 deletions

View File

@@ -211,7 +211,7 @@ syn match pythonHexNumber "\<0[xX]\x\+\>" display
syn match pythonOctNumber "\<0[oO]\o\+\>" display
syn match pythonBinNumber "\<0[bB][01]\+\>" display
syn match pythonNumber "\<0\>" display
syn match pythonNumber "\<\d\>" display
syn match pythonNumber "\<[1-9]\d\+\>" display
syn match pythonNumber "\<\d\+[jJ]\>" display
syn match pythonNumberError "\<0\d\+\>" display