Function: kotl-mode:zap-to-char
kotl-mode:zap-to-char is an interactive and byte-compiled function
defined in kotl-mode.el.
Signature
(kotl-mode:zap-to-char ARG CHAR)
Documentation
Kill up to and including prefix ARG'th occurrence of CHAR.
Goes backward if ARG is negative; error if CHAR not found.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:zap-to-char (arg char)
"Kill up to and including prefix ARG'th occurrence of CHAR.
Goes backward if ARG is negative; error if CHAR not found."
(interactive "*p\ncZap to char within current cell: ")
(kcell-view:operate
(lambda () (zap-to-char arg char))))