mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-06 02:30:33 -08:00
2.5 KiB
2.5 KiB
: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
TODOFor things that need to be done, just not today.HACKFor tidbits that are unconventional and not intended uses of the constituent parts, and may break in a future update.FIXMEFor problems that will become bigger problems later if not fixed ASAP.REVIEWfor things that were done hastily and/or hasn't been thoroughly tested. it may not even be necessary!NOTEFor especially important gotchas with a given implementation, directed at another user other than the author.DEPRECATEDFor things that just gotta go and will soon be gone.BUGFor a known bug that needs a workaroundXXXFor 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!