summaryrefslogtreecommitdiff
path: root/cider-mode.el
diff options
context:
space:
mode:
authorVitalie Spinu <spinuvit@gmail.com>2018-08-05 11:32:16 +0200
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2018-08-05 13:16:58 +0300
commit1c9f9e33a2c3995774953e43906148200b11507e (patch)
tree76539a85fec51fcf52ef02d4c8071b1b4eb06887 /cider-mode.el
parentd4cd579f5fa487c3af11c319c4c4c44dfe0c00df (diff)
Rename `cider-describe-current-connection` -> `cider-describe-connection`
.. because it accepts an explicit REPL argument now.
Diffstat (limited to 'cider-mode.el')
-rw-r--r--cider-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-mode.el b/cider-mode.el
index fb6fe9d6..7bb4e7e4 100644
--- a/cider-mode.el
+++ b/cider-mode.el
@@ -297,7 +297,7 @@ If invoked with a prefix ARG eval the expression after inserting it."
["Quit" cider-quit :active (cider-connected-p)]
["Restart" cider-restart :active (cider-connected-p)]
"--"
- ["Connection info" cider-describe-current-connection
+ ["Connection info" cider-describe-connection
:active (cider-connected-p)]
["Select any CIDER buffer" cider-selector]
"--"
@@ -492,7 +492,7 @@ As it stands Emacs fires these events on <mouse-8> and <mouse-9> on 'x' and
(define-key map (kbd "C-c ,") 'cider-test-commands-map)
(define-key map (kbd "C-c C-t") 'cider-test-commands-map)
(define-key map (kbd "C-c M-s") #'cider-selector)
- (define-key map (kbd "C-c M-d") #'cider-describe-current-connection)
+ (define-key map (kbd "C-c M-d") #'cider-describe-connection)
(define-key map (kbd "C-c C-=") 'cider-profile-map)
(define-key map (kbd "C-c C-q") #'cider-quit)
(define-key map (kbd "C-c M-r") #'cider-restart)