Go to the previous, next section.
delete-char (C-d)
- Delete the character under the cursor. If the cursor is at the
beginning of the line, there are no characters in the line, and
the last character typed was not C-d, then return EOF.
backward-delete-char (Rubout)
- Delete the character behind the cursor. A numeric arg says to kill
the characters instead of deleting them.
quoted-insert (C-q, C-v)
- Add the next character that you type to the line verbatim. This is
how to insert key sequences like C-q, for example.
tab-insert (M-TAB)
- Insert a tab character.
self-insert (a, b, A, 1, !, ...)
- Insert yourself.
transpose-chars (C-t)
- Drag the character before the cursor forward over
the character at the cursor, moving the
cursor forward as well. If the insertion point
is at the end of the line, then this
transposes the last two characters of the line.
Negative argumentss don't work.
transpose-words (M-t)
- Drag the word behind the cursor past the word in front of the cursor
moving the cursor over that word as well.
upcase-word (M-u)
- Uppercase the current (or following) word. With a negative argument,
do the previous word, but do not move the cursor.
downcase-word (M-l)
- Lowercase the current (or following) word. With a negative argument,
do the previous word, but do not move the cursor.
capitalize-word (M-c)
- Capitalize the current (or following) word. With a negative argument,
do the previous word, but do not move the cursor.
Go to the previous, next section.