Tim Tyrrell

Results 11 comments of Tim Tyrrell

Seems like I have the same issue. If I run `CocCommand stylelintplus.applyAutoFixes` it works but not if I save or format. Oh, I just found out why. Looks I had...

Assuming you mean me, I do. I also have the following which are related to styles or formatting, in case it helps: ``` "css.validate": false, "less.validate": false, "scss.validate": false, "wxss.validate":...

Yup, lots of flicking now but going back to the commit mentioned above resolves it.

@rmagatti sounds like the workaround is to disable the autosave/restore? Thanks for the response, feel free to close this unless you want to keep it around. I understand the complexity...

I leverage the [close-buffers glob feature](https://github.com/kazhala/close-buffers.nvim#glob) and [the session plugin](https://github.com/rmagatti/auto-session#-command-hooks) pre-save callback to close them this way: ``` call plug#begin('~/.config/nvim/plugged') Plug 'nvim-lua/plenary.nvim' Plug 'hoschi/yode-nvim' Plug 'kazhala/close-buffers.nvim' Plug 'rmagatti/auto-session' call plug#end()...

Totally have this problem also

FYI, https://github.com/barrett-ruth/import-cost.nvim is also built on `wix/import-cost` and I have had success with it

At a quick glance, seems like moving part of the `installation_check()` before the install could remedy some of this.

One thought is you could rig up something like the following, I am still using [vim-plug](https://github.com/junegunn/vim-plug) so my example would run anytime the plugins update: ``` Plug 'pheen/fuzzy_ruby_server', { 'do':...