From 0ccf97c6e14149cdf1f03ca0186b39101174d166 Mon Sep 17 00:00:00 2001 From: folke <292349+folke@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:09:08 +0000 Subject: [PATCH] chore(build): auto-generate docs --- docs/notifier.md | 1 + docs/picker.md | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/docs/notifier.md b/docs/notifier.md index 745ace10..278b646e 100644 --- a/docs/notifier.md +++ b/docs/notifier.md @@ -120,6 +120,7 @@ vim.api.nvim_create_autocmd("LspProgress", { ---@class snacks.notifier.Config ---@field enabled? boolean ---@field keep? fun(notif: snacks.notifier.Notif): boolean # global keep function +---@field filter? fun(notif: snacks.notifier.Notif): boolean # filter our unwanted notifications (return false to hide) { timeout = 3000, -- default timeout in ms width = { min = 40, max = 0.4 }, diff --git a/docs/picker.md b/docs/picker.md index 01c5026c..95dd8b99 100644 --- a/docs/picker.md +++ b/docs/picker.md @@ -441,19 +441,6 @@ Snacks.picker.pick({source = "files", ...}) ---@field cmd? string ``` -```lua ----@alias snacks.Picker.ref (fun():snacks.Picker?)|{value?: snacks.Picker} -``` - -```lua ----@class snacks.picker.Last ----@field cursor number ----@field topline number ----@field opts snacks.picker.Config ----@field selected snacks.picker.Item[] ----@field filter snacks.picker.Filter -``` - ```lua ---@alias snacks.picker.Extmark vim.api.keyset.set_extmark|{col:number, row?:number, field?:string} ---@alias snacks.picker.Text {[1]:string, [2]:string?, virtual?:boolean, field?:string} @@ -526,6 +513,19 @@ It's a previewer that shows a preview based on the item data. ---@field preview? snacks.win.Config|{} preview window config ``` +```lua +---@alias snacks.Picker.ref (fun():snacks.Picker?)|{value?: snacks.Picker} +``` + +```lua +---@class snacks.picker.Last +---@field cursor number +---@field topline number +---@field opts snacks.picker.Config +---@field selected snacks.picker.Item[] +---@field filter snacks.picker.Filter +``` + ## 📦 Module ```lua @@ -1825,6 +1825,8 @@ Snacks.picker.actions.toggle_maximize(picker) Snacks.picker.actions.toggle_preview(picker) ``` + + ## 📦 `snacks.picker.core.picker` ```lua @@ -2017,5 +2019,3 @@ Get the word under the cursor or the current visual selection ```lua picker:word() ``` - -