From c282448be3b686fbc2d977ad0191d425fe10fc9b Mon Sep 17 00:00:00 2001 From: Max Edmands Date: Sat, 15 Feb 2014 20:03:16 -0800 Subject: [PATCH] Ensure trailing slash when sending helptags command --- 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 d99791f..ad041ba 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -202,7 +202,7 @@ func! s:helptags(rtp) abort let doc_path = a:rtp.'/doc/' call s:log(':helptags '.doc_path) try - execute 'helptags ' . resolve(doc_path) + execute 'helptags ' . simplify(resolve(doc_path) . '/') catch call s:log("> Error running :helptags ".doc_path) return 0