Merge branch 'beta' into dev
This commit is contained in:
commit
89d28a72c5
@ -1457,7 +1457,11 @@ function! s:convert_file(path_html, wikifile) "{{{
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
" prepare regexps for lists
|
" prepare regexps for lists
|
||||||
let s:bullets = '[*-]'
|
if exists("g:vimwiki_additional_bullet_types")
|
||||||
|
let s:bullets = '[*-'. join(keys(g:vimwiki_additional_bullet_types), '') . ']'
|
||||||
|
else
|
||||||
|
let s:bullets = '[*-]'
|
||||||
|
endif
|
||||||
let s:numbers =
|
let s:numbers =
|
||||||
\'\C\%(#\|\d\+)\|\d\+\.\|[ivxlcdm]\+)\|[IVXLCDM]\+)\|\l\{1,2})\|\u\{1,2})\)'
|
\'\C\%(#\|\d\+)\|\d\+\.\|[ivxlcdm]\+)\|[IVXLCDM]\+)\|\l\{1,2})\|\u\{1,2})\)'
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1559,6 +1559,10 @@ after a list using letters or vice versa, Vimwiki will get confused because
|
|||||||
it cannot distinguish which is which (at least if the types are both upper
|
it cannot distinguish which is which (at least if the types are both upper
|
||||||
case or both lower case).
|
case or both lower case).
|
||||||
|
|
||||||
|
You can add additional list-types in your vimrc by setting the variable
|
||||||
|
let g:vimwiki_additional_bullet_types = { "→": 0}
|
||||||
|
Corresponding mapings will not be set.
|
||||||
|
|
||||||
See |vimwiki_glstar|, |vimwiki_gl#| |vimwiki_gl-|, |vimwiki_gl-|,
|
See |vimwiki_glstar|, |vimwiki_gl#| |vimwiki_gl-|, |vimwiki_gl-|,
|
||||||
|vimwiki_gl1|, |vimwiki_gla|, |vimwiki_glA|, |vimwiki_gli|, |vimwiki_glI|
|
|vimwiki_gl1|, |vimwiki_gla|, |vimwiki_glA|, |vimwiki_gli|, |vimwiki_glI|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user