document history saving more prominently in README
authorNikodemus Siivola <nikodemus@random-state.net>
Fri, 20 Jan 2012 13:37:24 +0000 (15:37 +0200)
committerNikodemus Siivola <nikodemus@random-state.net>
Fri, 20 Jan 2012 13:37:24 +0000 (15:37 +0200)
README

diff --git a/README b/README
index 7755c02..7189efe 100644 (file)
--- a/README
+++ b/README
@@ -35,6 +35,7 @@ LINEDIT
   Meta-H in the prompt display help. (Try ESC-H if your terminal
   misbehaves with meta-proper.)
 
+
  USING LINEDIT IN THE REPL (SBCL AND CCL ONLY)
  ---------------------------------------------
 
@@ -42,11 +43,15 @@ LINEDIT
 
     (when (interactive-stream-p *standard-input*)
       (asdf:load-system :linedit)
-      (funcall (intern "INSTALL-REPL" :linedit) :wrap-current t))
-
-  in eg. your Lisp initialization file (~/.sbclrc for SBCL). If you
-  don't want to preserve your current input handler you can omit the
-  WRAP-CURRENT keyword.
+      (funcall (intern "INSTALL-REPL" :linedit)
+               ;; Keeps toplevel commands intact, etc.
+               :wrap-current t
+               ;; Should EOF quit after verification?
+               :eof-quits t
+               ;; Persistent history
+               :history "~/.linedit_history"))
+
+  in eg. your Lisp initialization file (~/.sbclrc for SBCL).
 
 
  INTERFACE