mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
10 lines
376 B
VimL
10 lines
376 B
VimL
execute 'source' fnameescape(expand('<sfile>:p:h').'/text.vim')
|
|
|
|
let s:src_file = expand('%')
|
|
let s:out_file = s:src_file.'.html'
|
|
let &l:makeprg = 'markdown2htmldoc '.shellescape(s:src_file).' '.shellescape(s:out_file)
|
|
for s:arg in get(g:, 'dotfiles_markdown2htmldoc_options', [])
|
|
let &l:makeprg .= ' '.shellescape(s:arg)
|
|
endfor
|
|
|
|
nnoremap <buffer> <F5> <Cmd>Open %.html<CR>
|