summaryrefslogtreecommitdiff
path: root/cider-mode.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-06-22 20:07:18 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-06-22 20:07:18 +0300
commit48468d7455ea96c7a856234262ac6dcaaf1cbb32 (patch)
tree175c17535a4bda95c7d1d7a96ed20ec789fd21c6 /cider-mode.el
parenteecc51b80ef49c8d239d909e0b541714db4415a5 (diff)
Rename `cider-eval-defun-to-point` and `cider-eval-sexp-to-point`
The new names are the a bit more descriptive `cider-eval-defun-up-to-point` and `cider-eval-sexp-up-to-point`.
Diffstat (limited to 'cider-mode.el')
-rw-r--r--cider-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-mode.el b/cider-mode.el
index 3d504d83..94f46627 100644
--- a/cider-mode.el
+++ b/cider-mode.el
@@ -213,12 +213,12 @@ the related commands `cider-repl-clear-buffer' and
(defconst cider-mode-eval-menu
'("CIDER Eval" :visible (cider-connected-p)
["Eval top-level sexp" cider-eval-defun-at-point]
- ["Eval top-level sexp to point" cider-eval-defun-to-point]
+ ["Eval top-level sexp to point" cider-eval-defun-up-to-point]
["Eval top-level sexp to comment" cider-eval-defun-to-comment]
["Eval top-level sexp and pretty-print to comment" cider-pprint-eval-defun-to-comment]
"--"
["Eval current sexp" cider-eval-sexp-at-point]
- ["Eval current sexp to point" cider-eval-sexp-to-point]
+ ["Eval current sexp to point" cider-eval-sexp-up-to-point]
["Eval current sexp in context" cider-eval-sexp-at-point-in-context]
"--"
["Eval last sexp" cider-eval-last-sexp]