From f3b1233e3c1de266e6dc6b602ed6742a88100da1 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Mon, 28 Oct 2013 12:31:31 -0700 Subject: [PATCH] Clarify error about Vim without python 2 support Should be less confusing to some users. Related to issue #619. --- plugin/youcompleteme.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin/youcompleteme.vim b/plugin/youcompleteme.vim index 60c22320..b8343ee2 100644 --- a/plugin/youcompleteme.vim +++ b/plugin/youcompleteme.vim @@ -28,7 +28,8 @@ elseif v:version < 703 || (v:version == 703 && !has('patch584')) finish elseif !has( 'python' ) echohl WarningMsg | - \ echomsg "YouCompleteMe unavailable: requires python 2.x" | + \ echomsg "YouCompleteMe unavailable: requires Vim compiled with " . + \ " Python 2.x support" | \ echohl None finish endif