Remove a use of a PUA Unicode character (bug#77328)
* lisp/progmodes/eglot.el (eglot-code-action-indicator): Use U+1F4A1 ELECTRIC LIGHT BULB instead of a PUA character.
This commit is contained in:
parent
da9a3f558d
commit
638ec3cd66
1 changed files with 2 additions and 2 deletions
|
@ -612,12 +612,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)))))
|
||||
|
|
Loading…
Add table
Reference in a new issue