From 89eb916f3d746862f6936e53e70ea476bb9e1353 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Wed, 14 May 2014 15:02:51 -0700 Subject: [PATCH] Fixing bug in YCM library detection --- plugin/youcompleteme.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/youcompleteme.vim b/plugin/youcompleteme.vim index 6b148b7b..ed7465bb 100644 --- a/plugin/youcompleteme.vim +++ b/plugin/youcompleteme.vim @@ -44,7 +44,7 @@ endif let s:script_folder_path = escape( expand( ':p:h' ), '\' ) let s:python_folder_path = s:script_folder_path . '/../python/' -let s:ycmd_folder_path = s:script_folder_path . '/../third_party/ycmd' +let s:ycmd_folder_path = s:script_folder_path . '/../third_party/ycmd/' function! s:YcmLibsPresentIn( path_prefix ) if filereadable(a:path_prefix . 'ycm_client_support.so') &&