Fix 'help-quick-toggle'
* lisp/help.el (help-quick-sections): Fix "kill-region" command. Add a doc string. (Bug#69345)
This commit is contained in:
parent
afe49c7e2a
commit
01ebc95114
1 changed files with 10 additions and 2 deletions
12
lisp/help.el
12
lisp/help.el
|
@ -151,7 +151,7 @@ buffer.")
|
||||||
("Mark & Kill"
|
("Mark & Kill"
|
||||||
(set-mark-command . "mark")
|
(set-mark-command . "mark")
|
||||||
(kill-line . "kill line")
|
(kill-line . "kill line")
|
||||||
(kill-ring-save . "kill region")
|
(kill-region . "kill region")
|
||||||
(yank . "yank")
|
(yank . "yank")
|
||||||
(exchange-point-and-mark . "swap"))
|
(exchange-point-and-mark . "swap"))
|
||||||
("Projects"
|
("Projects"
|
||||||
|
@ -165,7 +165,15 @@ buffer.")
|
||||||
(isearch-forward . "search")
|
(isearch-forward . "search")
|
||||||
(isearch-backward . "reverse search")
|
(isearch-backward . "reverse search")
|
||||||
(query-replace . "search & replace")
|
(query-replace . "search & replace")
|
||||||
(fill-paragraph . "reformat"))))
|
(fill-paragraph . "reformat")))
|
||||||
|
"Data structure for `help-quick'.
|
||||||
|
Value should be a list of elements, each element should of the form
|
||||||
|
|
||||||
|
(GROUP-NAME (COMMAND . DESCRIPTION) (COMMAND . DESCRIPTION)...)
|
||||||
|
|
||||||
|
where GROUP-NAME is the name of the group of the commands,
|
||||||
|
COMMAND is the symbol of a command and DESCRIPTION is its short
|
||||||
|
description, 10 to 15 char5acters at most.")
|
||||||
|
|
||||||
(declare-function prop-match-value "text-property-search" (match))
|
(declare-function prop-match-value "text-property-search" (match))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue