Do not add multiple * on gll

Lists in default vimwiki syntax has no multiple * as bullet point.
This behaviour could be implemented for media syntax.
This commit is contained in:
Maxim Kim 2013-07-11 23:23:47 +04:00
parent a36bbbb54a
commit a405c7317a

View File

@ -992,14 +992,6 @@ function! s:adjust_mrkr(item) "{{{
let new_mrkr = neighbor_item.mrkr let new_mrkr = neighbor_item.mrkr
endif endif
"if possible, set e.g. *** if parent has ** as marker
if neighbor_item.type == 0 && a:item.type == 1 && has_key(g:vimwiki_bullet_points, s:first_char(a:item.mrkr)) && g:vimwiki_bullet_points[s:first_char(a:item.mrkr)] == 1
let parent_item = s:get_parent(a:item)
if parent_item.type == 1 && s:first_char(parent_item.mrkr) == s:first_char(a:item.mrkr)
let new_mrkr = repeat(s:first_char(parent_item.mrkr), s:string_length(parent_item.mrkr)+1)
endif
endif
call s:substitute_string_in_line(a:item.lnum, a:item.mrkr, new_mrkr) call s:substitute_string_in_line(a:item.lnum, a:item.mrkr, new_mrkr)
call s:adjust_numbered_list(a:item, 0, 1) call s:adjust_numbered_list(a:item, 0, 1)
endfunction "}}} endfunction "}}}