From 36e84dd1122c8d38a83b8112db102a4026875528 Mon Sep 17 00:00:00 2001 From: David Halter Date: Wed, 28 Aug 2013 17:10:26 +0430 Subject: [PATCH] jedi-vim doesn't work in compatible mode --- plugin/jedi.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugin/jedi.vim b/plugin/jedi.vim index 0700006..0c96819 100644 --- a/plugin/jedi.vim +++ b/plugin/jedi.vim @@ -4,6 +4,12 @@ " This part of the software is just the vim interface. The really big deal is " the Jedi Python library. + +" jedi-vim doesn't work in compatible mode (vim script syntax problems) +if &compatible + set nocompatible +endif + " jedi-vim really needs, otherwise jedi-vim cannot start. filetype plugin on