Browse Source

Generate helptags independently from user settings

The wildignore setting affects the behaviour of the `= shorthand, so
this changeset replaces the last remaining use of such construct with a
call to exec.
pull/265/head
Jacobo de Vera 13 years ago
parent
commit
5dd478e18e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim

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

@ -198,7 +198,7 @@ func! s:helptags(rtp) abort
let doc_path = a:rtp.'/doc/'
call s:log(':helptags '.doc_path)
try
helptags `=doc_path`
execute 'helptags ' . doc_path
catch
call s:log("> Error running :helptags ".doc_path)
endtry


Loading…
Cancel
Save