diff options
| author | Max Christian Pohle | 2024-09-02 18:42:30 +0200 |
|---|---|---|
| committer | Max Christian Pohle | 2024-09-02 18:42:30 +0200 |
| commit | 8a0ce1be51377e3f61e22888be54bb36e7fda923 (patch) | |
| tree | 699e5178f01949287e9cc84615d339abbb0c1145 /after/syntax | |
| parent | fe0e677564995c25119beb8238234c24ef6e592c (diff) | |
| download | vim-8a0ce1be51377e3f61e22888be54bb36e7fda923.tar.bz2 vim-8a0ce1be51377e3f61e22888be54bb36e7fda923.zip | |
removed lazydev because it requires the newest nvim version
Diffstat (limited to 'after/syntax')
| -rwxr-xr-x | after/syntax/log.vim | 2 | ||||
| -rwxr-xr-x | after/syntax/markdown.vim | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/after/syntax/log.vim b/after/syntax/log.vim index 44223e6..99b677f 100755 --- a/after/syntax/log.vim +++ b/after/syntax/log.vim | |||
| @@ -14,7 +14,7 @@ syn match Info / INFO / fold | |||
| 14 | syn match Pass / PASS / fold | 14 | syn match Pass / PASS / fold |
| 15 | 15 | ||
| 16 | 16 | ||
| 17 | silent! lvimgrep /[^ ]* \(ERROR\|WARNING\|FAIL\) / % | 17 | silent! lvimgrep /\(ERROR\|WARNING\|FAIL\)/ % |
| 18 | lopen 12 | 18 | lopen 12 |
| 19 | 19 | ||
| 20 | 20 | ||
diff --git a/after/syntax/markdown.vim b/after/syntax/markdown.vim index 7bdbf46..e012ee4 100755 --- a/after/syntax/markdown.vim +++ b/after/syntax/markdown.vim | |||
| @@ -1,12 +1,12 @@ | |||
| 1 | " Custom conceal | 1 | " Custom conceal |
| 2 | " syntax region todolist start="^\s*[\+-\*x ]" end="\s" contained keepend | 2 | " syntax region todolist start="^\s*[\+-\*x ]" end="\s" contained keepend |
| 3 | 3 | ||
| 4 | 4 | syntax match markdownConceal "\[\ \]" conceal cchar=ó°„± | |
| 5 | syntax match markdownConceal "\[\ \]" contained conceal cchar= | 5 | syntax match markdownConceal "\[x\]" conceal cchar=󰰰 |
| 6 | syntax match markdownConceal "\[x\]" contained conceal cchar= | 6 | syntax match markdownConceal "\[v\]" conceal cchar=󰄵 |
| 7 | syntax match markdownConceal "*" contained conceal cchar=ï‘„ | 7 | syntax match markdownConceal "*" conceal cchar=ï‘„ |
| 8 | syntax match markdownConceal "-" contained conceal cchar=ï…† | 8 | syntax match markdownConceal "-" conceal cchar=ï…† |
| 9 | syntax match markdownConceal "+" contained conceal cchar= | 9 | syntax match markdownConceal "+" conceal cchar= |
| 10 | 10 | ||
| 11 | syntax region | 11 | syntax region |
| 12 | \ markdownItemization | 12 | \ markdownItemization |
