From 5670946a732aa63fada0d56c721d61fc357b2703 Mon Sep 17 00:00:00 2001 From: David Halter Date: Sat, 5 Jan 2013 13:56:38 +0100 Subject: [PATCH] finish also ftplugin if +python is not available --- ftplugin/python/jedi.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ftplugin/python/jedi.vim b/ftplugin/python/jedi.vim index 3734f6c..69ed7c6 100644 --- a/ftplugin/python/jedi.vim +++ b/ftplugin/python/jedi.vim @@ -1,5 +1,8 @@ let b:did_ftplugin = 1 +if !has('python') + finish +endif " ------------------------------------------------------------------------ " Initialization of jedi-vim " ------------------------------------------------------------------------