Variable: cider-cheatsheet-default-action-function

cider-cheatsheet-default-action-function is a customizable variable defined in cider-cheatsheet.el.

Value

cider-doc-lookup

Documentation

Function to use on a var when it is selected.

By default, documentation for a var is displayed using `cider-doc-lookup`, but it can also be set to `cider-clojuredocs-lookup` to show documentation from ClojureDocs or any other function accepting a var as an argument.

This variable was added, or its default value changed, in cider version 1.15.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-cheatsheet.el
(defcustom cider-cheatsheet-default-action-function #'cider-doc-lookup
  "Function to use on a var when it is selected.

By default, documentation for a var is displayed using `cider-doc-lookup`,
but it can also be set to `cider-clojuredocs-lookup` to show documentation
from ClojureDocs or any other function accepting a var as an argument."
  :type '(choice (const cider-doc-lookup)
                 (const cider-clojuredocs-lookup)
                 function)
  :package-version '(cider . "1.15.0"))