olexsmir/gopher.nvim

Corner case for GoAddTags

Opened this issue · 0 comments

GoAddTags does not work for structs, like this one:
function code
var apiSettings struct {
Secret string
dbConn string
}
some code

And for anonymous structs it does not work as well
settings := struct {
API string
Key string
}