Skip to content

Commit

Permalink
Fix bug with nrepl hyperlink activation
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentpetit committed Oct 13, 2012
1 parent 4526cfe commit 4b52624
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
(when-let [[offset length [_ host port]] (find-match-for-offset pattern line (- offset line-offset))]
;(println "nrepl hyperlink:" :offset (+ line-offset offset) :length length)
[{:offset (+ line-offset offset) :length length
:open #(ccw.repl.REPLView/connect (format "nrepl://%s:%s") host port)}])))
:open #(ccw.repl.REPLView/connect (format "nrepl://%s:%s" host port))}])))

(defn factory [ _ ]
(proxy [AbstractHyperlinkDetector]
Expand Down

0 comments on commit 4b52624

Please sign in to comment.