summaryrefslogtreecommitdiff
path: root/cider-repl.el
diff options
context:
space:
mode:
authorVitalie Spinu <spinuvit@gmail.com>2017-08-28 20:51:54 +0200
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2017-09-05 20:37:45 +0300
commit76b15f6158e8df12ca15821efdd2e45e99a80524 (patch)
treef36b25b84f505ddc5c25adc589f0c48bb569709d /cider-repl.el
parentd3873c4fe5e40c804029ab95f173bc1d96835926 (diff)
Jump to other window when clicking on a locref in REPL
Diffstat (limited to 'cider-repl.el')
-rw-r--r--cider-repl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-repl.el b/cider-repl.el
index a5637c2f..02975fb9 100644
--- a/cider-repl.el
+++ b/cider-repl.el
@@ -1054,7 +1054,7 @@ regexes from `cider-locref-regexp-alist' to infer locations at point."
;; when not found, return the file detected by regexp
(plist-get loc :file))))
(if file
- (cider--jump-to-loc-from-info (nrepl-dict "file" file "line" line))
+ (cider--jump-to-loc-from-info (nrepl-dict "file" file "line" line) t)
(error "No source location for %s" var)))
(user-error "No location reference at point")))