Variable: orgtbl-optimized

orgtbl-optimized is a customizable variable defined in org-table.el.gz.

Value

t

Documentation

Non-nil means use the optimized table editor version for orgtbl-mode(var)/orgtbl-mode(fun).

In the optimized version, the table editor takes over all simple keys that normally just insert a character. In tables, the characters are inserted in a way to minimize disturbing the table structure (i.e. in overwrite mode for empty fields). Outside tables, the correct binding of the keys is restored.

Changing this variable requires a restart of Emacs to become effective.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defcustom orgtbl-optimized t
  "Non-nil means use the optimized table editor version for `orgtbl-mode'.

In the optimized version, the table editor takes over all simple keys that
normally just insert a character.  In tables, the characters are inserted
in a way to minimize disturbing the table structure (i.e. in overwrite mode
for empty fields).  Outside tables, the correct binding of the keys is
restored.

Changing this variable requires a restart of Emacs to become
effective."
  :group 'org-table
  :type 'boolean)