fix(pickers): always redraw when screen is resized (#2140)

Due to regression from switching 
to lua autocmd api pickers
 were resized only once.
This commit is contained in:
Aki
2022-08-24 12:34:15 +05:30
committed by GitHub
parent 28dc08f614
commit 3e944f02ff

View File

@@ -531,7 +531,6 @@ function Picker:find()
buffer = prompt_bufnr, buffer = prompt_bufnr,
group = "PickerInsert", group = "PickerInsert",
nested = true, nested = true,
once = true,
callback = function() callback = function()
require("telescope.pickers").on_resize_window(prompt_bufnr) require("telescope.pickers").on_resize_window(prompt_bufnr)
end, end,