Variable: org-table-separator-space

org-table-separator-space is a variable defined in org-table.el.gz.

Value

#(" " 0 1
  (display
   (space :relative-width 1)))

Documentation

Space used around fields when aligning the table.

This space serves as a segment separator for the purposes of the bidirectional reordering.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defconst org-table-separator-space
  (propertize " " 'display '(space :relative-width 1))
  "Space used around fields when aligning the table.
This space serves as a segment separator for the purposes of the
bidirectional reordering.")