@@ -24,6 +24,7 @@ local ViewConfig = require("lazy.view.config")
24
24
--- @field win_opts LazyWinOpts
25
25
--- @field backdrop_buf number
26
26
--- @field backdrop_win number
27
+ --- @field id number
27
28
--- @overload fun ( opts ?: LazyFloatOptions ): LazyFloat
28
29
local M = {}
29
30
@@ -33,6 +34,12 @@ setmetatable(M, {
33
34
end ,
34
35
})
35
36
37
+ local _id = 0
38
+ local function next_id ()
39
+ _id = _id + 1
40
+ return _id
41
+ end
42
+
36
43
--- @param opts ? LazyFloatOptions
37
44
function M .new (opts )
38
45
local self = setmetatable ({}, { __index = M })
42
49
--- @param opts ? LazyFloatOptions
43
50
function M :init (opts )
44
51
require (" lazy.view.colors" ).setup ()
52
+ self .id = next_id ()
45
53
self .opts = vim .tbl_deep_extend (" force" , {
46
54
size = Config .options .ui .size ,
47
55
style = " minimal" ,
@@ -65,8 +73,13 @@ function M:init(opts)
65
73
title_pos = self .opts .title and self .opts .title_pos or nil ,
66
74
}
67
75
self :mount ()
68
- self :on_key (ViewConfig .keys .close , self .close )
69
- self :on ({ " WinLeave" , " BufDelete" , " BufHidden" }, self .close , { once = false })
76
+ self :on (" VimEnter" , function ()
77
+ vim .schedule (function ()
78
+ if not self :win_valid () then
79
+ self :close ()
80
+ end
81
+ end )
82
+ end , { buffer = false })
70
83
return self
71
84
end
72
85
@@ -138,7 +151,13 @@ function M:mount()
138
151
139
152
self :layout ()
140
153
self .win = vim .api .nvim_open_win (self .buf , true , self .win_opts )
154
+ self :on (" WinClosed" , function ()
155
+ self :close ()
156
+ self :augroup (true )
157
+ end , { win = true })
141
158
self :focus ()
159
+ self :on_key (ViewConfig .keys .close , self .close )
160
+ self :on ({ " BufDelete" , " BufHidden" }, self .close )
142
161
143
162
if vim .bo [self .buf ].buftype == " " then
144
163
vim .bo [self .buf ].buftype = " nofile"
@@ -185,27 +204,38 @@ function M:mount()
185
204
})
186
205
end
187
206
207
+ --- @param clear ? boolean
208
+ function M :augroup (clear )
209
+ return vim .api .nvim_create_augroup (" trouble.window." .. self .id , { clear = clear == true })
210
+ end
211
+
188
212
--- @param events string | string[]
189
- --- @param fn fun ( self ? ):boolean ?
190
- --- @param opts ? table
213
+ --- @param fn fun ( self : LazyFloat , event :{ buf : number } ):boolean ?
214
+ --- @param opts ? vim.api.keyset.create_autocmd | { buffer : false , win ?: boolean }
191
215
function M :on (events , fn , opts )
192
- if type (events ) == " string" then
193
- events = { events }
216
+ opts = opts or {}
217
+ if opts .win then
218
+ opts .pattern = self .win .. " "
219
+ opts .win = nil
220
+ elseif opts .buffer == nil then
221
+ opts .buffer = self .buf
222
+ elseif opts .buffer == false then
223
+ opts .buffer = nil
194
224
end
195
- for _ , e in ipairs (events ) do
196
- local event , pattern = e :match (" (%w+) (%w+)" )
197
- event = event or e
198
- vim .api .nvim_create_autocmd (
199
- event ,
200
- vim .tbl_extend (" force" , {
201
- pattern = pattern ,
202
- buffer = (not pattern ) and self .buf or nil ,
203
- callback = function ()
204
- return fn (self )
205
- end ,
206
- }, opts or {})
207
- )
225
+ if opts .pattern then
226
+ opts .buffer = nil
227
+ end
228
+ local _self = Util .weak (self )
229
+ opts .callback = function (e )
230
+ local this = _self ()
231
+ if not this then
232
+ -- delete the autocmd
233
+ return true
234
+ end
235
+ return fn (this , e )
208
236
end
237
+ opts .group = self :augroup ()
238
+ vim .api .nvim_create_autocmd (events , opts )
209
239
end
210
240
211
241
--- @param key string
223
253
224
254
--- @param opts ? { wipe : boolean }
225
255
function M :close (opts )
256
+ self :augroup (true )
226
257
local buf = self .buf
227
258
local win = self .win
228
259
local wipe = opts and opts .wipe
0 commit comments