Function: kotl-mode:org-delete-char
kotl-mode:org-delete-char is an interactive and byte-compiled function
defined in kotl-mode.el.
Signature
(kotl-mode:org-delete-char N)
Documentation
Like delete-char, but insert whitespace at field end in tables.
When deleting characters, in tables this function will insert whitespace in front of the next "|" separator, to keep the table aligned. The table will still be marked for re-alignment if the field did fill the entire column, because, in this case the deletion might narrow the column.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:org-delete-char (n)
"Like `delete-char', but insert whitespace at field end in tables.
When deleting characters, in tables this function will insert whitespace in
front of the next \"|\" separator, to keep the table aligned. The table will
still be marked for re-alignment if the field did fill the entire column,
because, in this case the deletion might narrow the column."
(interactive "p")
(kcell-view:operate
(lambda () (org-delete-char n))))