Expand docstring of which-key-mode
* lisp/which-key.el (which-key-mode): Expand docstring.
This commit is contained in:
parent
df0eb5be1e
commit
7372b2eb30
2 changed files with 14 additions and 3 deletions
7
etc/NEWS
7
etc/NEWS
|
@ -2112,8 +2112,11 @@ in all buffers.
|
|||
+++
|
||||
** New package Which-Key
|
||||
The 'which-key' package from GNU ELPA is now included in Emacs. It
|
||||
implements the 'which-key-mode' that displays a table of key bindings
|
||||
upon entering a partial key chord and waiting for a moment.
|
||||
implements the global minor mode 'which-key-mode' that displays a table
|
||||
of key bindings upon entering a partial key chord and waiting for a
|
||||
moment. For example, after enabling the minor mode, if you enter 'C-x'
|
||||
and wait for one second, the minibuffer will expand with all available
|
||||
key bindings that follow 'C-x' (or as many as space allows).
|
||||
|
||||
|
||||
* Incompatible Lisp Changes in Emacs 30.1
|
||||
|
|
|
@ -900,7 +900,15 @@ disable support."
|
|||
|
||||
;;;###autoload
|
||||
(define-minor-mode which-key-mode
|
||||
"Toggle `which-key-mode'."
|
||||
"Toggle `which-key-mode'.
|
||||
|
||||
`which-key' is a minor mode that displays the key bindings following
|
||||
your currently entered incomplete command (a prefix) in a popup.
|
||||
|
||||
For example, after enabling the minor mode, if you enter \\`C-x' and
|
||||
wait for one second (by default), the minibuffer will expand with all
|
||||
available key bindings that follow \\`C-x' (or as many as space allows
|
||||
given your settings)."
|
||||
:global t
|
||||
:group 'which-key
|
||||
:lighter which-key-lighter
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue