diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -17,8 +17,7 @@
     sloane [OPTIONS] SEARCH-TERMS
 
     Common flags:
-      -k --keys=KEYS  Keys of fields to print, http://oeis.org/eishelp1.html
-                      (default: SN)
+      -k --keys=KEYS  Keys of fields to print (default: SN)
       -a --all        Print all fields
       -n --limit=INT  Limit the number of entries retrieved (default: 5)
       -? --help       Display help message
@@ -58,8 +57,40 @@
     S A006531 1,1,3,19,183,2371,38703,763099,17648823,468603091,14050842303,
     N A006531 Semiorders on n elements.
 
+Keys
+----
+
+These are the [keys used by OEIS](http://oeis.org/eishelp2.html).
+
+    I  ID number
+
+    S  1st line of unsigned sequence
+    T  2nd line of unsigned sequence
+    U  3rd line of unsigned sequence
+
+    V  1st line of signed sequence
+    W  2nd line of signed sequence
+    X  3rd line of signed sequence
+
+    N  Name
+    C  Comments
+    D  References
+    H  Links
+    F  Formula
+    e  Examples
+
+    p  Maple program
+    t  Mathematica program
+    o  Program in other language
+
+    Y  Cross-references
+    K  Keywords
+    O  Offset
+    A  Author
+    E  Extensions and errors
+
 Caveat
 ------
 
-Please use this program with moderation as not to put too much of a burden on the OEIS-server; see
+Please use this program with moderation as not to overburden the OEIS-server; see
 [OEIS' policy on searching the database](http://oeis.org/wiki/Welcome#Policy_on_Searching_the_Database).
diff --git a/sloane.cabal b/sloane.cabal
--- a/sloane.cabal
+++ b/sloane.cabal
@@ -1,5 +1,5 @@
 Name:                sloane
-Version:             0.1.3
+Version:             0.1.4
 Synopsis:            A command line interface to Sloane's On-Line Encyclopedia of Integer Sequences
 Description:         A command line interface to Sloane's On-Line Encyclopedia of Integer Sequences.
                      For usage see <http://github.com/akc/sloane>.
diff --git a/sloane.hs b/sloane.hs
--- a/sloane.hs
+++ b/sloane.hs
@@ -22,13 +22,12 @@
               deriving (Data, Typeable)
 
 sloane = cmdArgsMode $ Sloane 
-         { keys  = "SN"  &= typ "KEYS"
-                &= help "Keys of fields to print, http://oeis.org/eishelp1.html (default: SN)"
-         , all   = False &= help "Print all fields"
-         , limit = 5     &= name "n"  &= help "Limit the number of entries retrieved (default: 5)"
-         , terms = def   &= argPos 0  &= typ "SEARCH-TERMS"
+         { keys  = "SN"  &= typ "KEYS" &= help "Keys of fields to print (default: SN)"
+         , all   = False               &= help "Print all fields"
+         , limit = 5     &= name "n"   &= help "Limit the number of entries retrieved (default: 5)"
+         , terms = def   &= argPos 0   &= typ "SEARCH-TERMS"
          }
-         &= versionArg [summary "sloane 0.1.3"]
+         &= versionArg [summary "sloane 0.1.4"]
          &= summary "Search Sloane's On-Line Encyclopedia of Integer Sequences"
 
 select :: [Key] -> OEISEntries -> OEISEntries
