Variable: eglot-code-action-indicator
eglot-code-action-indicator is a customizable variable defined in
eglot.el.gz.
Value
"?"
Documentation
Indicator string for code action suggestions.
This variable was added, or its default value changed, in Eglot version 1.19.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defcustom eglot-code-action-indicator
(cl-loop for c in '(?💡 ?⚡?✓ ?α ??)
when (char-displayable-p c)
return (make-string 1 c))
"Indicator string for code action suggestions."
:type (let ((basic-choices
(cl-loop for c in '(?💡 ?⚡?✓ ?α ??)
when (char-displayable-p c)
collect `(const :tag ,(format "Use `%c'" c)
,(make-string 1 c)))))
`(choice ,@basic-choices
(string :tag "Specify your own")))
:package-version '(Eglot . "1.19"))