Go to the previous, next section.

Commands For Changing Text

delete-char (C-d)
Delete the character under the cursor. If the cursor is at the beginning of the line, and 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 things 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 point forward over the character at point. Point moves forward as well. If point is at the end of the line, then transpose the two characters before point. Negative args 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 all letters in the current (or following) word. With a negative argument, do the previous word, but do not move point.

downcase-word (M-l)
Lowercase all letters in the current (or following) word. With a negative argument, do the previous word, but do not move point.

capitalize-word (M-c)
Uppercase the first letter in the current (or following) word. With a negative argument, do the previous word, but do not move point.

Go to the previous, next section.