Function: kotl-mode:kill-line
kotl-mode:kill-line is an interactive and byte-compiled function
defined in kotl-mode.el.
Signature
(kotl-mode:kill-line &optional ARG)
Documentation
Kill ARG lines from point.
Key Bindings
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:kill-line (&optional arg)
"Kill ARG lines from point."
(interactive "*P")
(if (and (null arg)
(kotl-mode:bolp)
(boundp 'kill-whole-line) kill-whole-line)
(let ((indent (kcell-view:indent)))
;; Kill whole line including newline, if any.
(kcell-view:operate
(lambda ()
(let ((no-newline))
(kill-region (point)
(progn (setq no-newline
(not (search-forward "\n" nil 'stay)))
(point)))
(or no-newline (delete-char indent))))))
;; Kill part of a line or multiple lines.
(let ((num-arg (prefix-numeric-value arg)))
(cond
((and (null arg) (not (kotl-mode:eolp)))
;; kill to eol but not newline
(kill-region (point) (setq arg (kotl-mode:to-end-of-line))))
((= num-arg 0)
;; kill to bol
(kill-region (point) (setq arg (kotl-mode:beginning-of-line))))
(t ;; (/= num-arg 0)
;; Find start and end of region to kill
(let ((start (point))
(end (min (kcell-view:end-contents)
(save-excursion (kfill:forward-line num-arg) (point)))))
(kotl-mode:kill-region start end))))))
(setq last-command 'kill-region))