mirror of https://github.com/folke/lazy.nvim.git
fix(ui): possible error during initial install
This commit is contained in:
parent
41c7a6a6c0
commit
a64623899d
5
TODO.md
5
TODO.md
|
@ -1,5 +1,10 @@
|
||||||
# ✅ TODO
|
# ✅ TODO
|
||||||
|
|
||||||
|
- [x] progress bar?
|
||||||
|
- [x] options when opening file
|
||||||
|
- [x] lazy notify? not ideal when installing missing stuff
|
||||||
|
- [x] topmods?
|
||||||
|
|
||||||
- [ ] better merging options?
|
- [ ] better merging options?
|
||||||
- [ ] especially what to do with merging of handlers?
|
- [ ] especially what to do with merging of handlers?
|
||||||
- [ ] overwriting keymaps probably doesn't work
|
- [ ] overwriting keymaps probably doesn't work
|
||||||
|
|
|
@ -115,7 +115,7 @@ function M:mount()
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("VimResized", {
|
vim.api.nvim_create_autocmd("VimResized", {
|
||||||
callback = function()
|
callback = function()
|
||||||
if not self.win then
|
if not (self.win and vim.api.nvim_win_is_valid(self.win)) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
self:layout()
|
self:layout()
|
||||||
|
|
Loading…
Reference in New Issue