Add mcs to class variables

Closes #74
This commit is contained in:
fishsouprecipe
2020-09-25 09:24:21 +03:00
committed by nfnty
parent c661c01918
commit 2ccfb142e7
4 changed files with 7 additions and 5 deletions

View File

@@ -76,7 +76,7 @@ syn keyword pythonStatement break continue del return pass yield global asse
syn keyword pythonStatement raise nextgroup=pythonExClass skipwhite
syn keyword pythonStatement def class nextgroup=pythonFunction skipwhite
if s:Enabled('g:python_highlight_class_vars')
syn keyword pythonClassVar self cls
syn keyword pythonClassVar self cls mcs
endif
syn keyword pythonRepeat for while
syn keyword pythonConditional if elif else