Function: kotl-mode:orgtbl-self-insert-command

kotl-mode:orgtbl-self-insert-command is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:orgtbl-self-insert-command N)

Documentation

Like self-insert-command, use overwrite-mode(var)/overwrite-mode(fun) for whitespace in tables.

If the cursor is in a table looking at whitespace, the whitespace is overwritten, and the table is not marked as requiring realignment.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:orgtbl-self-insert-command (n)
  "Like `self-insert-command', use `overwrite-mode' for whitespace in tables.
If the cursor is in a table looking at whitespace, the whitespace is
overwritten, and the table is not marked as requiring realignment."
  (interactive "p")
  (kcell-view:operate
   (lambda () (orgtbl-self-insert-command n))))