comparison vendor/vim-packs/srcery-vim/after/syntax/python.vim @ 704:1e0f578f6752

Update vendor and add support for vim packs
author nanaya <me@nanaya.net>
date Sun, 18 Dec 2022 20:06:46 +0900
parents
children
comparison
equal deleted inserted replaced
703:b7cd7465cc26 704:1e0f578f6752
1 if srcery#helper#ShouldAbort('python')
2 finish
3 endif
4
5 " Python: {{{
6
7 hi! link pythonBuiltin SrceryYellow
8 hi! link pythonBuiltinObj SrceryYellow
9 hi! link pythonBuiltinFunc SrceryYellow
10 hi! link pythonFunction SrceryCyan
11 hi! link pythonDecorator SrceryRed
12 hi! link pythonInclude SrceryBlue
13 hi! link pythonImport SrceryBlue
14 hi! link pythonRun SrceryBlue
15 hi! link pythonCoding SrceryBlue
16 hi! link pythonOperator SrceryRed
17 hi! link pythonExceptions SrceryMagenta
18 hi! link pythonBoolean SrceryMagenta
19 hi! link pythonDot SrceryBrightWhite
20
21 " }}}