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

Clean up boolean highlighting

This commit is contained in:
Dmitry Vasiliev
2013-08-11 17:25:39 +02:00
parent a0d21acc1c
commit 6f6f10ff54
3 changed files with 12 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
Revision 3.3.4 (2013-08-11):
- Highlight True and False as booleans. Patch by Yuri Habrusiev.
Revision 3.3.3 (2013-06-02): Revision 3.3.3 (2013-06-02):
- More lightweight syntax reloading. Patch by Will Gray. - More lightweight syntax reloading. Patch by Will Gray.

View File

@@ -136,3 +136,4 @@ List of the contributors in alphabetical order:
- Marc Weber - Marc Weber
- Pedro Algarvio - Pedro Algarvio
- Will Gray - Will Gray
- Yuri Habrusiev

View File

@@ -2,9 +2,9 @@
" Language: Python " Language: Python
" Maintainer: Dmitry Vasiliev <dima at hlabs dot org> " Maintainer: Dmitry Vasiliev <dima at hlabs dot org>
" URL: https://github.com/hdima/python-syntax " URL: https://github.com/hdima/python-syntax
" Last Change: 2013-06-02 " Last Change: 2013-08-11
" Filenames: *.py " Filenames: *.py
" Version: 3.3.3 " Version: 3.3.4
" "
" Based on python.vim (from Vim 6.1 distribution) " Based on python.vim (from Vim 6.1 distribution)
" by Neil Schemenauer <nas at python dot ca> " by Neil Schemenauer <nas at python dot ca>
@@ -30,6 +30,7 @@
" Marc Weber " Marc Weber
" Pedro Algarvio " Pedro Algarvio
" Will Gray " Will Gray
" Yuri Habrusiev
" "
" Options " Options
" ======= " =======
@@ -159,8 +160,8 @@ if s:Python2Syntax()
syn keyword pythonPreCondit as syn keyword pythonPreCondit as
syn match pythonFunction "[a-zA-Z_][a-zA-Z0-9_]*" display contained syn match pythonFunction "[a-zA-Z_][a-zA-Z0-9_]*" display contained
else else
syn keyword pythonStatement as nonlocal syn keyword pythonStatement as nonlocal None
syn keyword pythonBoolean True False None syn keyword pythonBoolean True False
syn match pythonFunction "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*" display contained syn match pythonFunction "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*" display contained
endif endif
@@ -371,7 +372,8 @@ syn match pythonFloat "\<\d\+\.\d*\%([eE][+-]\=\d\+\)\=[jJ]\=" display
if s:Enabled("g:python_highlight_builtin_objs") if s:Enabled("g:python_highlight_builtin_objs")
if s:Python2Syntax() if s:Python2Syntax()
syn keyword pythonBuiltinObj True False None syn keyword pythonBuiltinObj None
syn keyword pythonBoolean True False
endif endif
syn keyword pythonBuiltinObj Ellipsis NotImplemented syn keyword pythonBuiltinObj Ellipsis NotImplemented
syn keyword pythonBuiltinObj __debug__ __doc__ __file__ __name__ __package__ syn keyword pythonBuiltinObj __debug__ __doc__ __file__ __name__ __package__