summaryrefslogtreecommitdiffstats
path: root/rlwrapping_sbcl.post
diff options
context:
space:
mode:
authorGravatar Tom Willemse2015-01-03 02:54:37 +0100
committerGravatar Tom Willemse2015-01-03 02:54:37 +0100
commitce6d2a4d3564aa48557b3ff6b13bfb41b6d01df1 (patch)
tree3c9041f6091cd04d773d26e72bd6d01179e04c76 /rlwrapping_sbcl.post
parent586030d9702a03121e57a4326124b248732342e5 (diff)
downloadblog-ce6d2a4d3564aa48557b3ff6b13bfb41b6d01df1.tar.gz
blog-ce6d2a4d3564aa48557b3ff6b13bfb41b6d01df1.zip
Add old posts
Diffstat (limited to 'rlwrapping_sbcl.post')
-rw-r--r--rlwrapping_sbcl.post25
1 files changed, 0 insertions, 25 deletions
diff --git a/rlwrapping_sbcl.post b/rlwrapping_sbcl.post
deleted file mode 100644
index 32d7138..0000000
--- a/rlwrapping_sbcl.post
+++ /dev/null
@@ -1,25 +0,0 @@
-;;;;;
-title: rlwrapping sbcl
-tags: sbcl, lisp, utility
-date: 2013-10-06 13:02
-format: md
-;;;;;
-
-[SBCL](http://sbcl.org) is an excellent lisp implementation. The only
-thing that's not so nice about it is overly simple command-line
-interface. The absence of `<UP>`, `C-a`, `M-b`, etc. can be annoying,
-even though I only occasionally use SBCL directly.
-
-I have 3 solutions to this problem now:
-
-- Use [SLIME](http://common-lisp.net/project/slime/), which is what I
- do most of the time, but sometimes this isn't practical.
-
-- Use [Linedit](http://common-lisp.net/project/linedit/). I tried
- this, and it was cool. But somehow I broke it and now I can't get it
- to work.
-
-- Use [rlwrap](http://utopia.knoware.nl/~hlub/uck/rlwrap/#rlwrap).
- This requires you to either always invoke SBCL as `rlwrap sbcl` or
- create an alias for it. This works very well too, is very simple and
- doesn't noticeably increase start-up time.