Browse Source

Resolve full doc dir path when running helptags

Prevents error 150 when user has doc/* in wildignore

Fixes #112
pull/400/merge
Jacobo de Vera 12 years ago
parent
commit
6545681f56
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim

+ 1
- 1
autoload/vundle/installer.vim View File

@ -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


Loading…
Cancel
Save