mirror of
https://github.com/folke/snacks.nvim
synced 2025-08-05 03:08:13 +00:00
fix(picker.buffers): add buf number to text
This commit is contained in:
parent
be1e5072c1
commit
70106a7930
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ function M.buffers(opts, filter)
|
||||||
table.insert(items, {
|
table.insert(items, {
|
||||||
flags = table.concat(flags),
|
flags = table.concat(flags),
|
||||||
buf = buf,
|
buf = buf,
|
||||||
text = name,
|
text = buf .. " " .. name,
|
||||||
file = name,
|
file = name,
|
||||||
info = info,
|
info = info,
|
||||||
pos = { info.lnum, 0 },
|
pos = { info.lnum, 0 },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue