Clojure-Sublimed
Clojure-Sublimed copied to clipboard
Clojure support for Sublime Text 4
E.g. start REPL and try to eval plus form in a file like this: ``` (ns abc) (+ 1 2) ``` Command send to nREPL will have `{"ns": "abc"}`, but...
Parsing might be done much more efficiently on Clojure side, but it will require sending full file for each command. Worth it?
When standing inside successful evaluation, Ctrl+I should toggle between compact one-line truncated view (first) and expanded pretty-printed view (second): Note: do not use `clojure.pprint`, better implement it yourself: same idea,...