I "solved" the conflict between AsNeeded.vim and taglist.vim
by overriding the FuncUndefined autocmd in AsNeeded.vim.

I created fixup.vim in vimfiles\after\plugin with one
"line":

    autocmd! FuncUndefined *
        \ if expand("<afile>") !~# "Tlist"
        \ && expand("<afile>") !~# "TagList"
        \    | call AsNeeded(1,expand("<afile>")) |
        \ endif

-- 
Best regards,
Bill

Reply via email to