Variable: org-table-tab-jumps-over-hlines
org-table-tab-jumps-over-hlines is a customizable variable defined in
org-table.el.gz.
Value
t
Documentation
Non-nil means tab in the last column of a table with jump over a hline.
If a horizontal separator line is following the current line,
org-table-next-field can either create a new row before that line, or jump
over the line. When this option is nil, a new line will be created before
this line.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defcustom org-table-tab-jumps-over-hlines t
"Non-nil means tab in the last column of a table with jump over a hline.
If a horizontal separator line is following the current line,
`org-table-next-field' can either create a new row before that line, or jump
over the line. When this option is nil, a new line will be created before
this line."
:group 'org-table-editing
:type 'boolean)