@@ -105,7 +105,7 @@ itself exposes. A few commands are:
105105- show arglists for function ` C-c C-a `
106106- show var documentation ` C-c C-v `
107107- 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 `
109109
110110For a list of all available commands in ` inf-clojure-mode ` (a.k.a. the
111111REPL) 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.
130130You can see all the configuration options available using the command
131131` M-x customize-group RET inf-clojure ` .
132132
133- The supported repl -features are in an alist called
133+ The supported REPL -features are in an alist called
134134` inc-clojure-repl-features ` and it has the following shape:
135135
136136``` emacs-lisp
@@ -144,7 +144,7 @@ The supported repl-features are in an alist called
144144 (macroexpand-1 . "(cljs.core/macroexpand-1 '%s)"))))
145145```
146146
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
148148'inf-clojure-repl-features (cons new-repl-type '((doc
149149. "(myrepl/doc-command %s") ...)))` since the datastructure is just an
150150alist of alists.
@@ -163,7 +163,7 @@ connect to a socket REPL, terminal REPLs are inherently hard to work with and
163163support will be deprecated in the foreseeable future. If you use the
164164same project often, make a dir-locals file with this information in ` inf-clojure-custom-startup ` .
165165
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
167167you disable output coloring and/or readline facilities: ` inf-clojure ` does not
168168filter out ASCII escape characters at the moment and will not behave correctly.
169169
@@ -294,8 +294,8 @@ You can leave it enabled, it just won't show anything in the echo area.
294294#### Code Completion
295295
296296Code 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
299299clojure, you will need to have a library on your classpath. If you are
300300using lein, you already have
301301[ clojure-complete] ( https://github.com/ninjudd/clojure-complete ) . You
@@ -353,13 +353,13 @@ in order to play nicely with emacs.
353353### Things seem broken
354354
355355Inf-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
358358correct 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
361361source 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
363363in both buffers. To see how simple inf-clojure is, look at
364364` inf-clojure-repl-features ` to see largely how things are laid out.
365365
0 commit comments