Checks if custom_wiki2html is executable on PATH

This commit is contained in:
Patrick Davey 2014-10-14 15:39:46 +13:00
parent 2c03d82a0e
commit c1a5bb51ad

View File

@ -1344,7 +1344,7 @@ endfunction " }}}
function! s:use_custom_wiki2html() "{{{
let custom_wiki2html = VimwikiGet('custom_wiki2html')
return !empty(custom_wiki2html) && s:file_exists(custom_wiki2html)
return !empty(custom_wiki2html) && (s:file_exists(custom_wiki2html) || s:binary_exists(custom_wiki2html))
endfunction " }}}
function! vimwiki#html#CustomWiki2HTML(path, wikifile, force) "{{{
@ -1570,6 +1570,10 @@ function! s:file_exists(fname) "{{{
return !empty(getftype(expand(a:fname)))
endfunction "}}}
function! s:binary_exists(fname) "{{{
return executable(expand(a:fname))
endfunction "}}}
" uses VimwikiGet('path')
function! vimwiki#html#get_wikifile_url(wikifile) "{{{
return VimwikiGet('path_html').