mirror of
https://github.com/folke/snacks.nvim
synced 2025-08-04 02:38:46 +00:00
fix(picker.qf): better quickfix item list. Fixes #562
This commit is contained in:
parent
d7f727f673
commit
cb845408db
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ local function setqflist(items, opts)
|
|||
col = item.pos and item.pos[2] or 1,
|
||||
end_lnum = item.end_pos and item.end_pos[1] or nil,
|
||||
end_col = item.end_pos and item.end_pos[2] or nil,
|
||||
text = item.text,
|
||||
text = item.line or item.comment or item.label or item.name or item.detail or item.text,
|
||||
pattern = item.search,
|
||||
valid = true,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue