Function: transient-toggle-common

transient-toggle-common is an interactive and byte-compiled function defined in transient.el.gz.

Signature

(transient-toggle-common)

Documentation

Toggle whether common commands are permanently shown.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/transient.el.gz
;;;;; Auxiliary

(transient-define-suffix transient-toggle-common ()
  "Toggle whether common commands are permanently shown."
  :transient t
  :description (lambda ()
                 (if transient-show-common-commands
                     "Hide common commands"
                   "Show common permanently"))
  (interactive)
  (setq transient-show-common-commands (not transient-show-common-commands)))