diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-11-29 12:17:14 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-11-29 12:17:14 +0200 |
commit | baa9ea73953396d93d0455f8ad9ae924d349a6eb (patch) | |
tree | 16abc83250cd1827c60043cce7ffcf441218da0e /doc/emacs/killing.texi | |
parent | 11baa417c56b42441b7cf9e4092acd840440fe47 (diff) | |
download | emacs-baa9ea73953396d93d0455f8ad9ae924d349a6eb.tar.gz emacs-baa9ea73953396d93d0455f8ad9ae924d349a6eb.tar.bz2 emacs-baa9ea73953396d93d0455f8ad9ae924d349a6eb.zip |
Document 'zap-up-to-char'
* doc/emacs/killing.texi (Other Kill Commands): Document
'zap-up-to-char'.
* lisp/simple.el (zap-to-char): Mention 'zap-up-to-char' in
the doc string. (Bug#38392)
Diffstat (limited to 'doc/emacs/killing.texi')
-rw-r--r-- | doc/emacs/killing.texi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/emacs/killing.texi b/doc/emacs/killing.texi index ce00cb38a74..f5f715dada4 100644 --- a/doc/emacs/killing.texi +++ b/doc/emacs/killing.texi @@ -219,6 +219,8 @@ Kill to the end of the sentence (@code{kill-sentence}). Kill the following balanced expression (@code{kill-sexp}). @xref{Expressions}. @item M-z @var{char} Kill through the next occurrence of @var{char} (@code{zap-to-char}). +@item M-x zap-up-to-char @var{char} +Kill up to, but not including, the next occurrence of @var{char}. @end table @kindex C-w @@ -248,6 +250,10 @@ search backward and kill text before point. A history of previously used characters is maintained and can be accessed via the @kbd{M-p}/@kbd{M-n} keystrokes. This is mainly useful if the character to be used has to be entered via a complicated input method. +@findex zap-up-to-char +A similar command @code{zap-up-to-char} kills from point up to, but +not including the next occurrence of a character, with numeric +argument acting as a repeat count. @node Kill Options @subsection Options for Killing |