vimwiki

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

commit 2eccebc7ea8bad7708e26c9ca6a6fb9ac4f04e83
parent 29fa46f0c57911319f4055cc0f0dd3eb555c7131
Author: EinfachToll <istjanichtzufassen@googlemail.com>
Date:   Mon,  3 Mar 2014 09:13:41 +0100

Fix list item containing only preformatted text behaving not properly

Diffstat:
Mautoload/vimwiki/lst.vim | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/autoload/vimwiki/lst.vim b/autoload/vimwiki/lst.vim @@ -372,8 +372,8 @@ function! s:get_last_item_in_list(item, ignore_kind) "{{{ return cur_item endfunction "}}} -"Returns: lnum+1 in most cases, but skips blank lines and preformatted text -"0 in case of nonvalid line +"Returns: lnum+1 in most cases, but skips blank lines and preformatted text, +"0 in case of nonvalid line. "If there is no second argument, 0 is returned at a header, otherwise the "header is skipped function! s:get_next_line(lnum, ...) "{{{ @@ -383,7 +383,7 @@ function! s:get_next_line(lnum, ...) "{{{ \ getline(cur_ln) !~# '^\s*'.g:vimwiki_rxPreEnd.'\s*$' let cur_ln += 1 endwhile - let next_line = nextnonblank(cur_ln+1) + let next_line = cur_ln else let next_line = nextnonblank(a:lnum+1) endif @@ -552,7 +552,7 @@ function! s:get_last_line_of_item_incl_children(item) "{{{ endfunction "}}} "Returns: the last line of a (possibly multiline) item -"Note: there can be other list items inbetween the first and last lines +"Note: there can be other list items between the first and last line function! s:get_last_line_of_item(item) "{{{ if a:item.type == 0 | return 0 | endif let org_lvl = s:get_level(a:item.lnum)