8
8
<img src =" https://raw.github.com/clojure-emacs/cider/master/logo/cider-logo-w640.png " alt =" CIDER Logo " />
9
9
</p >
10
10
11
- ` CIDER ` (formerly ` nrepl.el ` ) is the ** C** lojure ** I** nteractive ** D** evelopment
11
+ CIDER (formerly ` nrepl.el ` ) is the ** C** lojure ** I** nteractive ** D** evelopment
12
12
** E** nvironment that ** R** ocks!
13
13
14
- ` CIDER ` extends Emacs with support for interactive programming in Clojure. The
14
+ CIDER extends Emacs with support for interactive programming in Clojure. The
15
15
features are centered around ` cider-mode ` , an Emacs minor-mode that complements
16
16
` clojure-mode ` . While ` clojure-mode ` supports editing Clojure source files,
17
17
` cider-mode ` adds support for interacting with a running Clojure process for
@@ -194,12 +194,12 @@ with CIDER's REPL initialization.
194
194
195
195
` package.el ` is the built-in package manager in Emacs.
196
196
197
- ` CIDER ` is available on the two major ` package.el ` community
197
+ CIDER is available on the two major ` package.el ` community
198
198
maintained repos -
199
199
[ MELPA Stable] ( http://stable.melpa.org )
200
200
and [ MELPA] ( http://melpa.org ) .
201
201
202
- You can install ` CIDER ` with the following command:
202
+ You can install CIDER with the following command:
203
203
204
204
<kbd >M-x package-install [ RET] cider [ RET] </kbd >
205
205
@@ -331,7 +331,7 @@ The two main ways to obtain an nREPL connection are discussed in the following s
331
331
332
332
Simply open in Emacs a file belonging to your ` lein ` or ` boot ` project (like
333
333
` foo.clj ` ) and type <kbd >M-x cider-jack-in</kbd >. This will start a nREPL with
334
- all the deps loaded in, plus a ` CIDER ` client connected to it.
334
+ all the deps loaded in, plus a CIDER client connected to it.
335
335
336
336
Alternatively you can use <kbd >C-u M-x cider-jack-in</kbd > to specify the name of
337
337
a ` lein ` or ` boot ` project, without having to visit any file in it.
@@ -363,10 +363,10 @@ In Clojure(Script) buffers the command `cider-connect` is bound to <kbd>C-c M-c<
363
363
364
364
### Using the cider minor mode
365
365
366
- ` CIDER ` comes with a handy minor mode called ` cider-mode ` (complementing
366
+ CIDER comes with a handy minor mode called ` cider-mode ` (complementing
367
367
` clojure-mode ` ) that allows you to evaluate code in your Clojure source
368
368
files and load it directly in the REPL. A list of all
369
- available commands is available in the ` CIDER ` menu and in the following
369
+ available commands is available in the CIDER menu and in the following
370
370
section of this manual.
371
371
372
372
### ClojureScript usage
@@ -480,7 +480,7 @@ Keyboard shortcut | Description
480
480
<kbd >C-c C-q</kbd > | Quit the current nREPL connection. With a prefix argument it will quit all connections.
481
481
482
482
There's no need to memorize this list. In any Clojure buffer with ` cider-mode `
483
- active you'll have a ` CIDER ` menu available, which lists all the most important
483
+ active you'll have a CIDER menu available, which lists all the most important
484
484
commands and their keybindings. You can also invoke ` C-h f RET cider-mode ` to
485
485
get a list of the keybindings for ` cider-mode ` .
486
486
@@ -677,8 +677,8 @@ change `*cider-repl localhost*` to `*cider-repl foo*`.
677
677
678
678
## Configuration
679
679
680
- You can certainly use ` CIDER ` without configuring it any further,
681
- but here are some ways other folks are adjusting their ` CIDER `
680
+ You can certainly use CIDER without configuring it any further,
681
+ but here are some ways other folks are adjusting their CIDER
682
682
experience.
683
683
684
684
### Basic configuration
@@ -1057,7 +1057,7 @@ buffer (which includes invoking `cider-quit`) or you quitting Emacs.
1057
1057
1058
1058
### Minibuffer completion
1059
1059
1060
- Out-of-the box ` CIDER ` uses the standard ` completing-read ` Emacs mechanism. While it's not
1060
+ Out-of-the box CIDER uses the standard ` completing-read ` Emacs mechanism. While it's not
1061
1061
fancy it certainly gets the job done (just press ` TAB ` ). There are, however, ways to improve
1062
1062
upon the standard completion if you wish to.
1063
1063
@@ -1078,7 +1078,7 @@ You might also want to install [`ido-flex`](https://github.com/lewang/flx).
1078
1078
1079
1079
### Auto-completion
1080
1080
1081
- ` CIDER ` users are advised to use [ ` company-mode ` ] ( http://company-mode.github.io/ ) to enable auto-completion
1081
+ CIDER users are advised to use [ ` company-mode ` ] ( http://company-mode.github.io/ ) to enable auto-completion
1082
1082
inside of source code and REPL buffers. To install ` company-mode ` do:
1083
1083
1084
1084
` M-x package-install <RET> company <RET> `
@@ -1117,7 +1117,7 @@ the time of this writing it's still in development).
1117
1117
1118
1118
#### Migrating from ` auto-complete-mode `
1119
1119
1120
- * Disable ` ac-cider-setup ` or ` ac-nrepl-setup ` from running on ` CIDER ` hooks
1120
+ * Disable ` ac-cider-setup ` or ` ac-nrepl-setup ` from running on CIDER hooks
1121
1121
1122
1122
* Remove ` cider-mode ` and ` cider-repl-mode ` from the ` ac-modes ` list
1123
1123
@@ -1295,8 +1295,8 @@ this behavior by using `M-x toggle-debug-on-error`.
1295
1295
1296
1296
### REPL not starting
1297
1297
1298
- Make sure that your ` CIDER ` version matches your ` cider-nrepl ` version. Check
1299
- the contents of the ` *Messages* ` buffer for ` CIDER ` -related errors. You should
1298
+ Make sure that your CIDER version matches your ` cider-nrepl ` version. Check
1299
+ the contents of the ` *Messages* ` buffer for CIDER-related errors. You should
1300
1300
also check the nREPL messages passed between CIDER and nREPL in
1301
1301
` *nrepl-messages* ` . If you don't see anything useful there it's time to bring
1302
1302
out the big guns.
0 commit comments