Skip to content
This repository was archived by the owner on Oct 21, 2022. It is now read-only.

Commit bbe67e6

Browse files
committed
Merge pull request #74 from rundis/fix-multiple-conns-per-proj
Commands needs to be set for client connection selection.
2 parents 99f1fdf + 10db7e4 commit bbe67e6

File tree

1 file changed

+11
-1
lines changed
  • lein-light-nrepl/src/lighttable/nrepl

1 file changed

+11
-1
lines changed

lein-light-nrepl/src/lighttable/nrepl/core.clj

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,17 @@
1818
(def old-*err* *err*)
1919
(def my-settings (atom {:name "clj"
2020
:dir (fs/absolute-path fs/cwd)
21-
:type "lein-light-nrepl"}))
21+
:type "lein-light-nrepl"
22+
:commands [:editor.eval.clj
23+
:editor.clj.doc
24+
:editor.cljs.doc
25+
:editor.clj.hints
26+
:editor.cljs.hints
27+
:docs.clj.search
28+
:docs.cljs.search
29+
:editor.eval.clj.cancel
30+
:editor.eval.cljs
31+
:cljs.compile]}))
2232

2333
(defmulti handle :op)
2434

0 commit comments

Comments
 (0)