Skip to content

Commit

Permalink
Explain inferior-lisp in the readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Oct 18, 2011
1 parent ed6f437 commit 593b65c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions README.md
Expand Up @@ -40,13 +40,21 @@ Use paredit as you normally would with any other mode; for instance:
(defun turn-on-paredit () (paredit-mode 1))
(add-hook 'clojure-mode-hook 'turn-on-paredit)

## Basic REPL

Use <kbd>M-x run-lisp</kbd> to open a simple REPL subprocess using
[Leiningen](http://github.com/technomancy/leiningen). Once that has
opened, you can use <kbd>C-c C-r</kbd> to evaluate the region or
<kbd>C-c C-l</kbd> to load the whole file.

If you don't use Leiningen, you can set `inferior-lisp-program` to
a different REPL command.

## SLIME

You can use [Leiningen](http://github.com/technomancy/leiningen) for
better interaction with subprocesses via SLIME.
You can also use [Leiningen](http://github.com/technomancy/leiningen)
to start an enhanced REPL via SLIME:

$ wget https://github.com/technomancy/leiningen/raw/stable/bin/lein
[place the "lein" script on your $PATH and make it executable]
$ lein plugin install swank-clojure 1.3.3

M-x clojure-jack-in # from inside a project
Expand Down

0 comments on commit 593b65c

Please sign in to comment.