Remove TODO colorizing in bin/doom help
It's unused and excessive. KISS!
This commit is contained in:
parent
282e0d6653
commit
f71d4634e8
1 changed files with 12 additions and 14 deletions
|
@ -22,8 +22,6 @@ commands like `doom//packages-install', `doom//packages-update' and
|
||||||
(defconst doom--dispatch-alias-alist ())
|
(defconst doom--dispatch-alias-alist ())
|
||||||
|
|
||||||
(defun doom--dispatch-format (desc &optional short)
|
(defun doom--dispatch-format (desc &optional short)
|
||||||
(if (equal desc "TODO")
|
|
||||||
(format! (yellow "TODO"))
|
|
||||||
(with-temp-buffer
|
(with-temp-buffer
|
||||||
(let ((fill-column 72))
|
(let ((fill-column 72))
|
||||||
(insert desc)
|
(insert desc)
|
||||||
|
@ -35,7 +33,7 @@ commands like `doom//packages-install', `doom//packages-update' and
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
(buffer-substring-no-properties
|
(buffer-substring-no-properties
|
||||||
(line-beginning-position)
|
(line-beginning-position)
|
||||||
(line-end-position))))))
|
(line-end-position)))))
|
||||||
|
|
||||||
(defun doom--dispatch-help (&optional command desc &rest args)
|
(defun doom--dispatch-help (&optional command desc &rest args)
|
||||||
"Display help documentation for a dispatcher command. If COMMAND and DESC are
|
"Display help documentation for a dispatcher command. If COMMAND and DESC are
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue