summaryrefslogtreecommitdiff
path: root/cider-eval.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-07-07 23:37:46 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2018-07-07 23:37:46 +0200
commit27910f39b99fa5a94dadd170a2c9c1735c79dbdc (patch)
treea71d5703270ec41903cf419421a65a1651cf136f /cider-eval.el
parent1e684aca022a166b97756161072ed71cf7073e9e (diff)
Remove `cider-visit-error-buffer` in favour of using `cider-selector`
Diffstat (limited to 'cider-eval.el')
-rw-r--r--cider-eval.el9
1 files changed, 1 insertions, 8 deletions
diff --git a/cider-eval.el b/cider-eval.el
index 376bafde..8191da52 100644
--- a/cider-eval.el
+++ b/cider-eval.el
@@ -65,7 +65,7 @@ The following values are possible t or 'always, 'except-in-repl,
not to be automatically shown.
Irespective of the value of this variable, the `cider-error-buffer' is
-always generated in the background. Use `cider-visit-error-buffer' to
+always generated in the background. Use `cider-selector' to
navigate to this buffer."
:type '(choice (const :tag "always" t)
(const except-in-repl)
@@ -172,13 +172,6 @@ When invoked with a prefix ARG the command doesn't prompt for confirmation."
;;; Dealing with compilation (evaluation) errors and warnings
-(defun cider-visit-error-buffer ()
- "Visit the `cider-error-buffer' (usually *cider-error*) if it exists."
- (interactive)
- (if-let* ((buffer (get-buffer cider-error-buffer)))
- (cider-popup-buffer-display buffer cider-auto-select-error-buffer)
- (user-error "No %s buffer" cider-error-buffer)))
-
(defun cider-find-property (property &optional backward)
"Find the next text region which has the specified PROPERTY.
If BACKWARD is t, then search backward.