Function: kotl-mode:orgtbl-ctrl-c-ctrl-c

kotl-mode:orgtbl-ctrl-c-ctrl-c is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:orgtbl-ctrl-c-ctrl-c ARG)

Documentation

If the cursor is inside a table, realign the table.

If it is a table to be sent away to a receiver, do it. With prefix arg, also recompute table.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:orgtbl-ctrl-c-ctrl-c (arg)
  "If the cursor is inside a table, realign the table.
If it is a table to be sent away to a receiver, do it.
With prefix arg, also recompute table."
  (interactive "P")
  (kcell-view:operate
   (lambda () (org-ctrl-c-ctrl-c arg))))