Function: orgtbl-tab

orgtbl-tab is an interactive and byte-compiled function defined in kotl-orgtbl.el.

Signature

(orgtbl-tab ARG)

Documentation

Justification and field motion for orgtbl-mode(var)/orgtbl-mode(fun) with Koutline support.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-orgtbl.el
;;; ************************************************************************
;;; Public functions
;;; ************************************************************************

;; Redefine this Org Table function to handle Koutlines as well.
(defun orgtbl-tab (arg)
  "Justification and field motion for `orgtbl-mode' with Koutline support."
  (interactive "P")
  (cond ((and (derived-mode-p 'kotl-mode) arg)
	 (kotl-mode:tab-command (if (= (prefix-numeric-value arg) 1) nil arg)))
	(arg
	 (org-table-edit-field t))
	(t (org-table-justify-field-maybe)
	   (org-table-next-field))))