Function: org-speed-command-help

org-speed-command-help is an interactive and byte-compiled function defined in org-keys.el.gz.

Signature

(org-speed-command-help)

Documentation

Show the available speed commands.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-keys.el.gz
(defun org-speed-command-help ()
  "Show the available speed commands."
  (interactive)
  (unless org-use-speed-commands
    (user-error "Speed commands are not activated, customize `org-use-speed-commands'"))
  (with-output-to-temp-buffer "*Help*"
    (princ "Speed commands\n==============\n")
    (mapc #'org--print-speed-command org-speed-commands))
  (with-current-buffer "*Help*"
    (setq truncate-lines t)))