Allow forcing VimwikiAll2HTML with !
This commit is contained in:
parent
efe5f648de
commit
ddf7e5e0ff
@ -1611,7 +1611,7 @@ function! vimwiki#html#Wiki2HTML(path_html, wikifile)
|
|||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
function! vimwiki#html#WikiAll2HTML(path_html)
|
function! vimwiki#html#WikiAll2HTML(path_html, force)
|
||||||
if !s:syntax_supported() && !s:use_custom_wiki2html()
|
if !s:syntax_supported() && !s:use_custom_wiki2html()
|
||||||
echomsg 'Vimwiki Error: Conversion to HTML is not supported for this syntax'
|
echomsg 'Vimwiki Error: Conversion to HTML is not supported for this syntax'
|
||||||
return
|
return
|
||||||
@ -1653,7 +1653,7 @@ function! vimwiki#html#WikiAll2HTML(path_html)
|
|||||||
call vimwiki#vars#set_bufferlocal('subdir', subdir)
|
call vimwiki#vars#set_bufferlocal('subdir', subdir)
|
||||||
call vimwiki#vars#set_bufferlocal('invsubdir', vimwiki#base#invsubdir(subdir))
|
call vimwiki#vars#set_bufferlocal('invsubdir', vimwiki#base#invsubdir(subdir))
|
||||||
|
|
||||||
if !s:is_html_uptodate(wikifile)
|
if a:force || !s:is_html_uptodate(wikifile)
|
||||||
echomsg 'Vimwiki: Processing '.wikifile
|
echomsg 'Vimwiki: Processing '.wikifile
|
||||||
|
|
||||||
call s:convert_file(path_html, wikifile)
|
call s:convert_file(path_html, wikifile)
|
||||||
|
@ -234,8 +234,8 @@ command! -buffer Vimwiki2HTMLBrowse
|
|||||||
\ call vimwiki#base#system_open_link(vimwiki#html#Wiki2HTML(
|
\ call vimwiki#base#system_open_link(vimwiki#html#Wiki2HTML(
|
||||||
\ expand(vimwiki#vars#get_wikilocal('path_html')),
|
\ expand(vimwiki#vars#get_wikilocal('path_html')),
|
||||||
\ expand('%')))
|
\ expand('%')))
|
||||||
command! -buffer VimwikiAll2HTML
|
command! -buffer -bang VimwikiAll2HTML
|
||||||
\ call vimwiki#html#WikiAll2HTML(expand(vimwiki#vars#get_wikilocal('path_html')))
|
\ call vimwiki#html#WikiAll2HTML(expand(vimwiki#vars#get_wikilocal('path_html')), <bang>0)
|
||||||
|
|
||||||
command! -buffer VimwikiTOC call vimwiki#base#table_of_contents(1)
|
command! -buffer VimwikiTOC call vimwiki#base#table_of_contents(1)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user