This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
" we need the conceal feature (vim ≥ 7.3)
if!has('conceal')
finish
endif
" remove the keywords. we'll re-add them below
syntaxclearpythonOperator
syntaxmatchpythonOperator"\<is\>"
syntaxmatchpyNiceOperator"\<in\>"concealcchar=∈
syntaxmatchpyNiceOperator"\<or\>"concealcchar=∨
syntaxmatchpyNiceOperator"\<and\>"concealcchar=∧
" include the space after “not” – if present – so that “not a” becomes “¬a”.
" also, don't hide “not” behind ‘¬’ if it is after “is ”.