Variable: help-quick-sections

help-quick-sections is a variable defined in help.el.gz.

Value

(("File" (save-buffers-kill-terminal . "exit") (find-file . "find")
  (write-file . "write") (save-buffer . "save")
  (save-some-buffers . "all"))
 ("Buffer" (kill-buffer . "kill") (list-buffers . "list")
  (switch-to-buffer . "switch") (goto-line . "goto line")
  (read-only-mode . "read only"))
 ("Window" (delete-window . "only other")
  (delete-other-windows . "only this")
  (split-window-below . "split vert.")
  (split-window-right . "split horiz.")
  (other-window . "other window"))
 ("Mark & Kill" (set-mark-command . "mark") (kill-line . "kill line")
  (kill-region . "kill region") (yank . "yank")
  (exchange-point-and-mark . "swap"))
 ("Projects" (project-switch-project . "switch")
  (project-find-file . "find file") (project-find-regexp . "search")
  (project-query-replace-regexp . "search & replace")
  (project-compile . "compile"))
 ("Misc." (undo . "undo") (isearch-forward . "search")
  (isearch-backward . "reverse search")
  (query-replace . "search & replace") (fill-paragraph . "reformat")))

Documentation

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 characters at most. The bindings for COMMAND are looked up from the
keymap specified in help-quick-use-map.

Source Code

;; Defined in /usr/src/emacs/lisp/help.el.gz
(defvar help-quick-sections
  '(("File"
     (save-buffers-kill-terminal . "exit")
     (find-file . "find")
     (write-file . "write")
     (save-buffer . "save")
     (save-some-buffers . "all"))
    ("Buffer"
     (kill-buffer . "kill")
     (list-buffers . "list")
     (switch-to-buffer . "switch")
     (goto-line . "goto line")
     (read-only-mode . "read only"))
    ("Window"
     (delete-window . "only other")
     (delete-other-windows . "only this")
     (split-window-below . "split vert.")
     (split-window-right . "split horiz.")
     (other-window . "other window"))
    ("Mark & Kill"
     (set-mark-command . "mark")
     (kill-line . "kill line")
     (kill-region . "kill region")
     (yank . "yank")
     (exchange-point-and-mark . "swap"))
    ("Projects"
     (project-switch-project . "switch")
     (project-find-file . "find file")
     (project-find-regexp . "search")
     (project-query-replace-regexp . "search & replace")
     (project-compile . "compile"))
    ("Misc."
     (undo . "undo")
     (isearch-forward . "search")
     (isearch-backward . "reverse search")
     (query-replace . "search & replace")
     (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 characters at most.  The bindings for COMMAND are looked up from the
keymap specified in `help-quick-use-map'.")