Variable: flymake-margin-indicator-position

flymake-margin-indicator-position is a customizable variable defined in flymake.el.gz.

Value

left-margin

Documentation

The position to put Flymake margin indicator.

The value can be nil (do not use indicators), left-margin or right-margin. See flymake-margin-indicators-string.

This variable was added, or its default value changed, in Emacs 30.1.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
(defcustom flymake-margin-indicator-position 'left-margin
  "The position to put Flymake margin indicator.
The value can be nil (do not use indicators), `left-margin' or `right-margin'.
See `flymake-margin-indicators-string'."
  :version "30.1"
  :type '(choice (const left-margin)
                 (const right-margin)
                 (const :tag "No margin indicators" nil)))