Variable: org-table-exit-follow-field-mode-when-leaving-table

org-table-exit-follow-field-mode-when-leaving-table is a customizable variable defined in org-table.el.gz.

Value

t

Documentation

Non-nil means automatically exit the follow mode.

When nil, the follow mode will stay on and be active in any table the cursor enters. Since the table follow filed mode messes with the window configuration, it is not recommended to set this variable to nil, except maybe locally in a special file that has mostly tables with long fields.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defcustom org-table-exit-follow-field-mode-when-leaving-table t
  "Non-nil means automatically exit the follow mode.
When nil, the follow mode will stay on and be active in any table
the cursor enters.  Since the table follow filed mode messes with the
window configuration, it is not recommended to set this variable to nil,
except maybe locally in a special file that has mostly tables with long
fields."
  :group 'org-table
  :version "24.1"
  :type 'boolean)