Variable: magit-refs-focus-column-width

magit-refs-focus-column-width is a customizable variable defined in magit-refs.el.

Value

5

Documentation

Width of the focus column in magit-refs-mode buffers.

The focus column is the first column, which marks one branch (usually the current branch) as the focused branch using
"*" or "@". For each other reference, this column optionally
shows how many commits it is ahead of the focused branch and "<", or if it isn't ahead then the commits it is behind and ">", or if it isn't behind either, then a "=".

This column may also display only "*" or "@" for the focused branch, in which case this option is ignored. Use "L v" to change the verbosity of this column.

This variable was added, or its default value changed, in magit version 2.12.0.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-refs.el
(defcustom magit-refs-focus-column-width 5
  "Width of the focus column in `magit-refs-mode' buffers.

The focus column is the first column, which marks one
branch (usually the current branch) as the focused branch using
\"*\" or \"@\".  For each other reference, this column optionally
shows how many commits it is ahead of the focused branch and \"<\", or
if it isn't ahead then the commits it is behind and \">\", or if it
isn't behind either, then a \"=\".

This column may also display only \"*\" or \"@\" for the focused
branch, in which case this option is ignored.  Use \"L v\" to
change the verbosity of this column."
  :package-version '(magit . "2.12.0")
  :group 'magit-refs
  :type 'integer)