File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 10
10
* [ #888 ] ( https://github.com/clojure-emacs/cider/issues/888 ) : Handle comments in ` cider-repl-mode ` .
11
11
* [ #830 ] ( https://github.com/clojure-emacs/cider/issues/830 ) : Stop using ` load-file ` for most interactive evaluation commands.
12
12
* [ #885 ] ( https://github.com/clojure-emacs/cider/issues/885 ) : Translate nREPL-delivered map keys to symbols before adding as text properties.
13
+ * Fix tab completion in ` cider-read-from-minibuffer ` .
13
14
14
15
## 0.8.1 / 2014-11-20
15
16
Original file line number Diff line number Diff line change @@ -424,8 +424,8 @@ Returns to the buffer in which the command was invoked."
424
424
(defvar cider-minibuffer-map
425
425
(let ((map (make-sparse-keymap )))
426
426
(set-keymap-parent map minibuffer-local-map)
427
- (define-key map " TAB" 'complete-symbol )
428
- (define-key map " M-TAB" 'complete-symbol )
427
+ (define-key map ( kbd " TAB" ) 'complete-symbol )
428
+ (define-key map ( kbd " M-TAB" ) 'complete-symbol )
429
429
map)
430
430
" Minibuffer keymap used for reading Clojure expressions." )
431
431
You can’t perform that action at this time.
0 commit comments