Ilya Ilyinykh
Ilya Ilyinykh
Hello! I faced the same issue. I found that `codelense` causes error here: https://github.com/ray-x/go.nvim/blob/d748e79011437d5b080006b896b3c296656641d7/lua/go/codelens.lua#L52 Every time we open a new dependency, we open a new _gopls_ instance. ``` Client: gopls...
In my case problem was solved by this fix: https://github.com/ray-x/go.nvim/pull/445
I guess you are right @i-vrnv. I've just checked one more time and everything looks fine. closed the PR. @ray-x +1, you did a great job, thanks for the plugin!
Hello! I created a PR: https://github.com/ray-x/go.nvim/pull/445 It seems like we try to fix the same issue. I tested my solution and it works fine (requiring a lot less code changes)...