feat(fzf-lua): added support for todo-comments

This commit is contained in:
Folke Lemaitre 2024-06-10 18:10:13 +02:00
parent c155b2e965
commit b74db85447
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -135,6 +135,16 @@ return {
},
},
{
"folke/todo-comments.nvim",
optional = true,
-- stylua: ignore
keys = {
{ "<leader>st", function() require("todo-comments.fzf").todo() end, desc = "Todo" },
{ "<leader>sT", function () require("todo-comments.fzf").todo({ keywords = { "TODO", "FIX", "FIXME" } }) end, desc = "Todo/Fix/Fixme" },
},
},
-- remove when https://github.com/ibhagwan/fzf-lua/pull/1244 gets merged
{
"ibhagwan/fzf-lua",