diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 13d578d550a..b41fd3d2212 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -625,12 +625,12 @@ Note additionally: :package-version '(Eglot . "1.19")) (defcustom eglot-code-action-indicator - (cl-loop for c in '(?💡 ?⚡?✓ ?α ??) + (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 '(?💡 ?⚡?✓ ?α ??) + (cl-loop for c in '(?↯ ?⭍ ?✓ ?α ??) when (char-displayable-p c) collect `(const :tag ,(format "Use `%c'" c) ,(make-string 1 c)))))