@@ -105,7 +105,7 @@ itself exposes. A few commands are:
105
105
- show arglists for function ` C-c C-a `
106
106
- show var documentation ` C-c C-v `
107
107
- show source ` C-c C-s `
108
- - insert top level form into repl ` C-c C-j d `
108
+ - insert top level form into REPL ` C-c C-j d `
109
109
110
110
For a list of all available commands in ` inf-clojure-mode ` (a.k.a. the
111
111
REPL) and ` inf-clojure-minor-mode ` you can either invoke `C-h f RET
@@ -130,7 +130,7 @@ or by setting them in in your init file.
130
130
You can see all the configuration options available using the command
131
131
` M-x customize-group RET inf-clojure ` .
132
132
133
- The supported repl -features are in an alist called
133
+ The supported REPL -features are in an alist called
134
134
` inc-clojure-repl-features ` and it has the following shape:
135
135
136
136
``` emacs-lisp
@@ -144,7 +144,7 @@ The supported repl-features are in an alist called
144
144
(macroexpand-1 . "(cljs.core/macroexpand-1 '%s)"))))
145
145
```
146
146
147
- If you want to add a new repl type, just `(add-to-list
147
+ If you want to add a new REPL type, just `(add-to-list
148
148
'inf-clojure-repl-features (cons new-repl-type '((doc
149
149
. "(myrepl/doc-command %s") ...)))` since the datastructure is just an
150
150
alist of alists.
@@ -163,7 +163,7 @@ connect to a socket REPL, terminal REPLs are inherently hard to work with and
163
163
support will be deprecated in the foreseeable future. If you use the
164
164
same project often, make a dir-locals file with this information in ` inf-clojure-custom-startup ` .
165
165
166
- Note that if you decide _ NOT_ to use the socket repl , it is highly recommended
166
+ Note that if you decide _ NOT_ to use the socket REPL , it is highly recommended
167
167
you disable output coloring and/or readline facilities: ` inf-clojure ` does not
168
168
filter out ASCII escape characters at the moment and will not behave correctly.
169
169
@@ -294,8 +294,8 @@ You can leave it enabled, it just won't show anything in the echo area.
294
294
#### Code Completion
295
295
296
296
Code completion is a tricky aspect if you are trying to be as close to
297
- a generic repl as possible. Planck and lumo repl implementations
298
- explicitly provide completion functions in their repl namespaces. For
297
+ a generic REPL as possible. Planck and lumo REPL implementations
298
+ explicitly provide completion functions in their REPL namespaces. For
299
299
clojure, you will need to have a library on your classpath. If you are
300
300
using lein, you already have
301
301
[ clojure-complete] ( https://github.com/ninjudd/clojure-complete ) . You
@@ -353,13 +353,13 @@ in order to play nicely with emacs.
353
353
### Things seem broken
354
354
355
355
Inf-clojure is intentionally quite simple and just sends commands to a
356
- repl on your behalf to provide features. In order to do this
357
- inf-clojure largely needs to know the repl type so it can format the
356
+ REPL on your behalf to provide features. In order to do this
357
+ inf-clojure largely needs to know the REPL type so it can format the
358
358
correct calls. Most end up in ` (lumo.repl/doc [symbol]) ` or
359
- ` (cljs.repl/doc ...) ` so its important that the repl type is set
360
- correctly. This repl type exists in the process buffer (repl ) and the
359
+ ` (cljs.repl/doc ...) ` so its important that the REPL type is set
360
+ correctly. This REPL type exists in the process buffer (REPL ) and the
361
361
source buffers as a cache. If you have problems, run `m-x
362
- inf-clojure-set-repl-type` from the source buffer to set the repl type
362
+ inf-clojure-set-repl-type` from the source buffer to set the REPL type
363
363
in both buffers. To see how simple inf-clojure is, look at
364
364
` inf-clojure-repl-features ` to see largely how things are laid out.
365
365
0 commit comments