mirror of
https://github.com/zoriya/telescope.nvim.git
synced 2025-12-06 06:46:10 +00:00
fix: string display for builtin.pickers (#1194)
This commit is contained in:
@@ -900,7 +900,14 @@ previewers.pickers = defaulter(function(_)
|
||||
for index = 1, math.min(preview_height, picker.manager:num_results()) do
|
||||
local row = get_row(picker, preview_height, index)
|
||||
local e = picker.manager:get_entry(index)
|
||||
local display, display_highlight = e:display()
|
||||
|
||||
local display, display_highlight
|
||||
-- if-clause as otherwise function return values improperly unpacked
|
||||
if type(e.display) == "function" then
|
||||
display, display_highlight = e:display()
|
||||
else
|
||||
display = e.display
|
||||
end
|
||||
|
||||
vim.api.nvim_buf_set_lines(self.state.bufnr, row, row + 1, false, { display })
|
||||
|
||||
|
||||
Reference in New Issue
Block a user