commit 61e5334274a41851698a3f36130feaf427de78f7 parent cad59ef5e17e58ec87a252252b6cafd2d758b9f6 Author: Alex Balgavy <a.balgavy@gmail.com> Date: Sun, 5 Apr 2020 21:21:26 +0200 vim: added pandoc-citeproc to markdown compiler Former-commit-id: 94fafaade5641f867e46e86cc5fb141f96ce74b1 Diffstat:
M | vim/compiler/markdown.vim | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vim/compiler/markdown.vim b/vim/compiler/markdown.vim @@ -5,4 +5,4 @@ let current_compiler = "markdown" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif -CompilerSet makeprg=pandoc\ %:p:S\ -o\ %:p:r:S.pdf\ \&\&\ open\ -g\ %:p:r:S.pdf +CompilerSet makeprg=pandoc\ %:p:S\ -f\ markdown\ --filter\ pandoc-citeproc\ -o\ %:p:r:S.pdf\ \&\&\ open\ -g\ %:p:r:S.pdf