aboutsummaryrefslogtreecommitdiffhomepage
path: root/.vim/my/after/syntax/python.vim
blob: 834ab1f6186d08d581bda3b5f94ee27332965ec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
scriptencoding utf-8


if exists("b:current_syntax_my_python")
    finish
endif

if b:current_syntax !=# 'python'
    finish
endif



" Highlight "self".
syn keyword pythonSelf self
hi default link pythonSelf Identifier


let b:current_syntax_my_python = 1