Function: which-key-remove-default-unicode-chars
which-key-remove-default-unicode-chars is a byte-compiled function
defined in which-key.el.gz.
Signature
(which-key-remove-default-unicode-chars)
Documentation
Remove default unicode chars from settings.
Use of which-key-dont-use-unicode is preferred to this
function, but it's included here in case someone cannot set that
variable early enough in their configuration, if they are using a
starter kit for example.
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defun which-key-remove-default-unicode-chars ()
"Remove default unicode chars from settings.
Use of `which-key-dont-use-unicode' is preferred to this
function, but it's included here in case someone cannot set that
variable early enough in their configuration, if they are using a
starter kit for example."
(when (string-equal which-key-separator " → ")
(setq which-key-separator " : ")))