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

View File

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