Function: kotl-mode:kill-contents

kotl-mode:kill-contents is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:kill-contents ARG)

Documentation

Kill contents of cell from point to cell end.

With prefix ARG, kill entire cell contents.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:kill-contents (arg)
  "Kill contents of cell from point to cell end.
With prefix ARG, kill entire cell contents."
  (interactive "*P")
  (kotl-mode:kill-region
   (if arg (kcell-view:start) (point))
   (kcell-view:end-contents)))