Results 347 comments of rayx

Thanks for the PR Could you check the action errors `lua/go/tags.lua:114: attempt to index local 'opts' (a nil value)` ?

Sorry for the late reply. To run tests locally, you can use makefile: https://github.com/ray-x/go.nvim/blob/5308b3eb07640d5aff28461048179552b7b7d015/Makefile#L11C1-L12C102 In your case, the go_tags_spec failed you can update the Makefile and adding ```makefile localtesttags: localtestsetup...

You can re-write the function and pass the result to gopls config ``` lsp_cfg = {settings={gopls={['local'] = 'your_local_module_path', gofumpt = true }}} ``` But what does your preferred method look...

Hi, thanks for the suggestions, I recently updated the code to include this feature. It is disabled by default ATM as I am still tweaking it. If you have a...

There is a gap between nvim and gopls setup. `Edit` means `update_in_insert=true` `Save` does not mean `LeaveInsert`/`update_in_insert=false`, it should map to `BufWritePost` So If you want to update the diagnostic...

I am not aware of trouble changes, try the main version and it looks like this: diagnostic mode: ![image](https://github.com/user-attachments/assets/2372fe96-823e-4344-9487-18e318703ff7) qlist: ![image](https://github.com/user-attachments/assets/99f9a8ae-e712-4780-b280-e43684574fcd) It looks correct to me.

navigator will help set up gopls diagnostics. It does not affect `GoTest` results output. Golangci lint diagnostic of go.nvim is pump through null-ls/none-ls, gopls diagnostic is using standard neovim lsp....