Variable: which-key-ellipsis
which-key-ellipsis is a customizable variable defined in
which-key.el.gz.
Value
".."
Documentation
Ellipsis to use when truncating.
Default is "…", unless which-key-dont-use-unicode is non nil,
in which case the default is "..". This can also be the empty
string to truncate without using any ellipsis.
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-ellipsis
(if which-key-dont-use-unicode ".." "…")
"Ellipsis to use when truncating.
Default is \"…\", unless `which-key-dont-use-unicode' is non nil,
in which case the default is \"..\". This can also be the empty
string to truncate without using any ellipsis."
:type 'string
:set-after '(which-key-dont-use-unicode)
:package-version '(which-key . "1.0") :version "30.1")