EDITLINE - Quick Reference, Copyright (c) 1992, Simmule R. Turner

These are the current bindings for my editline input library routine.


CURRENT BINDINGS:
        ^A - move point to beginning of line
  ESC n ^B - move point left 1 (or n) characters
  ESC n ^C - changes current 1 (or n) characters to uppercase
  ESC n ^D - delete 1 (or n) characters
        ^E - move point to end of line
  ESC n ^F - move point right 1 (or n) characters
  ESC n ^H - delete the preceding 1 (or n) characters
        ^I - complete path at point
        ^J - return the current line
  ESC n ^K - kill from point to lineend (or between point and column n)
        ^L - redisplay current line
        ^M - return the current line
  ESC n ^N - fetches next (or nth) entered line (going forward)
  ESC n ^P - fetches last (or nth) entered line (going backward)
  ESC n ^R - search history backwards (or forward)
        ^T - transpose current and previous character
        ^V - quote next input character
        ^W - kill region between point and mark
      ^X^X - exchange point and mark
        ^Y - yank last killed text
        ^[ - META prefix 
       ^]c - move to next occurence of c
  

META
  ESC n ESC ^H - kill left 1 (or n) words
        ESC sp - set mark
  ESC n ESC  . - insert last (or nth) argument of previous command
        ESC  < - fetch oldest entered line
        ESC  > - fetch most recently entered line
        ESC  ? - list possible completions
  ESC n ESC  b - move point left 1 (or n) words
  ESC n ESC  d - kill right 1 (or n) words
  ESC n ESC  f - move point right 1 (or n) words
  ESC n ESC  l - lowercase right 1 (or n) words
  ESC n ESC  u - uppercase right 1 (or n) words
        ESC  v - display version of editline
        ESC  w - copy region between point and mark
  ESC n ESC ^? - kill left 1 (or n) words


MISC
  ESC  0-9     - numeric prefix
  ESC  A-Z     - get input from environment variable _c_ (A <= c <= Z)

