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

Commit 5ee8625

Browse files
committed
Merge branch 'split-off-instarepl'
2 parents 641810a + 0b3ce4c commit 5ee8625

10 files changed

Lines changed: 337 additions & 1272 deletions

File tree

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
2-
cd runner
3-
lein uberjar
4-
cd ../lein-light-nrepl
2+
cd lein-light-nrepl
53
lein install
4+
cd ../runner
5+
lein uberjar
66
echo " --- Done!"

clojure.behaviors

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,6 @@
4242
[:editor.clj.hints :lt.plugins.clojure/finish-update-hints]
4343
[:editor.clj.hints :lt.plugins.clojure/use-local-hints]
4444

45-
[:editor.clj.instarepl :lt.object/add-tag :editor.clj.common]
46-
[:editor.clj.instarepl :lt.plugins.clojure.instarepl/on-eval-one]
47-
[:editor.clj.instarepl :lt.plugins.clojure.instarepl/set-parent-title]
48-
[:editor.clj.instarepl :lt.plugins.clojure.instarepl/on-eval-sonar]
49-
[:editor.clj.instarepl :lt.plugins.clojure.instarepl/dirty-parent]
50-
[:editor.clj.instarepl :lt.plugins.clojure.instarepl/eval-on-change]
51-
[:editor.clj.instarepl :lt.plugins.clojure.instarepl/close-parent]
52-
[:editor.clj.instarepl :lt.plugins.clojure/clj-result.inline]
53-
[:editor.clj.instarepl :lt.plugins.clojure/clj-result.statusbar]
54-
[:editor.clj.instarepl :lt.plugins.clojure/clj-result.replace]
55-
[:editor.clj.instarepl :lt.plugins.clojure/clj-watch-result]
56-
[:editor.clj.instarepl :lt.plugins.clojure/clj-watch-src]
57-
[:editor.clj.instarepl :lt.plugins.clojure/clj-watch-custom-src]
58-
[:editor.clj.instarepl :lt.plugins.clojure/clj-doc]
59-
[:editor.clj.instarepl :lt.plugins.clojure/print-clj-doc]
60-
6145
[:editor.clj.jump-to-definition :lt.plugins.clojure/jump-to-definition-at-cursor]
6246
[:editor.clj.jump-to-definition :lt.plugins.clojure/start-jump-to-definition]
6347
[:editor.clj.jump-to-definition :lt.plugins.clojure/finish-jump-to-definition]
@@ -89,18 +73,6 @@
8973
{:exts [:cljs], :mime "text/x-clojurescript", :tags [:editor.cljs :editor.clojurescript], :name "ClojureScript"}
9074
{:exts [:cljc], :mime "text/x-clojure", :tags [:editor.clj :editor.clojure], :name "Clojure/ClojureScript"}]]
9175

92-
[:instarepl :lt.plugins.clojure.instarepl/sonar-result]
93-
[:instarepl :lt.plugins.clojure.instarepl/clj-exception]
94-
[:instarepl :lt.plugins.clojure.instarepl/on-show-refresh-eds]
95-
[:instarepl :lt.plugins.clojure.instarepl/destroy-on-close]
96-
[:instarepl :lt.plugins.clojure.instarepl/reroute-watches]
97-
[:instarepl :lt.plugins.clojure.instarepl/live-toggle]
98-
[:instarepl :lt.plugins.clojure.instarepl/on-focus-focus-ed]
99-
[:instarepl :lt.plugins.clojure.instarepl/no-op]
100-
[:instarepl :lt.plugins.clojure.instarepl/cleanup-on-destroy]
101-
[:instarepl :lt.plugins.clojure/eval-print-err]
102-
[:instarepl :lt.plugins.clojure/eval-print]
103-
10476
[:nrepl.client :lt.plugins.clojure.nrepl/client.settings]
10577
[:nrepl.client :lt.plugins.clojure.nrepl/init-session]
10678
[:nrepl.client :lt.object/add-tag :nrepl.client.common]

clojure_compiled.js

Lines changed: 245 additions & 607 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clojure_compiled.js.map

Lines changed: 86 additions & 133 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,7 @@
1818
(def old-*err* *err*)
1919
(def my-settings (atom {:name "clj"
2020
:dir (fs/absolute-path fs/cwd)
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.sonar
30-
:editor.eval.clj.cancel
31-
:editor.eval.cljs
32-
:cljs.compile]}))
21+
:type "lein-light-nrepl"}))
3322

3423
(defmulti handle :op)
3524

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
[clojure.tools.nrepl.middleware :refer [set-descriptor!]]
88
[lighttable.nrepl.core :as core]
99
[lighttable.nrepl.eval :as eval]
10-
[lighttable.nrepl.sonar :as sonar]
1110
[lighttable.nrepl.cljs :as cljs]
1211
[lighttable.nrepl.doc :as doc]
1312
lighttable.nrepl.auto-complete

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

Lines changed: 0 additions & 228 deletions
This file was deleted.

runner/src/leiningen/light_nrepl.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
"0.2.0"
4343
;; Deprecated/unmaintained lein-light-nrepl
4444
"0.1.3")
45-
profile {:dependencies [['lein-light-nrepl/lein-light-nrepl lein-light-version]]
45+
profile {:dependencies [['lein-light-nrepl/lein-light-nrepl lein-light-version]
46+
['lein-light-nrepl-instarepl "0.3.0"]]
4647
:repl-options {:nrepl-middleware ['lighttable.nrepl.handler/lighttable-ops]
4748
:init (with-meta init {:replace true})}}
4849
project (lp/merge-profiles project [profile])]
164 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)