diff options
author | Max Christian Pohle | 2018-02-07 23:58:15 +0100 |
---|---|---|
committer | Max Christian Pohle | 2018-02-07 23:58:15 +0100 |
commit | 6a9632cbb7dc3267fd1743da40d2b0ab1c52917c (patch) | |
tree | 212e36c899e2a2009573dd9cf45f3130b19ba5eb | |
parent | 449c7d316d7176c0fe44bf570d18d013fe3f3272 (diff) | |
download | vim-karlmarks-6a9632cbb7dc3267fd1743da40d2b0ab1c52917c.tar.bz2 vim-karlmarks-6a9632cbb7dc3267fd1743da40d2b0ab1c52917c.zip |
Improved foldtext, removed default textwidth=120
-rw-r--r-- | after/syntax/c.vim | 7 | ||||
-rw-r--r-- | vimrc-full | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/after/syntax/c.vim b/after/syntax/c.vim index ca694a2..0fa1fda 100644 --- a/after/syntax/c.vim +++ b/after/syntax/c.vim | |||
@@ -6,11 +6,14 @@ set foldmethod=syntax | |||
6 | " syn clear cStructure | 6 | " syn clear cStructure |
7 | " highlight! link defines Special | 7 | " highlight! link defines Special |
8 | syntax match Define "\<[A-Z][A-Z0-9_]*\>" | 8 | syntax match Define "\<[A-Z][A-Z0-9_]*\>" |
9 | syntax match Todo "\/\/ @[A-Z]*\:.*$" | 9 | " syntax match Todo "\/\/ @[A-Z]*\:.*$" |
10 | syntax keyword Todo TODO contained | ||
11 | syntax match Comment "//.*" contains=Todo | ||
12 | |||
10 | 13 | ||
11 | " clear default group for a cBlock so we can redefine it without the fold option | 14 | " clear default group for a cBlock so we can redefine it without the fold option |
12 | syn clear cBlock | 15 | syn clear cBlock |
13 | syn region cBlock start=/{/ end=/}/ transparent | 16 | syn region cBlock start=/{/ end=/}/ transparent |
14 | 17 | ||
15 | " multiple single line comments in a row | 18 | " multiple single line comments in a row |
16 | syn match cComment /\v\/\/.*(\_.\/\/.*)+/ fold | 19 | syn match cComment /\v\/\/.*(\_.\/\/.*)+/ fold |
@@ -4,7 +4,7 @@ | |||
4 | " GENERAL: | 4 | " GENERAL: |
5 | "======================================================================================================================= | 5 | "======================================================================================================================= |
6 | set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands | 6 | set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands |
7 | set textwidth=120 | " better done with modeline or local exrc | 7 | set textwidth=0 | " better done with modeline or local exrc and not here |
8 | set ts=4 sts=4 sw=4 expandtab | " better done with a modeline or local exrc | 8 | set ts=4 sts=4 sw=4 expandtab | " better done with a modeline or local exrc |
9 | set virtualedit=all | " virtual edit should be default behaviour, because I don't see any reason against | 9 | set virtualedit=all | " virtual edit should be default behaviour, because I don't see any reason against |
10 | set nonumber norelativenumber | " do not show numbers by default, because that causes a performance loss, instead activate them on a file type basis | 10 | set nonumber norelativenumber | " do not show numbers by default, because that causes a performance loss, instead activate them on a file type basis |
@@ -223,9 +223,9 @@ set foldcolumn=0 | " I think I don't need this second indicator | |||
223 | " set foldmethod=syntax | " foldlevel: syntax, indent, manual / foldmethod=syntax makes Vim incredible slow | 223 | " set foldmethod=syntax | " foldlevel: syntax, indent, manual / foldmethod=syntax makes Vim incredible slow |
224 | set foldnestmax=1 | " top level folding only | 224 | set foldnestmax=1 | " top level folding only |
225 | set foldopen=block,hor,search | " when do we unfold? | 225 | set foldopen=block,hor,search | " when do we unfold? |
226 | let v:foldstart = "FOO" | ||
227 | " set foldtext=Foldtext() | " | 226 | " set foldtext=Foldtext() | " |
228 | set foldtext=v:folddashes.substitute(getline(v:foldstart),'\\v^/[/*]\','','g') | 227 | " set foldtext=v:folddashes.substitute(getline(v:foldstart),'\\v^/[/*]\','','g') |
228 | set foldtext='⊞\ '.getline(v:foldstart).getline(v:foldstart+1).'↵'.getline(v:foldstart+2) | ||
229 | 229 | ||
230 | " vim window behaviour | 230 | " vim window behaviour |
231 | set splitbelow | " open new windows below the current one (i find that more intuitive) | 231 | set splitbelow | " open new windows below the current one (i find that more intuitive) |