atom-chlorine icon indicating copy to clipboard operation
atom-chlorine copied to clipboard

An Atom plugin to integrate with Socket-REPL over Clojure, ClojureScript, ClojureCLR, Joker, Babashka, Clojerl, Lumo and Plank

Results 9 atom-chlorine issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Getting doc for var for `s/defn`, for example, returns `#object[clojure.lang.Namespace 0xd57d6de1 "schema.core"]/defn`

bug

First, thanks! Chlorine is a great productivity boost for us 🙏🏻 I'm using ^G to jump to a var definition, but it would be great to quickly be able to...

I have an unsaved file containing the following code: ```clojure (def world "The world." "world") (defn greet-world "Greet the world!" [] (println "Hello," (str world "!"))) (greet-world) ``` Trying to...

## What's Up? It would be sweet to be able to connect to the figwheel-main repl through atom. ## M'kay, tell me more Based on the quick conversation we had...

enhancement

First of all, thanks for all work you've put into Chlorine, it's a wonderful package. ❤️ I'm not sure this is a bug or not. If it's not, feel free...

I'm asked for an ssh password when trying to clone the repository with the repl-tooling submodule. Editing .gitmodules so that in the submodule section, url's value uses the https://... method...

When I use this code: (def ISBN-LENGTH 13) (def OLD-ISBN-LENGTH 10) (defn valid-isbn [isbn] (or (= (count isbn) OLD-ISBN-LENGTH) (= (count isbn) ISBN-LENGTH))) And then enter: (valid-isbn 05967) and submit...