mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-04-27 07:10:57 -07:00
Color let-functions no longer take format string arguments. e.g.
(format! (red "Hello %s" "world"))
Becomes
(format! (red "Hello %s") "world")
The same goes for print!. Also, doom-ansi-apply now takes two arguments
instead of three.
Also merges doom-message-{fg,bg,fx} into doom-ansi-alist, and reduces
backtrace noise when errors originate from inside these macros.
|
||
|---|---|---|
| .. | ||
| buffers.el | ||
| cache.el | ||
| debug.el | ||
| editor.el | ||
| files.el | ||
| help.el | ||
| hydras.el | ||
| line-numbers.el | ||
| message.el | ||
| packages.el | ||
| projects.el | ||
| scratch.el | ||
| ui.el | ||