rayx
rayx
Thanks for submitting the issue. It seems to be caused by the calculation of the floating windows. Could you provide more info reguarding the LSP you using and the function...
The default config in go.nvim (master) gopls.lua ```lua semanticTokens = _GO_NVIM_CFG.lsp_semantic_highlights or false, -- default to false as treesitter is better -- semanticTokenTypes = { keyword = true }, --...
You can add `go.lua` in `lua/snippets` of your config directory and refer to `go.nvim` with `require` some example: https://github.com/ray-x/nvim/tree/master/lua/snippets
With latest lazy.nvim You should be able to use ```lua { 'ray-x/lsp_signature.nvim', event = { 'InsertEnter' }, opts = { ... } } ```
The error you saw was fixed. Also, use the attach method making sure the setup is after lsp_config.