Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lua/scnvim/postwin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ end
function M.close()
if M.is_open() then
save_last_size()
api.nvim_win_close(M.win, false)
-- This call can fail if its the last window
pcall(api.nvim_win_close, M.win, true)
M.win = nil
end
end
Expand Down