folke / trouble.nvim

🚦 A pretty diagnostics, references, telescope results, quickfix and location list to help you solve all the trouble your code is causing.
Apache License 2.0
5.24k stars 178 forks source link

bug: Error when displaying results when the Trouble window is closed #318

Closed MariaSolOs closed 1 year ago

MariaSolOs commented 1 year ago

Did you check docs and existing issues?

Neovim version (nvim -v)

v0.10.0-dev-735+g8fe9f41f7

Operating system/version

Mac Ventura 13.4.1

Describe the bug

I use todo-comments.nvim and TodoTrouble to display them with Trouble. In VERY large repos (like this one) with lots of TODOs, results take a while to popup in Trouble. When I first tried it I waited a bit and then closed Trouble, but then the following error popped up:

image

It seems this is because the view is still trying to render the results after I closed it.

Steps To Reproduce

  1. Clone TypeScript.
  2. Install todo-comments and Trouble.
  3. Run TodoTrouble.
  4. Wait for a few seconds and close Trouble before the results are listed.
  5. Seconds later, the error should appear.

Expected Behavior

For there to be no error.

Repro

-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
  vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  "folke/tokyonight.nvim",
  "folke/trouble.nvim",
  -- add any other plugins here
  "folke/todo-comments.nvim"
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

vim.cmd.colorscheme("tokyonight")
-- add anything else here