summaryrefslogtreecommitdiff
path: root/cider-mode.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2014-03-03 15:56:25 +0200
committerBozhidar Batsov <bozhidar@tradeo.com>2014-03-03 15:56:25 +0200
commit80cd1399bc338c81feef0cc3386cd8d81eb9213c (patch)
tree9c11ecde6d3a9e1471f8e114b24d7c28d3210155 /cider-mode.el
parent244b3801dea28b48c4c0720fe2962a5ca101f633 (diff)
Bind cider-inspect to C-c M-i
C-c C-i was a bad idea, as it was interpreted by Emacs as C-c TAB.
Diffstat (limited to 'cider-mode.el')
-rw-r--r--cider-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-mode.el b/cider-mode.el
index 2bf6cc41..caaec65b 100644
--- a/cider-mode.el
+++ b/cider-mode.el
@@ -52,7 +52,7 @@
(define-key map (kbd "C-c C-m") 'cider-macroexpand-1)
(define-key map (kbd "C-c M-m") 'cider-macroexpand-all)
(define-key map (kbd "C-c M-n") 'cider-repl-set-ns)
- (define-key map (kbd "C-c C-i") 'cider-inspect)
+ (define-key map (kbd "C-c M-i") 'cider-inspect)
(define-key map (kbd "C-c C-d") 'cider-doc)
(define-key map (kbd "C-c C-s") 'cider-src)
(define-key map (kbd "C-c C-z") 'cider-switch-to-repl-buffer)