@@ -11,6 +11,9 @@ local ViewConfig = require("lazy.view.config")
11
11
--- @field border ? " none" | " single" | " double" | " rounded" | " solid" | " shadow"
12
12
--- @field title ? string
13
13
--- @field title_pos ? " center" | " left" | " right"
14
+ --- @field persistent ? boolean
15
+ --- @field ft ? string
16
+ --- @field noautocmd ? boolean
14
17
15
18
--- @class LazyFloat
16
19
--- @field buf number
@@ -51,7 +54,7 @@ function M:init(opts)
51
54
style = self .opts .style ~= " " and self .opts .style or nil ,
52
55
border = self .opts .border ,
53
56
zindex = self .opts .zindex ,
54
- noautocmd = true ,
57
+ noautocmd = self . opts . noautocmd ,
55
58
title = self .opts .title ,
56
59
title_pos = self .opts .title and self .opts .title_pos or nil ,
57
60
}
@@ -94,27 +97,32 @@ function M:layout()
94
97
end
95
98
96
99
function M :mount ()
97
- if self .opts .file then
100
+ if self :buf_valid () then
101
+ -- keep existing buffer
102
+ self .buf = self .buf
103
+ elseif self .opts .file then
98
104
self .buf = vim .fn .bufadd (self .opts .file )
99
105
vim .fn .bufload (self .buf )
100
106
vim .bo [self .buf ].modifiable = false
101
107
elseif self .opts .buf then
102
108
self .buf = self .opts .buf
103
109
else
104
- self .buf = vim .api .nvim_create_buf (false , false )
110
+ self .buf = vim .api .nvim_create_buf (false , true )
105
111
end
106
112
107
113
self :layout ()
108
114
self .win = vim .api .nvim_open_win (self .buf , true , self .win_opts )
109
115
self :focus ()
110
116
111
- vim .bo [self .buf ].buftype = " nofile"
117
+ if vim .bo [self .buf ].buftype == " " then
118
+ vim .bo [self .buf ].buftype = " nofile"
119
+ end
112
120
if vim .bo [self .buf ].filetype == " " then
113
- vim .bo [self .buf ].filetype = " lazy"
121
+ vim .bo [self .buf ].filetype = self . opts . ft or " lazy"
114
122
end
115
123
116
124
local function opts ()
117
- vim .bo [self .buf ].bufhidden = " wipe"
125
+ vim .bo [self .buf ].bufhidden = self . opts . persistent and " hide " or " wipe"
118
126
vim .wo [self .win ].conceallevel = 3
119
127
vim .wo [self .win ].foldenable = false
120
128
vim .wo [self .win ].spell = false
@@ -179,22 +187,64 @@ function M:on_key(key, fn, desc)
179
187
})
180
188
end
181
189
182
- function M :close ()
190
+ --- @param opts ? { wipe : boolean }
191
+ function M :close (opts )
183
192
local buf = self .buf
184
193
local win = self .win
194
+ local wipe = opts and opts .wipe
195
+ if wipe == nil then
196
+ wipe = not self .opts .persistent
197
+ end
198
+
185
199
self .win = nil
186
- self .buf = nil
200
+ if wipe then
201
+ self .buf = nil
202
+ end
187
203
vim .schedule (function ()
188
204
if win and vim .api .nvim_win_is_valid (win ) then
189
205
vim .api .nvim_win_close (win , true )
190
206
end
191
- if buf and vim .api .nvim_buf_is_valid (buf ) then
207
+ if wipe and buf and vim .api .nvim_buf_is_valid (buf ) then
192
208
vim .diagnostic .reset (Config .ns , buf )
193
209
vim .api .nvim_buf_delete (buf , { force = true })
194
210
end
195
211
end )
196
212
end
197
213
214
+ function M :win_valid ()
215
+ return self .win and vim .api .nvim_win_is_valid (self .win )
216
+ end
217
+
218
+ function M :buf_valid ()
219
+ return self .buf and vim .api .nvim_buf_is_valid (self .buf )
220
+ end
221
+
222
+ function M :hide ()
223
+ if self :win_valid () then
224
+ self :close ({ wipe = false })
225
+ end
226
+ end
227
+
228
+ function M :toggle ()
229
+ if self :win_valid () then
230
+ self :hide ()
231
+ return false
232
+ else
233
+ self :show ()
234
+ return true
235
+ end
236
+ end
237
+
238
+ function M :show ()
239
+ if self :win_valid () then
240
+ self :focus ()
241
+ elseif self :buf_valid () then
242
+ self :mount ()
243
+ else
244
+ error (" LazyFloat: buffer closed" )
245
+ end
246
+ end
247
+
198
248
function M :focus ()
199
249
vim .api .nvim_set_current_win (self .win )
200
250
0 commit comments