chore(build): auto-generate docs

This commit is contained in:
folke 2025-02-13 11:04:03 +00:00 committed by github-actions[bot]
parent 369732e65e
commit 304a60f263

View file

@ -29,6 +29,7 @@ Toggle keymaps integrated with which-key icons / colors
---@class snacks.toggle.Config
---@field icon? string|{ enabled: string, disabled: string }
---@field color? string|{ enabled: string, disabled: string }
---@field wk_desc? string|{ enabled: string, disabled: string }
---@field map? fun(mode: string|string[], lhs: string, rhs: string|fun(), opts?: vim.keymap.set.Opts)
---@field which_key? boolean
---@field notify? boolean
@ -46,6 +47,10 @@ Toggle keymaps integrated with which-key icons / colors
enabled = "green",
disabled = "yellow",
},
wk_desc = {
enabled = "Disable ",
disabled = "Enable ",
},
}
```