
COMMAND LINE EDITING FEATURES
=============================

Key                ANSI   Effect
----------------------------------------------------------------------
Cursor-left        ^[[D   move one character to the left
Cursor-right       ^[[C   move one character to the right
Shift-cursor-left  ^[[ A  move to the beginning of the line
                   or ^A
Shift-cursor-right ^[[ @  move to the end of the line
                   or ^Z
Backspace          ^H     delete last character
Del                127    delete the character under the cursor
Return/Enter       ^M     process command line
                   ^W     move cursor one tab stop to the right
                   ^X     delete current line
                   ^K     delete everything from the cursor forward to
                          the end of the line
                   ^U     delete  everything  from the cursor backward
                          to the start of the line
Cursor-up          ^[[A   move backward in the history buffer (earlier
                          lines)
Cursor-down        ^[[B   move  forward  in the history buffer (latter
                          lines)
Shift-cursor-up    ^[[T   search backward through history buffer
                   or ^R  for given command line or fragment
Shift-cursor-down  ^[[S   move  to  the  bottom of the history buffer,
                          with cusor on blank line
                   ^F     move to last word
                   ^G     move to next word
                   ^V     move  halfway  backward  toward the start of
                          the line
                   ^B     move  halfway  forward toward the end of the
                          line
                   ^E     delete the word under the cursor
----------------------------------------------------------------------
NOTE: 1. ^x is Ctrl-x (Hold down the control "Ctrl" key and type x)
      2. Some terminal programs do not support shifted cursor keys.

