Variable: which-key-inhibit-display-hook

which-key-inhibit-display-hook is a customizable variable defined in which-key.el.gz.

Value

(which-key-evil-this-operator-p)

Documentation

Hook run before display of which-key popup.

Each function in the hook is run before displaying the which-key popup. If any function returns a non-nil value, the popup will not display.

This variable was added, or its default value changed, in which-key version 1.0.

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defcustom which-key-inhibit-display-hook nil
  "Hook run before display of which-key popup.
Each function in the hook is run before displaying the which-key
popup.  If any function returns a non-nil value, the popup will
not display."
  :group 'which-key
  :type 'hook
  :package-version '(which-key . "1.0") :version "30.1")