Skip to content

Commit

Permalink
pythonClassVaraible -> pythonClassVariable
Browse files Browse the repository at this point in the history
Fixes #4
  • Loading branch information
nfnty committed Feb 19, 2017
1 parent b557c46 commit 0832414
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions syntax/python.vim
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ endif
"

syn keyword pythonInstanceVariable self
syn keyword pythonClassVaraible cls
syn keyword pythonClassVariable cls
syn keyword pythonStatement break continue del
syn keyword pythonStatement exec return
syn keyword pythonStatement pass yield
Expand Down Expand Up @@ -104,7 +104,7 @@ syn region FunctionParameters start='(\zs' end='\ze)' display contains=
\ OptionalParameters,
\ pythonRepeat,
\ pythonInstanceVariable,
\ pythonClassVaraible,
\ pythonClassVariable,
\ pythonConditional,
\ pythonComment,
\ pythonOperator,
Expand Down Expand Up @@ -519,7 +519,7 @@ if v:version >= 508 || !exists('did_python_syn_inits')

HiLink pythonExClass Structure
HiLink pythonInstanceVariable htmlTagN
HiLink pythonClassVaraible htmlTagN
HiLink pythonClassVariable htmlTagN
HiLink OptionalParameters htmlTagN

delcommand HiLink
Expand Down

0 comments on commit 0832414

Please sign in to comment.