diff options
author | Max Christian Pohle | 2022-12-18 20:29:55 +0100 |
---|---|---|
committer | Max Christian Pohle | 2022-12-18 20:56:01 +0100 |
commit | 07797b39851da045aa1bfd0289de0858a1377c48 (patch) | |
tree | 4ca5d2b26d2ca9d01fc052fce5a26f88364a53d0 /syntax | |
parent | 1086af63639d2a108f39ae077e0e201dddf4f523 (diff) | |
download | vim-07797b39851da045aa1bfd0289de0858a1377c48.tar.bz2 vim-07797b39851da045aa1bfd0289de0858a1377c48.zip |
Switched to nvim and neovide
Diffstat (limited to 'syntax')
-rw-r--r-- | syntax/univention-template.vim | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/syntax/univention-template.vim b/syntax/univention-template.vim deleted file mode 100644 index f628762..0000000 --- a/syntax/univention-template.vim +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | " Vim syntax file | ||
2 | " Language: conf.python | ||
3 | " Maintainer: Max Christian Pohle <pohle@univention.de> | ||
4 | " Last Change: Jan 20, 2020 | ||
5 | |||
6 | if exists("b:current_syntax") | ||
7 | finish | ||
8 | end | ||
9 | |||
10 | let b:current_syntax = "univention-template" | ||
11 | |||
12 | " embolden normal text to make it a little bit more present than normal python | ||
13 | highlight! Normal cterm=bold gui=bold | ||
14 | |||
15 | " highlighting for univention config registry | ||
16 | syntax region Define matchgroup=Statement start=/@%@/ end=/@%@/ oneline | ||
17 | |||
18 | unlet b:current_syntax | ||
19 | syntax include @PYTHON syntax/python.vim | ||
20 | syntax region inlinePython | ||
21 | \ matchgroup=Statement | ||
22 | \ start="@!@" end="@!@.*" | ||
23 | \ contains=@PYTHON | ||
24 | \ keepend fold extend | ||
25 | let b:current_syntax = "univention-template" | ||
26 | |||
27 | syntax match Operator '[=;]' | ||
28 | |||
29 | " TODO: further evaluation of: | ||
30 | " syntax region String start=/"/ end=/"/ | ||
31 | " syntax keyword Statement include | ||