summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-05-13 11:59:19 -0500
committerBozhidar Batsov <bozhidar@batsov.com>2016-05-13 11:59:19 -0500
commit5ba5091b60d28e8cc8e6a266295efeba88769ad0 (patch)
tree47c32e331634926f134eb68cc3b6ad570685a45a /CHANGELOG.md
parent88559783f98a58e6c03f16fe585febbab7e53525 (diff)
Introduce a common prefix for some evaluation commands that aren't used
frequently This also solve the `C-c C-r` conflict with recent clojure-mode versions.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 055ed250..a9bbfc4c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,7 +14,7 @@
used in a project, particular if it is lower than minimum required for CIDER.
* Allow the ns displayed by eldoc to be tailored via `cider-eldoc-ns-function`.
* After connecting a ClojureScript REPL, CIDER will try to figure out if it's being served on a port and will offer to open it in a browser.
-* [#1720](https://github.com/clojure-emacs/cider/issues/1720): Add a command `cider-eval-sexp-at-point` to evaluate the form around point (bound to `C-c C-v`).
+* [#1720](https://github.com/clojure-emacs/cider/issues/1720): Add a command `cider-eval-sexp-at-point` to evaluate the form around point (bound to `C-c C-v v`).
* [#1564](https://github.com/clojure-emacs/cider/issues/1564): CIDER's internal namespaces and vars are filtered from the ns-browser and apropos functions.
* [#1725](https://github.com/clojure-emacs/cider/issues/1725): Display class names in eldoc for interop forms.
@@ -27,6 +27,9 @@
* Signal `user-error` instead of `error` on jack-in if a project type is not supported.
* Users with `boot.sh` instead of `boot` should customize `cider-boot-command` instead of relying on automatic detection.
* [#1737](https://github.com/clojure-emacs/cider/issues/1737): Show value of locals in debugger tooltip.
+* Rebind `cider-eval-last-sexp-and-replace` to `C-c C-v w`.
+* Rebind `cider-eval-region` to `C-c C-v r`.
+* Rebind `cider-eval-ns-form` to `C-c C-v n`.
### Bugs fixed