From 08324146d496d1a8bc88c9f87ce8e800bbfbbe21 Mon Sep 17 00:00:00 2001 From: nfnty Date: Sun, 19 Feb 2017 12:36:50 +0100 Subject: [PATCH] `pythonClassVaraible` -> `pythonClassVariable` Fixes #4 --- syntax/python.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/syntax/python.vim b/syntax/python.vim index 2ddb1ab..ee2c6b5 100644 --- a/syntax/python.vim +++ b/syntax/python.vim @@ -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 @@ -104,7 +104,7 @@ syn region FunctionParameters start='(\zs' end='\ze)' display contains= \ OptionalParameters, \ pythonRepeat, \ pythonInstanceVariable, - \ pythonClassVaraible, + \ pythonClassVariable, \ pythonConditional, \ pythonComment, \ pythonOperator, @@ -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