You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Known issue**: if you have multiple LSP that provide hover and go-to-definition support, there can be races(example typescript and cssmodules-language-server work simultaneously). As a workaround you can disable **definition** in favor of **implementation** to avoid conflicting with typescript's go-to-definition.
41
+
42
+
```lua
43
+
require'lspconfig'.cssmodules_ls.setup {
44
+
on_attach=function (client)
45
+
-- avoid accepting `go-to-definition` responses from this LSP
0 commit comments