[slime-cvs] CVS slime/doc
CVS User heller
heller at common-lisp.net
Wed Nov 18 10:51:34 UTC 2009
Update of /project/slime/cvsroot/slime/doc
In directory cl-net:/tmp/cvs-serv24695
Modified Files:
Makefile slime.texi
Log Message:
* slime.texi: Recommend slime-repl and slime-fancy in the Loading
Contribs section.
* Makefile (publish): New target
--- /project/slime/cvsroot/slime/doc/Makefile 2009/07/11 15:35:12 1.14
+++ /project/slime/cvsroot/slime/doc/Makefile 2009/11/18 10:51:34 1.15
@@ -36,6 +36,12 @@
html.tgz: html/index.html
tar -czf $@ html
+DOCDIR=/project/slime/public_html/doc
+# invoke this like: make CLUSER=heller publish
+publish: html.tgz
+ scp html.tgz $(CLUSER)@common-lisp.net:$(DOCDIR)
+ ssh $(CLUSER)@common-lisp.net "cd $(DOCDIR); tar -zxf html.tgz"
+
slime.pdf: $(TEXI)
texi2pdf $<
--- /project/slime/cvsroot/slime/doc/slime.texi 2009/10/21 14:32:57 1.85
+++ /project/slime/cvsroot/slime/doc/slime.texi 2009/11/18 10:51:34 1.86
@@ -12,7 +12,7 @@
@set EDITION 3.0-alpha
@set SLIMEVER 3.0-alpha
@c @set UPDATED @today{}
- at set UPDATED @code{$Date: 2009/10/21 14:32:57 $}
+ at set UPDATED @code{$Date: 2009/11/18 10:51:34 $}
@set TITLE SLIME User Manual
@settitle @value{TITLE}, version @value{EDITION}
@@ -676,9 +676,10 @@
The buffer @code{*inferior-lisp*} contains the Lisp process's own
top-level. This direct access to Lisp is useful for troubleshooting,
and some degree of @SLIME{} integration is available using the
- at code{inferior-slime-mode}. However, in normal use we recommend using
-the fully-integrated @SLIME{} @REPL{} (@pxref{REPL}) and ignoring the
- at code{*inferior-lisp*} buffer.
+inferior-slime-mode. Many people load the better integrated @SLIME{}
+ at REPL{} contrib module (@pxref{REPL}) and ignore
+the @code{*inferior-lisp*} buffer. (@pxref{Loading Contribs} for
+information on how to enable the REPL.)
@c -----------------------
@node Multithreading
@@ -2126,6 +2127,22 @@
After starting SLIME, the commands of both packages should be
available.
+The REPL and @code{slime-fancy} modules deserve special mention. Many
+users consider the REPL (@pxref{REPL}) essential
+while @code{slime-fancy} (@pxref{slime-fancy}) loads the REPL and
+almost all of the popular contribs. So, if you aren't sure what to
+choose start with:
+
+ at example
+(slime-setup '(slime-repl)) ; repl only
+ at end example
+
+If you like what you see try this:
+
+ at example
+(slime-setup '(slime-fancy)) ; almost everything
+ at end example
+
@c -----------------------
@node REPL
@section REPL: the ``top level''
More information about the slime-cvs
mailing list