|
@@ -193,6 +193,12 @@ if !s:Enabled("g:python_highlight_file_headers_as_comments")
|
193
|
193
|
endif
|
194
|
194
|
syn keyword pythonTodo TODO FIXME XXX contained
|
195
|
195
|
|
|
196
|
+"
|
|
197
|
+" Classes
|
|
198
|
+"
|
|
199
|
+
|
|
200
|
+syn match pythonClass "\(import \)\@<!\<[A-Z][a-zA-Z]*" display
|
|
201
|
+
|
196
|
202
|
"
|
197
|
203
|
" Errors
|
198
|
204
|
"
|
|
@@ -486,6 +492,7 @@ if version >= 508 || !exists("did_python_syn_inits")
|
486
|
492
|
HiLink pythonRepeat Repeat
|
487
|
493
|
HiLink pythonException Exception
|
488
|
494
|
HiLink pythonOperator Operator
|
|
495
|
+ HiLink pythonClass Type
|
489
|
496
|
|
490
|
497
|
HiLink pythonDecorator Define
|
491
|
498
|
HiLink pythonDottedName Function
|