Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions repl.lisp
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
#!/usr/bin/env -S sbcl --script
(load "~/quicklisp/setup")

(let ((*standard-output* (make-broadcast-stream)))
(ql:quickload "alexandria")
(ql:quickload "cl-readline")
(ql:quickload "str"))

(require :sb-introspect)

(defpackage :sbcli
Expand Down
23 changes: 23 additions & 0 deletions sbcli.asd
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
(in-package asdf-user)

(defsystem sbcli
:description "REPL for my SBCL needs"
:long-description "A better REPL for SBCL.
sbcli handles errors gracefully, is not too verbose, has readline capabilities,
including multiline input and reset, and has optional syntax highlighting
capabilities using pygmentize."
:version "0.1.4"
:author "Veit Heller <veit@veitheller.de>"
:license "GPLv3"
:depends-on
("alexandria"
"cl-readline"
"str")
:components
((:module ""
:serial t
:components
((:file "repl"))))
:build-operation "program-op"
:entry-point "repl:sbcli"
:build-pathname #.(merge-pathnames #p"repl" (uiop:getcwd)))