Hello, the only vial-based plugin I use is vial-http (which is pretty slick, by the way) but due to the way Vial does its init, I'm unable to lazy-load it.
Unfortunately, it seems like vial.vim relies solely on the VimEnter autocmd to do its vial.init() call. It looks like you can use v:vim_did_enter to check if VimEnter was already triggered and then call vial.init() directly in that case.
Hello, the only vial-based plugin I use is
vial-http
(which is pretty slick, by the way) but due to the way Vial does its init, I'm unable to lazy-load it.I'd like to do this:
Unfortunately, it seems like
vial.vim
relies solely on theVimEnter
autocmd to do itsvial.init()
call. It looks like you can usev:vim_did_enter
to check ifVimEnter
was already triggered and then callvial.init()
directly in that case.