aboutsummaryrefslogtreecommitdiff
path: root/after
diff options
context:
space:
mode:
authorMax Christian Pohle2018-05-14 22:15:01 +0200
committerMax Christian Pohle2018-05-14 22:15:01 +0200
commitdf5e16fc3baa09ef63d9ee9c0e07861f23d5149d (patch)
tree6343784216385880377c2d6f44399020235351ae /after
parent2d99b2952df8f2b009e86b851627a3502ce78f62 (diff)
downloadvim-df5e16fc3baa09ef63d9ee9c0e07861f23d5149d.tar.bz2
vim-df5e16fc3baa09ef63d9ee9c0e07861f23d5149d.zip
Added installer and fixed spell checking error
The error was visible in C files where comments of highlighting group Folded were not displaying bad spelling colors any more.
Diffstat (limited to 'after')
-rw-r--r--after/syntax/c.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/after/syntax/c.vim b/after/syntax/c.vim
index d08eabd..c7a9bc0 100644
--- a/after/syntax/c.vim
+++ b/after/syntax/c.vim
@@ -16,10 +16,10 @@ syn clear cBlock
16syn region cBlock start=/{/ end=/}/ transparent 16syn region cBlock start=/{/ end=/}/ transparent
17 17
18" multiple single line comments in a row 18" multiple single line comments in a row
19syn clear cComment 19" syn clear cComment
20syn match cComment /\v\/\/.*(\_.\/\/.*)+/ fold 20" syn match cComment /\v\/\/.*(\_.\/\/.*)+/ fold
21syn region cComment start="\/\*" end="\*\/" 21" syn region cComment start="\/\*" end="\*\/"
22syn region Folded start="^\/\*" end="\*\/" fold 22" syn region Folded start="^\/\*" end="\*\/" fold
23 23
24 24
25" let b:current_syntax = "c" 25" let b:current_syntax = "c"
..