From 6545681f560eb174c722cbf74b890d409c79293f Mon Sep 17 00:00:00 2001 From: Jacobo de Vera Date: Sun, 6 Apr 2014 00:08:03 +0200 Subject: [PATCH] Resolve full doc dir path when running helptags Prevents error 150 when user has doc/* in wildignore Fixes #112 --- autoload/vundle/installer.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 7fdc5f3..bc2f41d 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -207,7 +207,7 @@ endf func! s:helptags(rtp) abort " it is important to keep trailing slash here - let doc_path = resolve(a:rtp).'/doc/' + let doc_path = resolve(a:rtp . '/doc/') call s:log(':helptags '.doc_path) try execute 'helptags ' . doc_path