@@ -46,13 +46,6 @@ Add the following to your Emacs config to enable
46
46
(add-hook 'clojure-mode-hook #'inf-clojure-minor-mode)
47
47
```
48
48
49
- ` inf-clojure-program ` is a custom variable that defines a program to run
50
- or the tcp socket to connect to when starting ` inf-clojure ` . By default
51
- this var is set to ` lein repl ` , which will start a repl via leiningen.
52
- However, it is possible to use a cons pair like ` ("localhost" . 5555) ` to
53
- connect to a socket repl like the one provided with [ planck] ( http://planck-repl.org/ ) ,
54
- which can be started from the command line with ` planck -n 5555 ` .
55
-
56
49
** Don't enable ` inf-clojure-minor-mode ` and ` cider-mode ` at the same
57
50
time. They have overlapping functionality and keybindings and the
58
51
result will be nothing short of havoc.**
@@ -61,6 +54,16 @@ result will be nothing short of havoc.**
61
54
62
55
` M-x inf-clojure ` or ` C-c C-z ` within a Clojure source file.
63
56
57
+ ` inf-clojure-program ` is a custom variable that defines a program to run
58
+ or the tcp socket to connect to when starting ` inf-clojure ` . By default
59
+ this variable is set to ` lein repl ` , which will start a REPL via Leiningen.
60
+ However, it is possible to use a cons pair like ` ("localhost" . 5555) ` to
61
+ connect to a socket REPL like the one provided with [ planck] ( http://planck-repl.org/ ) ,
62
+ which can be started from the command line with ` planck -n 5555 ` .
63
+
64
+ Use ` C-u C-c C-z ` to start a REPL with a different command/cons pair than
65
+ the default specified in ` info-clojure-program ` .
66
+
64
67
## ElDoc
65
68
66
69
` eldoc-mode ` is supported in Clojure source buffers and ` *inferior-clojure* `
0 commit comments