Function: kotl-mode:org-self-insert-command
kotl-mode:org-self-insert-command is an interactive and byte-compiled
function defined in kotl-mode.el.
Signature
(kotl-mode:org-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:org-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 () (org-self-insert-command n))))