From 4ac55fee9a72347ba435dad6c8e2e0d22ca8511a Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Tue, 24 Jun 2014 14:04:04 +0200 Subject: [PATCH] pandoc works with vim >= 7.4 --- .vimrc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.vimrc b/.vimrc index 8657a3a..b7b4014 100644 --- a/.vimrc +++ b/.vimrc @@ -26,9 +26,11 @@ Plugin 'jnurmine/Zenburn.git' Plugin 'davidhalter/jedi-vim' " Handy Markdown stuff Plugin 'tpope/vim-markdown' -" Pandoc, for stuff like autocompletion of citations from bibtex, other LaTeX -" stuff -Plugin 'vim-pandoc/vim-pandoc' +if v:version >= 704 + " Pandoc, for stuff like autocompletion of citations from bibtex, other LaTeX + " stuff. Works with vim >= 7.4 + Plugin 'vim-pandoc/vim-pandoc' +endif " Distraction-free writing, start with V (\V) Plugin 'mikewest/vimroom'