Invalid in command-line window
When entering command-line window with q: get error:

Me too, is your neovim version 0.7?
Me too, is your neovim version 0.7?
Yeap, I am using nightly. But I suppose behavior of command-line history window is pretty much the same as on stable release.
Before the pr is merged, you can use this temporary workaround
-- HACK: #104 Invalid in command-line window
local hl = require("todo-comments.highlight")
local highlight_win = hl.highlight_win
hl.highlight_win = function(win, force)
pcall(highlight_win, win, force)
end
require("todo-comments").setup()
It is not a big deal for me. I open command-line windows only by mistake :D
can also use this fork - https://github.com/vinnyA3/todo-comments.nvim - until https://github.com/folke/todo-comments.nvim/pull/104 gets merged
Same error here. I went into this when I type : and then Ctrl-F to access the ex command history.
Should be fixed in #111