We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b20f3ce commit dd880f2Copy full SHA for dd880f2
syntax/python.vim
@@ -24,8 +24,10 @@ call pymode#Default('g:pymode_syntax_all', 1)
24
syn keyword pythonStatement global assert
25
syn keyword pythonStatement lambda yield
26
syn keyword pythonStatement with as
27
- syn keyword pythonStatement def class nextgroup=pythonFunction skipwhite
+ syn keyword pythonStatement def nextgroup=pythonFunction skipwhite
28
syn match pythonFunction "[a-zA-Z_][a-zA-Z0-9_]*" display contained
29
+ syn keyword pythonStatement class nextgroup=pythonClass skipwhite
30
+ syn match pythonClass "[a-zA-Z_][a-zA-Z0-9_]*" display contained
31
syn keyword pythonRepeat for while
32
syn keyword pythonConditional if elif else
33
syn keyword pythonInclude import from
0 commit comments