Seth Daniel
Seth Daniel
is it lag or is it essentially blocking until all services are installed (I think this latter is what the initial report is saying)? Either way I find this baffling...
@dsully I'm already deferring until VimEnter, which is the first entry in the link you provide. VimEnter starts very late in the startup process. If it's truly blocking then it...
However I'm not doing a `defer_fn()`. I don't see how that would help, but I can try it.
I went ahead and added a `start_delay` option. It's documented in the [README.md](https://github.com/WhoIsSethDaniel/mason-tool-installer.nvim#configuration). By default it's 0, but if you set it to, say, 5000 it will delay starting installation...
This fixes my #38 . I don't know if it's the right fix, but it works.
@williamboman I don't know what you've tried but `cpanm --local-lib= ` should work. It will also require that `PERL5LIB` have an entry for that directory when the server runs. e.g....
@kabouzeid I typically install four LSP servers: go, bash, vim, lua. Recently I was unable to install any of these servers due to the SIGABRT. Using the fix suggested by...
I was eventually able to install bash,vim,lua by fiddling with the install_script strings for each. I can find no common element that works, though. For Lua I got rid of...
I use the projectionist vim plugin (https://github.com/tpope/vim-projectionist). When I attempt to use :Vaffle an exception occurs: ``` Error detected while processing function vaffle#init[45]..function vaffle#init[39]..vaffle#buffer#init[3]..BufFilePost Autocommands for "*"..function ProjectionistDetect[14]..50_load[2]..script /home/seth/.vim/pack/git-plugins /opt/vaffle.vim/autoload/vaffle.vim:...
The most radical change that will work is to use 'noautocmd' for the line that runs 'file'. This seems like using a nuclear bomb to kill a fly. autoload/vaffle/buffer.vim: ```...