Removed bug from error highlights

This commit is contained in:
2025-08-06 00:05:56 +03:00
parent 0a69e91fdb
commit 3452feadb2
2 changed files with 3 additions and 3 deletions

View File

@@ -191,7 +191,7 @@ local groups = {
hl = '@comment.warning.comment',
},
error = {
keywords = { 'FIX', 'FIXME', 'BUG', 'ERROR', 'UNSAFE', 'SAFETY' },
keywords = { 'FIX', 'FIXME', 'ERROR', 'UNSAFE', 'SAFETY' },
hl = '@comment.error.comment',
},
perf = {

View File

@@ -27,7 +27,7 @@ return {
layout = 'telescope',
follow = true,
hidden = true,
keywords = { 'TODO', 'WIP', 'FIX', 'FIXME', 'BUG', 'OPTIMIZE', 'SECURE' },
keywords = { 'TODO', 'WIP', 'FIX', 'FIXME', 'OPTIMIZE', 'SECURE' },
})
end,
desc = '[S]earch [T]odos',
@@ -63,7 +63,7 @@ return {
keywords = {
-- These are "todos"
TODO = { icon = '', color = 'todo', alt = { 'WIP' } },
FIX = { icon = '', color = 'error', alt = { 'FIXME', 'BUG', 'ERROR' } },
FIX = { icon = '', color = 'error', alt = { 'FIXME', 'ERROR' } },
OPTMZE = { icon = '', color = 'perf', alt = { 'OPTIMIZE' } },
SECURE = { icon = '󰣮 ', color = 'warning' },
-- These are "notes"