Skip to content

Commit 8ae2fe8

Browse files
author
Bozhidar Batsov
committed
[Fix #894] Make it possible to enter any symbol with cider-read-symbol-name
1 parent 13fc517 commit 8ae2fe8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
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.
1313
* Fix tab completion in `cider-read-from-minibuffer`.
14+
* [#894](https://github.com/clojure-emacs/cider/issues/894): Make it possible to enter any symbol with `cider-read-symbol-name`.
1415

1516
## 0.8.1 / 2014-11-20
1617

cider-interaction.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1567,7 +1567,7 @@ if there is no symbol at point, or if QUERY is non-nil."
15671567
(not symbol-name)
15681568
(equal "" symbol-name)))
15691569
(funcall callback symbol-name)
1570-
(cider-completing-read-var prompt (cider-current-ns) callback))))
1570+
(funcall callback (cider-read-from-minibuffer prompt)))))
15711571

15721572
(defun cider-sync-request:toggle-trace-var (symbol)
15731573
"Toggle var tracing for SYMBOL."

0 commit comments

Comments
 (0)