This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" place it in ~/.vim/after/syntax/python.vim | |
" we need the conceal feature (vim ≥ 7.3) | |
if !has('conceal') | |
finish | |
endif | |
" remove the keywords. we'll re-add them below | |
syntax clear pythonOperator | |
syntax keyword pythonOperator is |