Variable: org-table--separator-space-pre
org-table--separator-space-pre is a variable defined in
org-table.el.gz.
Value
#(" " 0 1 (display (space :relative-width 1)))
Documentation
Space used in front of fields when aligning the table.
This space serves as a segment separator for the purposes of the
bidirectional reordering.
Note that org-table--separator-space-pre is not eq to
org-table--separator-space-post. This is done to prevent Emacs from
visually merging spaces in an empty table cell. See bug#45915.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defconst org-table--separator-space-pre
(propertize " " 'display '(space :relative-width 1))
"Space used in front of fields when aligning the table.
This space serves as a segment separator for the purposes of the
bidirectional reordering.
Note that `org-table--separator-space-pre' is not `eq' to
`org-table--separator-space-post'. This is done to prevent Emacs from
visually merging spaces in an empty table cell. See bug#45915.")