You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@
8
8
-[#2946](https://github.com/clojure-emacs/cider/issues/2946): Add custom var `cider-merge-sessions` to allow combining sessions in two different ways: Setting `cider-merge-sessions` to `'host` will merge all sessions associated with the same host within a project. Setting it to `'project` will combine all sessions of a project irrespective of their host.
9
9
- Support Gradle jack-in via the Gradle wrapper (`gradlew`), instead of just a globally installed `gradle` on the `PATH`.
10
10
- Gradle projects can now inject dependencies and middleware as with other build tools (dependency injection requires [Clojurephant](https://github.com/clojurephant/clojurephant) 0.7.0 or higher).
11
+
-[#3239](https://github.com/clojure-emacs/cider/issues/3239): Added commands to evaluate and tap last sexp and sexp at point.
Copy file name to clipboardExpand all lines: doc/modules/ROOT/pages/usage/code_evaluation.adoc
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -382,6 +382,11 @@ Below is a listing of most keybindings for evaluation commands:
382
382
kbd:[C-c C-e]
383
383
| Evaluate the form preceding point and display the result in the echo area and/or in an buffer overlay (according to `cider-use-overlays`). If invoked with a prefix argument, insert the result into the current buffer.
384
384
385
+
| `cider-tap-last-sexp`
386
+
| kbd:[C-c C-v q] +
387
+
kbd:[C-c C-v C-q]
388
+
| Like `cider-eval-last-sexp` but also taps the result.
389
+
385
390
| `cider-eval-last-sexp-and-replace`
386
391
| kbd:[C-c C-v w]
387
392
| Evaluate the form preceding point and replace it with its result.
@@ -423,6 +428,11 @@ kbd:[C-c C-v C-v]
423
428
kbd:[C-u C-c C-c]
424
429
| Debug the top level form under point and walk through its evaluation
425
430
431
+
| `cider-tap-sexp-at-point`
432
+
| kbd:[C-c C-v t] +
433
+
kbd:[C-c C-v C-t]
434
+
| Evaluate and tap the form around point.
435
+
426
436
| `cider-eval-defun-up-to-point`
427
437
| kbd:[C-c C-v z]
428
438
| Evaluate the preceding top-level form up to the point.
0 commit comments