Variable: eglot-mode-line-action-suggestion

eglot-mode-line-action-suggestion is a variable defined in eglot.el.gz.

Value

(:eval
 (when
     (and (memq 'mode-line eglot-code-action-indications)
	  (overlay-buffer eglot--suggestion-overlay))
   (eglot--mode-line-props eglot-code-action-indicator
			   'eglot-code-action-indicator-face
			   `
			   ((mouse-1 eglot-code-actions-at-mouse
				     "execute code actions at point")))))

Documentation

Eglot mode line construct for at-point code actions.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defconst eglot-mode-line-action-suggestion
  '(:eval
    (when (and (memq 'mode-line eglot-code-action-indications)
               (overlay-buffer eglot--suggestion-overlay))
      (eglot--mode-line-props
       eglot-code-action-indicator 'eglot-code-action-indicator-face
       `((mouse-1
          eglot-code-actions-at-mouse
          "execute code actions at point")))))
  "Eglot mode line construct for at-point code actions.")