bash: Commands For Killing

1 
1 8.4.4 Killing And Yanking
1 -------------------------
1 
1 'kill-line (C-k)'
1      Kill the text from point to the end of the line.
1 
1 'backward-kill-line (C-x Rubout)'
1      Kill backward from the cursor to the beginning of the current line.
1 
1 'unix-line-discard (C-u)'
1      Kill backward from the cursor to the beginning of the current line.
1 
1 'kill-whole-line ()'
1      Kill all characters on the current line, no matter where point is.
1      By default, this is unbound.
1 
1 'kill-word (M-d)'
1      Kill from point to the end of the current word, or if between
1      words, to the end of the next word.  Word boundaries are the same
1      as 'forward-word'.
1 
1 'backward-kill-word (M-<DEL>)'
1      Kill the word behind point.  Word boundaries are the same as
1      'backward-word'.
1 
1 'shell-kill-word ()'
1      Kill from point to the end of the current word, or if between
1      words, to the end of the next word.  Word boundaries are the same
1      as 'shell-forward-word'.
1 
1 'shell-backward-kill-word ()'
1      Kill the word behind point.  Word boundaries are the same as
1      'shell-backward-word'.
1 
1 'unix-word-rubout (C-w)'
1      Kill the word behind point, using white space as a word boundary.
1      The killed text is saved on the kill-ring.
1 
1 'unix-filename-rubout ()'
1      Kill the word behind point, using white space and the slash
1      character as the word boundaries.  The killed text is saved on the
1      kill-ring.
1 
1 'delete-horizontal-space ()'
1      Delete all spaces and tabs around point.  By default, this is
1      unbound.
1 
1 'kill-region ()'
1      Kill the text in the current region.  By default, this command is
1      unbound.
1 
1 'copy-region-as-kill ()'
1      Copy the text in the region to the kill buffer, so it can be yanked
1      right away.  By default, this command is unbound.
1 
1 'copy-backward-word ()'
1      Copy the word before point to the kill buffer.  The word boundaries
1      are the same as 'backward-word'.  By default, this command is
1      unbound.
1 
1 'copy-forward-word ()'
1      Copy the word following point to the kill buffer.  The word
1      boundaries are the same as 'forward-word'.  By default, this
1      command is unbound.
1 
1 'yank (C-y)'
1      Yank the top of the kill ring into the buffer at point.
1 
1 'yank-pop (M-y)'
1      Rotate the kill-ring, and yank the new top.  You can only do this
1      if the prior command is 'yank' or 'yank-pop'.
1