glacambre / firenvim

Embed Neovim in Chrome, Firefox & others.
GNU General Public License v3.0
4.65k stars 143 forks source link

Shows "loading configs" all the time #1552

Closed benlieb closed 1 year ago

benlieb commented 1 year ago

My browser plugin says "loading configs" all of the time. Even when I haven't loaded, and after re-loading them manually.

image

glacambre commented 1 year ago

That's because your neovim emits "loading configs" on stdout or stderr when your browser starts it. If you run grep -ri "loading configs" ~/.config/nvim ~/.local/share/nvim ~/.local/state/nvim you should find the file that contains this string and be able to make it stop emitting this message :)

I'll close this issue because there's nothing to do for me here, but please don't hesitate to ask more questions if you need more help :)

benlieb commented 1 year ago

Wow, you are so right! There was a debug line in my config files.

Crazy that that got into the browser. But now knowing that I can give myself some diagnostics lol!