Compare commits
3 Commits
bc1de2d37f
...
3cc1e3d2d8
Author | SHA1 | Date | |
---|---|---|---|
3cc1e3d2d8 | |||
6435ed4c4d | |||
d063e60559 |
2
after/syntax/python.vim
Normal file
2
after/syntax/python.vim
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
highlight link pythonException Conditional
|
||||||
|
highlight link pythonExceptions Keyword
|
@ -158,13 +158,13 @@ if has('gui_running') || &t_Co == 256
|
|||||||
call s:hi('Repeat', '69', '', '')
|
call s:hi('Repeat', '69', '', '')
|
||||||
call s:hi('Label', '69', '', '')
|
call s:hi('Label', '69', '', '')
|
||||||
call s:hi('Operator', '166', '', '')
|
call s:hi('Operator', '166', '', '')
|
||||||
call s:hi('Keyword', '', '', '')
|
call s:hi('Keyword', '72', '', '')
|
||||||
call s:hi('Exception', '69', '', '')
|
call s:hi('Exception', '69', '', '')
|
||||||
|
|
||||||
call s:hi('PreProc', '102', '', '')
|
call s:hi('PreProc', '102', '', '')
|
||||||
call s:hi('Include', '65', '', '')
|
call s:hi('Include', '65', '', '')
|
||||||
call s:hi('Define', '', '', '')
|
call s:hi('Define', '102', '', '')
|
||||||
call s:hi('Macro', '', '', '')
|
call s:hi('Macro', '102', '', '')
|
||||||
call s:hi('PreCondit', '61', '', '')
|
call s:hi('PreCondit', '61', '', '')
|
||||||
|
|
||||||
call s:hi('Type', '75', '', '')
|
call s:hi('Type', '75', '', '')
|
||||||
@ -173,11 +173,11 @@ if has('gui_running') || &t_Co == 256
|
|||||||
call s:hi('Typedef', '75', '', '')
|
call s:hi('Typedef', '75', '', '')
|
||||||
|
|
||||||
call s:hi('Special', '179', '', '')
|
call s:hi('Special', '179', '', '')
|
||||||
call s:hi('SpecialChar', '', '', '')
|
call s:hi('SpecialChar', '179', '', '')
|
||||||
call s:hi('Tag', '', '', '')
|
call s:hi('Tag', '', '', '')
|
||||||
call s:hi('Delimiter', '179', '', '')
|
call s:hi('Delimiter', '179', '', '')
|
||||||
call s:hi('SpecialComment', '246', '', '')
|
call s:hi('SpecialComment', '246', '', '')
|
||||||
call s:hi('Debug', '', '', '')
|
call s:hi('Debug', '179', '', '')
|
||||||
|
|
||||||
call s:hi('Underlined', '38', '', 'underline')
|
call s:hi('Underlined', '38', '', 'underline')
|
||||||
call s:hi('Ignore', '', '', '')
|
call s:hi('Ignore', '', '', '')
|
||||||
|
@ -109,6 +109,7 @@ endif
|
|||||||
if !exists('cpp_no_function')
|
if !exists('cpp_no_function')
|
||||||
" Match function expressions: expr<T>()
|
" Match function expressions: expr<T>()
|
||||||
" ^^^^
|
" ^^^^
|
||||||
|
" TODO: change .* to a not be greedy
|
||||||
syn match cppFunction '\h\w*\ze<.*>\s*(' display
|
syn match cppFunction '\h\w*\ze<.*>\s*(' display
|
||||||
|
|
||||||
hi default link cppFunction Function
|
hi default link cppFunction Function
|
||||||
|
Loading…
x
Reference in New Issue
Block a user