vimwiki

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

commit eb44af27c26cb0feee3af9c9b30caadb0f44a73f
parent c036ac34c9364a83095cfaf784d2b55969eb7505
Author: EinfachToll <istjanichtzufassen@googlemail.de>
Date:   Tue, 29 Oct 2013 12:58:03 +0100

clear a [.] or [o] or [O] item if it has no more children after moving

Diffstat:
Mautoload/vimwiki/lst.vim | 19+++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/autoload/vimwiki/lst.vim b/autoload/vimwiki/lst.vim @@ -484,7 +484,7 @@ function! s:adjust_numbered_list(item, all, recursive) "{{{ endwhile endfunction "}}} -"Returns: the (rounded) rate of [X] checked child items in percent +"Returns: the (rounded) rate of checkboxed list item in percent function! s:get_rate(item) "{{{ if a:item.type == 0 || a:item.cb == '' return -1 @@ -588,15 +588,22 @@ function! s:update_state(item) "{{{ if count_children_with_cb > 0 let new_rate = sum_children_rate / count_children_with_cb - - "set state and set the parents states recursively - let state_changed = s:set_state(a:item, new_rate) - if state_changed - call s:update_state(s:get_parent(a:item)) + call s:set_state_recursively(a:item, new_rate) + else + let rate = s:get_rate(a:item) + if rate > 0 && rate < 100 + call s:set_state_recursively(a:item, 0) endif endif endfunction "}}} +function! s:set_state_recursively(item, new_rate) "{{{ + let state_changed = s:set_state(a:item, a:new_rate) + if state_changed + call s:update_state(s:get_parent(a:item)) + endif +endfunction "}}} + "Creates checkbox in a list item. "Returns: 1 if successful function! s:create_cb(item) "{{{