From 78610d247972d7a627c18c1444fc1440508cb5fd Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Wed, 14 May 2014 15:05:34 -0700 Subject: [PATCH] Clarified the 'old libs found' error message --- plugin/youcompleteme.vim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin/youcompleteme.vim b/plugin/youcompleteme.vim index ed7465bb..8ab7c657 100644 --- a/plugin/youcompleteme.vim +++ b/plugin/youcompleteme.vim @@ -36,7 +36,7 @@ elseif v:version < 703 || (v:version == 703 && !has('patch584')) elseif !has( 'python' ) echohl WarningMsg | \ echomsg "YouCompleteMe unavailable: requires Vim compiled with " . - \ " Python 2.x support" | + \ "Python 2.x support" | \ echohl None call s:restore_cpo() finish @@ -62,7 +62,8 @@ endfunction if s:YcmLibsPresentIn( s:python_folder_path ) echohl WarningMsg | - \ echomsg "YCM libraries found in old location; please RECOMPILE YCM." | + \ echomsg "YCM libraries found in old YouCompleteMe/python location; " . + \ "please RECOMPILE YCM." | \ echohl None call s:restore_cpo() finish