fix: Don't write to invalid buffers
This commit is contained in:
@@ -324,6 +324,10 @@ function Picker:find()
|
|||||||
self.manager = pickers.entry_manager(
|
self.manager = pickers.entry_manager(
|
||||||
self.max_results,
|
self.max_results,
|
||||||
vim.schedule_wrap(function(index, entry)
|
vim.schedule_wrap(function(index, entry)
|
||||||
|
if not vim.api.nvim_buf_is_valid(results_bufnr) then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
local row = self:get_row(index)
|
local row = self:get_row(index)
|
||||||
|
|
||||||
-- If it's less than 0, then we don't need to show it at all.
|
-- If it's less than 0, then we don't need to show it at all.
|
||||||
@@ -585,6 +589,10 @@ function Picker:set_selection(row)
|
|||||||
local status = state.get_status(self.prompt_bufnr)
|
local status = state.get_status(self.prompt_bufnr)
|
||||||
local results_bufnr = status.results_bufnr
|
local results_bufnr = status.results_bufnr
|
||||||
|
|
||||||
|
if not vim.api.nvim_buf_is_valid(results_bufnr) then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
-- Handle adding '> ' to beginning of selections
|
-- Handle adding '> ' to beginning of selections
|
||||||
if self._selection_row then
|
if self._selection_row then
|
||||||
local old_selection = a.nvim_buf_get_lines(results_bufnr, self._selection_row, self._selection_row + 1, false)[1]
|
local old_selection = a.nvim_buf_get_lines(results_bufnr, self._selection_row, self._selection_row + 1, false)[1]
|
||||||
|
|||||||
Reference in New Issue
Block a user