Skip to content

Commit b3b9770

Browse files
rcarrigaRónán Carrigan
authored andcommitted
fix: set buffers to unlisted
1 parent b254cfe commit b3b9770

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lua/dapui/util.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ function M.create_buffer(name, options)
3030
local buf = async.api.nvim_create_buf(true, true)
3131
options = vim.tbl_extend("keep", options or {}, {
3232
modifiable = false,
33+
buflisted = false,
3334
})
3435
async.api.nvim_buf_set_name(buf, name)
3536
for opt, value in pairs(options) do

0 commit comments

Comments
 (0)