vimwiki

Personal wiki for vim
git clone https://github.com/vimwiki/vimwiki.git
Log | Files | Refs | README | LICENSE

commit af08e340006e73c3c93eebd8069ffe77df82e7e1
parent d9d14cc3f7d3c0317345f9afa33eaf82cb9e14c1
Author: Tinmarino <tinmarino@gmail.com>
Date:   Mon, 27 Jul 2020 01:35:49 -0400

Fix: update_listing_in_buffer is clearing the buffer (Issue #921)

Problem:
        VimwikiGenerateTags and VimwikiDiaryGenerateLinks end up with empty wiki files
        when foldlevel=0 and g:vimwiki_folding='expr'

Solution:
        Set an initial foldlevel to 100 in update_listing in diary

Optionaly: Comment a little the big messy, geeky hack !

Diffstat:
Mautoload/vimwiki/base.vim | 17++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/autoload/vimwiki/base.vim b/autoload/vimwiki/base.vim @@ -1223,12 +1223,12 @@ endfunction " Called: by functions adding listing to buffer (this is an util function) function! vimwiki#base#update_listing_in_buffer(Generator, start_header, \ content_regex, default_lnum, header_level, create) abort - " Vim behaves strangely when files change while in diff mode + " Clause: Vim behaves strangely when files change while in diff mode if &diff || &readonly return endif - " Check if the listing is already there + " Clause: Check if the listing is already there let already_there = 0 let header_level = 'rxH' . a:header_level . '_Template' @@ -1248,17 +1248,21 @@ function! vimwiki#base#update_listing_in_buffer(Generator, start_header, return endif + " Save state let winview_save = winsaveview() + " Work is supposing an initial visibility (Issue: #921) + let foldlevel_save = &l:foldlevel + let &l:foldlevel = 100 let cursor_line = winview_save.lnum let is_cursor_after_listing = 0 let is_fold_closed = 1 - let lines_diff = 0 + " Set working range according to listing presence if already_there let is_fold_closed = ( foldclosed(start_lnum) > -1 ) - " delete the old listing + " Delete the old listing let whitespaces_in_first_line = matchstr(getline(start_lnum), '\m^\s*') let end_lnum = start_lnum + 1 while end_lnum <= line('$') && getline(end_lnum) =~# a:content_regex @@ -1278,7 +1282,7 @@ function! vimwiki#base#update_listing_in_buffer(Generator, start_header, let start_lnum = a:default_lnum let is_cursor_after_listing = ( cursor_line > a:default_lnum ) let whitespaces_in_first_line = '' - " append newline if not replacing first line + " Append newline if not replacing first line if start_lnum > 1 keepjumps call append(start_lnum -1, '') let start_lnum += 1 @@ -1324,6 +1328,9 @@ function! vimwiki#base#update_listing_in_buffer(Generator, start_header, if is_cursor_after_listing let winview_save.lnum += lines_diff endif + + " Restore state + let &l:foldlevel = foldlevel_save call winrestview(winview_save) endfunction