chore(build): auto-generate docs

This commit is contained in:
folke 2025-02-07 20:52:55 +00:00 committed by github-actions[bot]
parent a6beb0f280
commit 1e2d8d57f1
2 changed files with 32 additions and 0 deletions

View file

@ -1952,6 +1952,37 @@ Not meant to be used directly.
}
```
### `treesitter`
```vim
:lua Snacks.picker.treesitter(opts?)
```
```lua
---@class snacks.picker.treesitter.Config: snacks.picker.Config
---@field filter table<string, string[]|boolean>? symbol kind filter
{
finder = "treesitter_symbols",
format = "lsp_symbol",
filter = {
default = {
"Class",
"Enum",
"Field",
"Function",
"Method",
"Module",
"Namespace",
"Struct",
"Trait",
},
-- set to `true` to include all symbols
markdown = true,
help = true,
},
}
```
### `undo`
```vim