Function: kill-sentence

kill-sentence is an interactive and byte-compiled function defined in paragraphs.el.gz.

Signature

(kill-sentence &optional ARG)

Documentation

Kill from point to end of sentence.

With ARG, repeat; negative ARG -N means kill back to Nth start of sentence.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/paragraphs.el.gz
(defun kill-sentence (&optional arg)
  "Kill from point to end of sentence.
With ARG, repeat; negative ARG -N means kill back to Nth start of
sentence."
  (interactive "p")
  (kill-region (point) (progn (forward-sentence arg) (point))))