Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/fzf-lua/previewer/builtin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ function Previewer.base:copy_extmarks()
on_win = function(_, win, buf, topline, botline)
if win ~= self.win.preview_winid then return end
local src_buf = self.loaded_entry and self.loaded_entry.bufnr
if not src_buf then return end
if not src_buf or not api.nvim_buf_is_valid(src_buf) then return end
copy_extmarks(src_buf, buf, win, topline, botline, self.ns_extmarks)
return false
end,
Expand Down