Skip to content

Commit

Permalink
fix: remove FIX from alts for FIX
Browse files Browse the repository at this point in the history
* Update config.lua

"FIX" listed as an alternative to itself

* Update README.md
  • Loading branch information
mcauley-penney authored Jun 14, 2021
1 parent 8560546 commit e3b96b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Todo comes with the following defaults:
FIX = {
icon = "", -- icon used for the sign, and in search results
color = "error", -- can be a hex color, or a named color (see below)
alt = { "FIXME", "BUG", "FIXIT", "FIX", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords
alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords
-- signs = false, -- configure signs for some keywords individually
},
TODO = { icon = "", color = "info" },
Expand Down
2 changes: 1 addition & 1 deletion lua/todo-comments/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ local defaults = {
FIX = {
icon = "", -- icon used for the sign, and in search results
color = "error", -- can be a hex color, or a named color (see below)
alt = { "FIXME", "BUG", "FIXIT", "FIX", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords
alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords
-- signs = false, -- configure signs for some keywords individually
},
TODO = { icon = "", color = "info" },
Expand Down

0 comments on commit e3b96b2

Please sign in to comment.