[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.8.3 Deleting and killing text

DEL, ^D

 
Delete the character under the cursor (‘delete-char’).

^H, BKSPC

 
Delete the character before the cursor (‘backward-delete-char’).

ESC BKSPC

 
Delete backward one word (‘backward-kill-word’).

ESC d

 
Delete forward one word (‘kill-word’).

ESC k

 
Delete the entire line (‘kill-line’).

^U

 
Delete all the characters between the beginning of the input line and
the point (‘kill-to-beginning-of-line’).

^K

 
Delete all the characters between the point and the end of the input
line (‘kill-to-end-of-line’).

ESC SPC

 
Delete all the spaces around the point, leaving only one space
(‘just-one-space’).

ESC \

 
Delete all the spaces around the point
(‘delete-horizontal-space’).

^W

 
Save the region between the point and the mark into the kill "ring" and
then kills it (‘kill-region’).  Note that there is no real
kill-ring here.  The so-called kill-ring has only one entry.

ESC w

 
Save the region between the point and the mark without killing it
(‘kill-ring-save’).

This document was generated by Ian Beckwith on March, 1 2009 using texi2html 1.78.