File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ visually distinctive from `cider-repl-output-face` (used for STDOUT output).
27
27
support for tramp, so tramp paths do not get used in compiled debug
28
28
information. ` cider-jump ` still uses tramp filenames to find
29
29
definitions if used in a buffer associated with a tramp file.
30
+ * Renamed ` cider ` command to ` cider-connect ` .
30
31
31
32
### Bugs fixed
32
33
Original file line number Diff line number Diff line change @@ -404,7 +404,7 @@ Alternatively you can start nREPL either manually or by the facilities provided
404
404
project build tool (Maven, etc).
405
405
406
406
After you get your nREPL server running go back to Emacs.
407
- Typing there <kbd >M-x cider</kbd > will allow you to connect to the running nREPL server.
407
+ Typing there <kbd >M-x cider-connect </kbd > will allow you to connect to the running nREPL server.
408
408
409
409
### Using the cider minor mode
410
410
@@ -441,7 +441,7 @@ enforcement of this limit can then be toggled using:
441
441
* <kbd >M-x cider</kbd >: Connect to an already-running nREPL server.
442
442
443
443
While you're in ` clojure-mode ` , ` cider-jack-in ` is bound for
444
- convenience to <kbd >C-c M-j</kbd > and ` cider ` is bound to <kbd >C-c
444
+ convenience to <kbd >C-c M-j</kbd > and ` cider-connect ` is bound to <kbd >C-c
445
445
M-c</kbd >.
446
446
447
447
### cider-mode
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ The returned endpoint has the label removed."
133
133
selected-endpoint)))
134
134
135
135
;;;### autoload
136
- (defun cider (host port )
136
+ (defun cider-connect (host port )
137
137
" Connect to an nREPL server identified by HOST and PORT."
138
138
(interactive (let ((known-endpoint (when cider-known-endpoints
139
139
(cider-select-known-endpoint))))
@@ -145,11 +145,15 @@ The returned endpoint has the label removed."
145
145
(when (nrepl-check-for-repl-buffer `(, host , port ) nil )
146
146
(nrepl-connect host port)))
147
147
148
+ (define-obsolete-function-alias
149
+ 'cider
150
+ 'cider-connect )
151
+
148
152
;;;### autoload
149
153
(eval-after-load 'clojure-mode
150
154
'(progn
151
155
(define-key clojure-mode-map (kbd " C-c M-j" ) 'cider-jack-in )
152
- (define-key clojure-mode-map (kbd " C-c M-c" ) 'cider )))
156
+ (define-key clojure-mode-map (kbd " C-c M-c" ) 'cider-connect )))
153
157
154
158
(provide 'cider )
155
159
You can’t perform that action at this time.
0 commit comments