TODOs now show even if inside hidden/symlinked files

This commit is contained in:
2025-05-01 12:33:16 +03:00
parent c9977ec0de
commit cbc300023c

View File

@@ -23,6 +23,8 @@ return {
function()
Snacks.picker.todo_comments({
layout = 'telescope',
follow = true,
hidden = true,
keywords = { 'TODO', 'FIX', 'FIXME', 'BUG', 'ISSUE', 'OPTIMIZE' },
})
end,
@@ -31,7 +33,11 @@ return {
{
'<leader>sn',
function()
Snacks.picker.todo_comments({ layout = 'telescope' })
Snacks.picker.todo_comments({
layout = 'telescope',
follow = true,
hidden = true,
})
end,
desc = '[S]earch [N]otes',
},