diff options
| author | jdhao <jdhao@hotmail.com> | 2020-09-30 19:28:35 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2020-09-30 19:28:35 +0800 |
| commit | 4537bab436fba556f46f2a68d613058d8a17d188 (patch) | |
| tree | efcc0083d9de124fe0f96c2b16c6b538bfb562db /autoload | |
| parent | 191abbcf88d607384f88ce2fba44f83b97fc0bbe (diff) | |
update fold text style
Diffstat (limited to 'autoload')
| -rw-r--r-- | autoload/utils.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/utils.vim b/autoload/utils.vim index 07113af..8ea37d3 100644 --- a/autoload/utils.vim +++ b/autoload/utils.vim @@ -72,7 +72,7 @@ function! utils#MyFoldText() abort let l:fold_line_num = v:foldend - v:foldstart let l:fold_text = substitute(l:line, '^"{\+', '', 'g') let l:fill_char_num = &textwidth - len(l:fold_text) - len(l:fold_line_num) - 10 - return printf('+%s%s%s (%s L)', repeat('-', 4), l:fold_text, repeat('.', l:fill_char_num), l:fold_line_num) + return printf('+%s%s %s (%s L)', repeat('-', 4), l:fold_text, repeat('-', l:fill_char_num), l:fold_line_num) endfunction " Toggle cursor column |
