3 files changed,
19 insertions(+),
13 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed by:
GitHub
noreply@github.com
Committed at:
2025-03-02 17:19:00 +0200
Parent:
c2f64db
M
doc/gopher.nvim.txt
@@ -55,6 +55,10 @@ -- log level, you might consider using DEBUG or TRACE for debugging the plugin
---@type number log_level = vim.log.levels.INFO, + -- timeout for running commands + ---@type number + timeout = 2000, + -- user specified paths to binaries ---@class gopher.ConfigCommand commands = {@@ -80,6 +84,9 @@ ---@class gopher.ConfigGoTag
gotag = { ---@type gopher.ConfigGoTagTransform transform = "snakecase", + + -- default tags to add to struct fields + default_tag = "json", }, } <
M
lua/gopher/config.lua
@@ -62,6 +62,9 @@ ---@class gopher.ConfigGoTag
gotag = { ---@type gopher.ConfigGoTagTransform transform = "snakecase", + + -- default tags to add to struct fields + default_tag = "json", }, } --minidoc_afterlines_end