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 1010* [ #888 ] ( https://github.com/clojure-emacs/cider/issues/888 ) : Handle comments in ` cider-repl-mode ` .
1111* [ #830 ] ( https://github.com/clojure-emacs/cider/issues/830 ) : Stop using ` load-file ` for most interactive evaluation commands.
1212* [ #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 ` .
1314
1415## 0.8.1 / 2014-11-20
1516
Original file line number Diff line number Diff line change @@ -424,8 +424,8 @@ Returns to the buffer in which the command was invoked."
424424(defvar cider-minibuffer-map
425425 (let ((map (make-sparse-keymap )))
426426 (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 )
429429 map)
430430 " Minibuffer keymap used for reading Clojure expressions." )
431431
You can’t perform that action at this time.
0 commit comments