Alexander-Miller/treemacs@559fa09 -> Alexander-Miller/treemacs@332d4e0 ema2159/centaur-tabs@23eda0a -> ema2159/centaur-tabs@50fd573 hlissner/emacs-doom-themes@5adcc29 -> hlissner/emacs-doom-themes@73837f5 jabranham/mixed-pitch@beb22e8 -> jabranham/mixed-pitch@d5f64b9 seagle0128/doom-modeline@4956606 -> seagle0128/doom-modeline@116c733 tarsius/hl-todo@9661a46 -> tarsius/hl-todo@4d18ccd |
||
---|---|---|
.. | ||
config.el | ||
packages.el | ||
README.org |
:ui hl-todo
Description
This module adds syntax highlighting for TODO/FIXME/NOTE tags in programming major-modes.
Module Flags
This module provides no flags
Plugins
Prerequisites
This module has no prerequisites
Features
Making Items
You can make a TODO item by simply writing
TODO
For things that need to be done, just not today.HACK
For tidbits that are unconventional and not intended uses of the constituent parts, and may break in a future update.FIXME
For problems that will become bigger problems later if not fixed ASAP.REVIEW
for things that were done hastily and/or hasn't been thoroughly tested. it may not even be necessary!NOTE
For especially important gotchas with a given implementation, directed at another user other than the author.DEPRECATED
For things that just gotta go and will soon be gone.BUG
For a known bug that needs a workaroundXXX
For warning about a problematic or misguiding code
Keybindings
keybind | description |
---|---|
]t |
go to next TODO item |
[t |
go to previous TODO item |
SPC p t |
show all TODO items in a project |
SPC s p |
search project for a string |
SPC s b |
search buffer for string |
TODO Adding items.
The way you would add a TODO item is to use a snippet but these have not been
made. you can make them yourself by adding the snippet to
$DOOMDIR/snippets/MAJOR-MODE/name-of-snippet
. you will find more info on how
to make them here
Configuration
To add your own ITEMS you would need to configure them using
hl-todo-keyword-faces
;; the default
(after! hl-todo
(setq hl-todo-keyword-faces
`(
("FOO" . ,(face-foreground "MY COLOUR HEX CODE"))
("BAR" . ,(face-foreground 'my-colour-var)))))
TODO Troubleshooting
If you have any problems with this module do get in touch!