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.
This commit is contained in:
Jacobo de Vera 2013-02-08 02:42:12 +00:00
parent 8e8cfda2d2
commit 5dd478e18e

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