Function: kotl-mode:copy-region-as-kill
kotl-mode:copy-region-as-kill is an interactive and byte-compiled
function defined in kotl-mode.el.
Signature
(kotl-mode:copy-region-as-kill START END)
Documentation
Copy region between START and END within a single kcell to kill ring.
Key Bindings
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:copy-region-as-kill (start end)
"Copy region between START and END within a single kcell to kill ring."
(interactive "r")
(kotl-mode:kill-region start end t))