Variable: org-startup-shrink-all-tables
org-startup-shrink-all-tables is a customizable variable defined in
org.el.gz.
Value
nil
Documentation
Non-nil means shrink all table columns with a width cookie.
This can also be configured on a per-file basis by adding one of
the following lines anywhere in the buffer:
#+STARTUP: shrink
This variable was added, or its default value changed, in Org version
9.2.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-startup-shrink-all-tables nil
"Non-nil means shrink all table columns with a width cookie.
This can also be configured on a per-file basis by adding one of
the following lines anywhere in the buffer:
#+STARTUP: shrink"
:group 'org-startup
:type 'boolean
:version "27.1"
:package-version '(Org . "9.2")
:safe #'booleanp)