module: remove :tools rgb
This module has been deprecated for some time; it's too niche, too trivial, and is mostly centered around a single hydra (official support for which I'll be phasing out of Doom).
This commit is contained in:
parent
d75f9be0d4
commit
4d2eeab7f0
5 changed files with 0 additions and 82 deletions
1
.github/CODEOWNERS
vendored
1
.github/CODEOWNERS
vendored
|
@ -131,7 +131,6 @@ modules/tools/make/ @doomemacs/tools-make
|
|||
modules/tools/pass/ @doomemacs/tools-pass
|
||||
modules/tools/pdf/ @doomemacs/tools-pdf
|
||||
modules/tools/prodigy/ @doomemacs/tools-prodigy
|
||||
modules/tools/rgb/ @doomemacs/tools-rgb
|
||||
modules/tools/taskrunner/ @doomemacs/tools-taskrunner
|
||||
modules/tools/terraform/ @doomemacs/tools-terraform
|
||||
modules/tools/tmux/ @doomemacs/tools-tmux
|
||||
|
|
|
@ -1,61 +0,0 @@
|
|||
#+title: :tools rgb
|
||||
#+subtitle: Creating color strings
|
||||
#+created: May 06, 2020
|
||||
#+since: 21.12.0
|
||||
|
||||
#+begin_quote
|
||||
*This module is deprecated.* The module is too trivial to warrant a module.
|
||||
#+end_quote
|
||||
|
||||
* Description :unfold:
|
||||
Highlights color hex values and names with the color itself, and provides tools
|
||||
to easily modify color values or formats.
|
||||
|
||||
** Maintainers
|
||||
/This module has no dedicated maintainers./ [[doom-contrib-maintainer:][Become a maintainer?]]
|
||||
|
||||
** Module flags
|
||||
/This module has no flags./
|
||||
|
||||
** Packages
|
||||
- [[doom-package:kurecolor]]
|
||||
- [[doom-package:rainbow-mode]]
|
||||
|
||||
** Hacks
|
||||
/No hacks documented for this module./
|
||||
|
||||
* Installation
|
||||
[[id:01cffea4-3329-45e2-a892-95a384ab2338][Enable this module in your ~doom!~ block.]]
|
||||
|
||||
/This module has no external requirements./
|
||||
|
||||
* Usage
|
||||
=rainbow-mode= provides automatic highlighting to hex color codes, and in
|
||||
relevant modes, color names (e.g. html color names in =css-mode= or LaTeX color
|
||||
names in =latex-mode=)
|
||||
|
||||
=kurecolor= provides commands to easily change the brightness, saturation, and
|
||||
hue of hex colors (and a useful hydra for this, if =:ui hydra= is enabled), as
|
||||
well as conversion between hex and css colors
|
||||
|
||||
* Configuration
|
||||
=hl-line-mode= overrides the color highlighting of =rainbow-mode=, limiting the
|
||||
use of that plugin and on-site color changes using =kurecolor=. To automatically
|
||||
disable it only when =rainbow-mode= is active, you can add the following hook:
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
;; in $DOOMDIR/config.el
|
||||
(add-hook! 'rainbow-mode-hook
|
||||
(hl-line-mode (if rainbow-mode -1 +1)))
|
||||
#+end_src
|
||||
|
||||
* Troubleshooting
|
||||
/There are no known problems with this module./ [[doom-report:][Report one?]]
|
||||
|
||||
* Frequently asked questions
|
||||
/This module has no FAQs yet./ [[doom-suggest-faq:][Ask one?]]
|
||||
|
||||
* TODO Appendix
|
||||
#+begin_quote
|
||||
This module has no appendix yet. [[doom-contrib-module:][Write one?]]
|
||||
#+end_quote
|
|
@ -1,14 +0,0 @@
|
|||
;;; tools/rgb/autoload.el -*- lexical-binding: t; -*-
|
||||
;;;###if (modulep! :ui hydra)
|
||||
|
||||
;;;###autoload (autoload '+rgb/kurecolor-hydra/body "tools/rgb/autoload" nil t)
|
||||
(defhydra +rgb/kurecolor-hydra (:color pink :hint nil)
|
||||
"
|
||||
Inc/Dec _w_/_W_ brightness _d_/_D_ saturation _e_/_E_ hue "
|
||||
("w" kurecolor-decrease-brightness-by-step)
|
||||
("W" kurecolor-increase-brightness-by-step)
|
||||
("d" kurecolor-decrease-saturation-by-step)
|
||||
("D" kurecolor-increase-saturation-by-step)
|
||||
("e" kurecolor-decrease-hue-by-step)
|
||||
("E" kurecolor-increase-hue-by-step)
|
||||
("q" nil "cancel" :color blue))
|
|
@ -1,5 +0,0 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; tools/rgb/packages.el
|
||||
|
||||
(package! rainbow-mode :pin "0740f31f300982534183a2f60b1918de418a6f2c")
|
||||
(package! kurecolor :pin "fbf98e1e384dd11bbb5764ae54b36353f0691d1e")
|
|
@ -102,7 +102,6 @@
|
|||
;;pass ; password manager for nerds
|
||||
;;pdf ; pdf enhancements
|
||||
;;prodigy ; FIXME managing external services & code builders
|
||||
;;rgb ; creating color strings
|
||||
;;taskrunner ; taskrunner for all your projects
|
||||
;;terraform ; infrastructure as code
|
||||
;;tmux ; an API for interacting with tmux
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue