We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c7a6a commit a646238Copy full SHA for a646238
TODO.md
@@ -1,5 +1,10 @@
1
# ✅ TODO
2
3
+- [x] progress bar?
4
+- [x] options when opening file
5
+- [x] lazy notify? not ideal when installing missing stuff
6
+- [x] topmods?
7
+
8
- [ ] better merging options?
9
- [ ] especially what to do with merging of handlers?
10
- [ ] overwriting keymaps probably doesn't work
lua/lazy/view/float.lua
@@ -115,7 +115,7 @@ function M:mount()
115
116
vim.api.nvim_create_autocmd("VimResized", {
117
callback = function()
118
- if not self.win then
+ if not (self.win and vim.api.nvim_win_is_valid(self.win)) then
119
return true
120
end
121
self:layout()
0 commit comments