tangled
alpha
login
or
join now
robinwobin.dev
/
artio.nvim
3
fork
atom
minimal extui fuzzy finder for neovim
3
fork
atom
overview
issues
pulls
pipelines
fix(view): set `View.closed` in schedule fn
robinwobin.dev
3 months ago
4ce3bdd9
65026a91
+1
-1
1 changed file
expand all
collapse all
unified
split
lua
artio
view.lua
+1
-1
lua/artio/view.lua
···
247
247
if self.closed then
248
248
return
249
249
end
250
250
-
self.closed = true
251
250
cmdline.cmdline_show = self.prev_show
252
251
self:closepreview()
253
252
vim.schedule(function()
···
261
260
vim.cmd.redraw()
262
261
cmdline.cmdline_block_hide()
263
262
pcall(vim.api.nvim_del_augroup_by_id, self.augroup)
263
263
+
self.closed = true
264
264
end)
265
265
end
266
266