From 7b60d00dbc4f95abbaf8af356d059de00ed03161 Mon Sep 17 00:00:00 2001 From: David Halter Date: Mon, 7 Jan 2013 00:00:16 +0100 Subject: [PATCH] also check for py3k in ftplugin --- ftplugin/python/jedi.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftplugin/python/jedi.vim b/ftplugin/python/jedi.vim index 69ed7c6..711b9a7 100644 --- a/ftplugin/python/jedi.vim +++ b/ftplugin/python/jedi.vim @@ -1,6 +1,6 @@ let b:did_ftplugin = 1 -if !has('python') +if !has('python') && !has('python3') finish endif " ------------------------------------------------------------------------