emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Smarter M-x that filters on major-mode


From: Lars Ingebrigtsen
Subject: Re: Smarter M-x that filters on major-mode
Date: Fri, 12 Feb 2021 12:19:46 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Robert Pluim <rpluim@gmail.com> writes:

> 'minor-mode-list'?

Oh, I thought that was an XEmacs compat thing, since it's added by this
function:

---
(defun add-minor-mode (toggle name &optional keymap after toggle-fun)
  "Register a new minor mode.

This is an XEmacs-compatibility function.  Use `define-minor-mode' instead.
---

Does this doc string mean that one shouldn't use `add-minor-mode'
directly, but only through `define-minor-mode'?  But that everything
that `add-minor-mode' does isn't XEmacs compat stuff?

>     Lars> Which could also conceivably be useful in other situations.
>
> If you make changes here, could you arrange for some (buffer-local?)
> symbol somewhere to be updated when a minor mode is activated?
> Figuring out which minor modes are in effect is currently non-trivial.

That does sound like a useful thing...  Since the major mode is
determined by the `major-mode' variable, what about a new
permanently-local variable `minor-modes'?  `define-minor-mode' would be
responsible for adding/removing itself to the variable.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no



reply via email to

[Prev in Thread] Current Thread [Next in Thread]