fix(builtin.buffers): missing return in attach_mappings (#3172)

This commit is contained in:
James Trew 2024-06-15 14:40:26 -04:00 committed by GitHub
parent 979bfa2c44
commit c392f1b78e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -974,6 +974,7 @@ internal.buffers = function(opts)
default_selection_index = default_selection_idx,
attach_mappings = function(_, map)
map({ "i", "n" }, "<M-d>", actions.delete_buffer)
return true
end,
})
:find()