quickfix for not properly closing unlisted buffers, should be revised again

This commit is contained in:
Galen Rowell 2021-08-20 15:44:31 +10:00 committed by siduck76
parent fd5d50f194
commit dbf0b56059
1 changed files with 1 additions and 0 deletions

View File

@ -82,6 +82,7 @@ M.close_buffer = function(bufexpr, force)
local buf = vim.fn.bufnr()
if vim.fn.buflisted(buf) == 0 then -- exit if buffer number is invalid
vim.cmd "close"
return
end