Skip to content

Commit 86deabc

Browse files
committed
docs: update readme
1 parent 667989a commit 86deabc

File tree

2 files changed

+30
-9
lines changed

2 files changed

+30
-9
lines changed

README.md

+18-9
Original file line numberDiff line numberDiff line change
@@ -112,18 +112,27 @@ Flatten comes with the following defaults:
112112
--
113113
{
114114
callbacks = {
115+
---Called to determine if a nested session should wait for the host to close the file.
115116
---@param argv table a list of all the arguments in the nested session
116-
should_block = function(argv)
117-
return false
118-
end,
119-
-- Called when a request to edit file(s) is received
117+
---@return boolean
118+
should_block = require("flatten").default_should_block,
119+
---If this returns true, the nested session will be opened.
120+
---If false, default behavior is used, and
121+
---config.nest_if_no_args is respected.
122+
---@type fun(host: channel):boolean
123+
should_nest = require("flatten").default_should_nest,
124+
---Called before a nested session is opened.
120125
pre_open = function() end,
121-
-- Called after a file is opened
122-
-- Passed the buf id, win id, and filetype of the new window
126+
---Called after a nested session is opened.
127+
---@param bufnr buffer
128+
---@param winnr window
129+
---@param filetype string
130+
---@param is_blocking boolean
131+
---@param is_diff boolean
123132
post_open = function(bufnr, winnr, filetype, is_blocking, is_diff) end,
124-
-- Called when a file is open in blocking mode, after it's done blocking
125-
-- (after bufdelete, bufunload, or quitpre for the blocking buffer)
126-
block_end = function() end,
133+
---Called when a nested session is done waiting for the host.
134+
---@param filetype string
135+
block_end = function(filetype) end,
127136
},
128137
-- <String, Bool> dictionary of filetypes that should be blocking
129138
block_for = {

lua/flatten/init.lua

+12
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,18 @@ function M.is_guest()
8181
return is_guest
8282
end
8383

84+
-- Types:
85+
--
86+
-- Passed to callbacks that handle opening files
8487
---@alias Flatten.BufInfo { fname: string, bufnr: buffer }
88+
--
89+
-- The first argument is a list of BufInfo tables representing the newly opened files.
90+
-- The third argument is a single BufInfo table, only provided when a buffer is created from stdin.
91+
--
92+
-- IMPORTANT: For `block_for` to work, you need to return a buffer number OR a buffer number and a window number.
93+
-- The `winnr` return value is not required, `vim.fn.bufwinid(bufnr)` is used if it is not provided.
94+
-- The `filetype` of this buffer will determine whether block should happen or not.
95+
--
8596
---@alias Flatten.OpenHandler fun(files: Flatten.BufInfo[], argv: string[], stdin_buf: Flatten.BufInfo, guest_cwd: string):window, buffer
8697

8798
-- selene: allow(unused_variable)
@@ -109,6 +120,7 @@ M.config = {
109120
---@param filetype string
110121
block_end = function(filetype) end,
111122
},
123+
---Specify blocking by filetype
112124
---@type table<string, boolean>
113125
block_for = {
114126
gitcommit = true,

0 commit comments

Comments
 (0)