Skip to content

Commit d2e370d

Browse files
author
Bozhidar Batsov
committed
Fix Tab-completion in cider-read-from-minibuffer
1 parent c197cd6 commit d2e370d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
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

cider-interaction.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)