You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C-h or F1 mean “help” in various other contexts as well. For instance, you can type them after a prefix key to view a list of the keys that can follow the prefix key. (You can also use ? in this context. A few prefix keys don’t support C-h or ? in this way, because they define other meanings for those inputs, but they all support F1.)
However, typing , c , h doesn't work, and instead the message is displayed Devil: C-c C-h is undefined.
None of these work:
, c , h
, c C-h
, c <f1>
, x , h (so probably any prefix launched with Devil)
The text was updated successfully, but these errors were encountered:
fbrosda
added a commit
to fbrosda/devil
that referenced
this issue
Nov 24, 2024
This adds some special cases to `devil--find-command` based on the last
completely translated key press. If it is
1. C-g, then run `keyboard-quit` instead of doing any further lookups
2. C-h, then run `devil-describe-prefix-bindings`, which first translates the
key sequence and then calls `describe-bindings` with it.
`devil-describe-prefix-bindings` might also be assigned to
`prefix-help-command`.
In both cases the last key can either be entered via devil (e.g. ', h') or
directly (e.g. 'C-h).
Fixessusam#12Fixessusam#26
From the Emacs manual:
However, typing
, c , h
doesn't work, and instead the message is displayedDevil: C-c C-h is undefined
.None of these work:
, c , h
, c C-h
, c <f1>
, x , h
(so probably any prefix launched with Devil)The text was updated successfully, but these errors were encountered: