Version 1.7 of package Delight has just been released in GNU ELPA. You can now find it in M-x list-packages RET.
Delight describes itself as: ===================================== A dimmer switch for your lighter text ===================================== More at https://elpa.gnu.org/packages/delight.html ## Summary: Enables you to customise the mode names displayed in the mode line. For major modes, the buffer-local `mode-name' variable is modified. For minor modes, the associated value in `minor-mode-alist' is set. Example usage: ;; Delighting a single mode at a time: (require 'delight) (delight 'abbrev-mode " Abv" "abbrev") (delight 'rainbow-mode) ;; Delighting multiple modes together: (require 'delight) (delight '((abbrev-mode " Abv" "abbrev") (smart-tab-mode " \\t" "smart-tab") (eldoc-mode nil "eldoc") (rainbow-mode) (overwrite-mode " Ov" t) (emacs-lisp-mode "Elisp" :major))) The first argument is the mode symbol. The second argument is the replacement name to use in the mode line (or nil to hide it). ## Recent NEWS: [Not provided 🙁]
