@@ -112,18 +112,27 @@ Flatten comes with the following defaults:
112
112
--
113
113
{
114
114
callbacks = {
115
+ --- Called to determine if a nested session should wait for the host to close the file.
115
116
--- @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.
120
125
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
123
132
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 ,
127
136
},
128
137
-- <String, Bool> dictionary of filetypes that should be blocking
129
138
block_for = {
0 commit comments