From ac6756a4661ce9eded8a9d3abe5fad2428b90102 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 17 Feb 2017 22:11:21 +0100 Subject: [PATCH] Fix default of jedi#auto_vim_configuration back to 1 (#682) This was broken in eba90e6. --- plugin/jedi.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/jedi.vim b/plugin/jedi.vim index 269af1f..6823c7d 100644 --- a/plugin/jedi.vim +++ b/plugin/jedi.vim @@ -4,7 +4,7 @@ " This part of the software is just the vim interface. The really big deal is " the Jedi Python library. -if get(g:, 'jedi#auto_vim_configuration', 0) +if get(g:, 'jedi#auto_vim_configuration', 1) " jedi-vim doesn't work in compatible mode (vim script syntax problems) if &compatible " vint: -ProhibitSetNoCompatible