Skip to content

Commit

Permalink
Merge pull request #13 from jahodfra/master
Browse files Browse the repository at this point in the history
"not in" fix
  • Loading branch information
ehamberg committed Jan 20, 2012
2 parents 85447d2 + 5201a86 commit ba5eead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion after/syntax/python.vim
Expand Up @@ -9,11 +9,11 @@ syntax clear pythonOperator
syntax keyword pythonOperator is

syntax match pyNiceOperator "\<in\>" conceal cchar=
syntax match pyNiceOperator "\<not in\>" conceal cchar=
syntax match pyNiceOperator "\<or\>" conceal cchar=
syntax match pyNiceOperator "\<and\>" conceal cchar=
" include the space after “not” – if present – so that “not a” becomes “¬a”
syntax match pyNiceOperator "\<not\%( \|\>\)" conceal cchar=¬
syntax match pyNiceOperator "\<not in\>" conceal cchar=
syntax match pyNiceOperator "<=" conceal cchar=
syntax match pyNiceOperator ">=" conceal cchar=
" only conceal “==” if alone, to avoid concealing SCM conflict markers
Expand Down

0 comments on commit ba5eead

Please sign in to comment.