fix(picker.buffers): add buf number to text

This commit is contained in:
Folke Lemaitre 2025-01-19 22:34:55 +01:00
parent be1e5072c1
commit 70106a7930
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -34,7 +34,7 @@ function M.buffers(opts, filter)
table.insert(items, {
flags = table.concat(flags),
buf = buf,
text = name,
text = buf .. " " .. name,
file = name,
info = info,
pos = { info.lnum, 0 },