* mode-line major and minor mode help text and bindings
@ 2006-04-29 18:14 Drew Adams
2006-04-29 18:18 ` Drew Adams
2006-04-30 3:04 ` Richard Stallman
0 siblings, 2 replies; 11+ messages in thread
From: Drew Adams @ 2006-04-29 18:14 UTC (permalink / raw)
emacs -Q
C-x d <some directory>
M-x outline-minor-mode ; or any other minor mode
Help echo (tool tip) in mode line, with pointer over lighter "Outl":
"mouse-2: help for minor modes, mouse-3: minor mode menu". However, with
pointer over a major mode name, such as "Dired by name", is this: "mouse-1:
major-mode-menu, mouse-2: help for current major mode".
There is a lack of symmetry here, and a few sources of confusion.
1. "major-mode-menu": This should be "major-mode menu" (or "major mode
menu", depending on the hyphenation convention used by Emacs).
2. "minor mode menu": This looks just like the major-mode case, but in this
case it is not a menu for the indicated minor mode but a menu to turn on/off
*any* minor modes. This should be called something like "menu to change
minor modes" or "menu of minor modes".
3. Why is the menu for the major mode on mouse-1 and the menu for the minor
modes on mouse-3? Why not put them both on mouse-3 (but see #6, below, for a
better suggestion).
4. "help for minor modes" (with an `s') is apparently not correct. The
mouse-3 minor-modes menu shows that these minor modes are all turned on:
font lock, line number, and outline. However, mouse-2 over the minor-mode
lighter gives only the help for outline-minor-mode (perhaps since that is
the only lighter?); it does not give "help for [all] minor modes". If only
one mode is described then this should be called "help for this minor mode".
5. Enhancement suggestion: Have mouse-1 toggle the minor mode (of that
lighter). This is a shortcut for using the minor-modes menu and choosing the
corresponding menu item.
6. Enhancement suggestion: It seems a bit silly to have the same menu be on
each of the minor-mode lighters - a waste of the mouse-3 binding.
Suggestion: Instead, add this minor-modes menu to the major-mode menu as a
submenu, "Choose Minor Modes". Bonus: if the minor mode (for that lighter)
has, itself, a menu, that could be on mouse-3.
7. Unrelated question: Why do we call the mode-line name of the mode a
"lighter" (and use the keyword ":lighter" for `define-minor-mode')? Where
does this term come from - is it perhaps a translation? Why don't we call it
the "mode-line name" of the mode (and use keyword :mode-line-name)? Who will
understand "lighter" for this without an explanation? Who will look for that
term in the Emacs Lisp-manual index? (BTW - Foldoc has no definition for
"lighter", so I suspect it is not a previously used computing term:
http://foldoc.org/foldoc.cgi?query=lighter&action=Search.)
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: mode-line major and minor mode help text and bindings
2006-04-29 18:14 mode-line major and minor mode help text and bindings Drew Adams
@ 2006-04-29 18:18 ` Drew Adams
2006-04-30 3:04 ` Richard Stallman
1 sibling, 0 replies; 11+ messages in thread
From: Drew Adams @ 2006-04-29 18:18 UTC (permalink / raw)
Another item:
8. Some minor modes, even with a lighter and even if they can be toggled, do
not appear in the menu of minor modes. Why? What are the criteria that
determine this? For example, View (minor) mode in a *Help* buffer - it is
not in the menu, but you can toggle it via `M-x view-mode'.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: mode-line major and minor mode help text and bindings
2006-04-29 18:14 mode-line major and minor mode help text and bindings Drew Adams
2006-04-29 18:18 ` Drew Adams
@ 2006-04-30 3:04 ` Richard Stallman
2006-11-04 18:41 ` mouse-1 on minor-mode lighter in mode line could bring up the minor mode's menu Drew Adams
1 sibling, 1 reply; 11+ messages in thread
From: Richard Stallman @ 2006-04-30 3:04 UTC (permalink / raw)
Cc: emacs-devel
1. "major-mode-menu": This should be "major-mode menu" (or "major mode
menu", depending on the hyphenation convention used by Emacs).
2. "minor mode menu": This looks just like the major-mode case, but in this
case it is not a menu for the indicated minor mode but a menu to turn on/off
*any* minor modes. This should be called something like "menu to change
minor modes" or "menu of minor modes".
3. Why is the menu for the major mode on mouse-1 and the menu for the minor
modes on mouse-3? Why not put them both on mouse-3 (but see #6, below, for a
better suggestion).
Mouse-3 does minor modes in both places. This is necessary so that
there is a way to turn on minor modes even when none are on.
4. "help for minor modes" (with an `s') is apparently not correct. The
mouse-3 minor-modes menu shows that these minor modes are all turned on:
font lock, line number, and outline. However, mouse-2 over the minor-mode
lighter gives only the help for outline-minor-mode (perhaps since that is
the only lighter?); it does not give "help for [all] minor modes". If only
one mode is described then this should be called "help for this minor mode".
I took action on these four. Thanks.
5. Enhancement suggestion: Have mouse-1 toggle the minor mode (of that
lighter). This is a shortcut for using the minor-modes menu and choosing the
corresponding menu item.
That would only give you a way to turn minor modes off.
I don't think it is a good idea.
6. Enhancement suggestion: It seems a bit silly to have the same menu be on
each of the minor-mode lighters - a waste of the mouse-3 binding.
Suggestion: Instead, add this minor-modes menu to the major-mode menu as a
submenu, "Choose Minor Modes". Bonus: if the minor mode (for that lighter)
has, itself, a menu, that could be on mouse-3.
That would be less convenient, and there is nothing else natural
for mouse-3 to do here.
^ permalink raw reply [flat|nested] 11+ messages in thread
* mouse-1 on minor-mode lighter in mode line could bring up the minor mode's menu
2006-04-30 3:04 ` Richard Stallman
@ 2006-11-04 18:41 ` Drew Adams
2006-11-05 19:23 ` Richard Stallman
0 siblings, 1 reply; 11+ messages in thread
From: Drew Adams @ 2006-11-04 18:41 UTC (permalink / raw)
For consideration after the release:
Mouse-1 on a minor-mode lighter in the mode line does nothing special - it
just runs `mouse-drag-mode-line'. When a minor mode has its own menu, why
not display that for mouse-1, just as we do for major modes?
---
[Note: This is a different suggestion from what was discussed in thread
"mode-line major and minor mode help text and bindings" of 2006-04-29. The
part of that discussion that concerned minor-mode menus was about mouse-3:
> From: Richard Stallman
> Sent: Saturday, April 29, 2006 8:04 PM
>
> 6. Enhancement suggestion: It seems a bit silly to have the
> same menu be on each of the minor-mode lighters - a waste
> of the mouse-3 binding. Suggestion: Instead, add this
> minor-modes menu to the major-mode menu as a submenu,
> "Choose Minor Modes". Bonus: if the minor mode (for
> that lighter) has, itself, a menu, that could be on mouse-3.
>
> That would be less convenient, and there is nothing else natural
> for mouse-3 to do here.
]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2006-11-08 16:58 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-29 18:14 mode-line major and minor mode help text and bindings Drew Adams
2006-04-29 18:18 ` Drew Adams
2006-04-30 3:04 ` Richard Stallman
2006-11-04 18:41 ` mouse-1 on minor-mode lighter in mode line could bring up the minor mode's menu Drew Adams
2006-11-05 19:23 ` Richard Stallman
2006-11-05 19:37 ` mouse-1 on minor-mode lighter in mode line could bring up the minormode's menu Drew Adams
2006-11-06 16:07 ` Richard Stallman
2006-11-06 16:27 ` mouse-1 on minor-mode lighter in mode line could bring up theminormode's menu Drew Adams
2006-11-07 16:47 ` Richard Stallman
2006-11-07 17:17 ` mouse-1 on minor-mode lighter in mode line could bring uptheminormode's menu Drew Adams
2006-11-08 16:58 ` Richard Stallman
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.