Variable: which-key-separator

which-key-separator is a customizable variable defined in which-key.el.gz.

Value

" : "

Documentation

Separator to use between key and description.

Default is " → ", unless which-key-dont-use-unicode is non nil, in which case the default is " : ".

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-separator
  (if which-key-dont-use-unicode " : " " → ")
  "Separator to use between key and description.
Default is \" → \", unless `which-key-dont-use-unicode' is non
nil, in which case the default is \" : \"."
  :type 'string
  :set-after '(which-key-dont-use-unicode)
  :package-version '(which-key . "1.0") :version "30.1")