Nightcode icon indicating copy to clipboard operation
Nightcode copied to clipboard

An IDE for Clojure

Results 32 Nightcode issues
Sort by recently updated
recently updated
newest added

Please add basic config. of Paredit. You want to paste multi-line code between a few closing parenthesis )). You put a caret in between. You paste the code (Ctrl+V). Paredit...

In openSUSE x64 GNOME, OpenJDK 11 (build 11+28-suse-1.1-x8664), the editor doesn't show text cursor/caret for the first character of any line. One way it confuses people: if you mouse click...

Have code on two or more lines: ```clojure ["existing expression" ] ``` Position text cursor/caret at the end of the first line. Press semicolon `;`. Paredit joins the next line...

![image](https://user-images.githubusercontent.com/4270240/45157992-7c656d00-b197-11e8-8848-265a3fb08394.png) 1. No results shown for (assert false), neither for (assert true) 2. ["EXPRESSIONS..."] still shows the previous value ["expressions..."]

Hi Zach, Thank you for Nightcode. `(doc map)` fails in InstaREPL (but works in REPL window): `java.lang.RuntimeException: Unable to resolve symbol: doc in this context, compiling:(NO_SOURCE_PATH:0:0)`. Nightcode 2.6.0 installed from...

Hi Zach. InstaREPL shows an error for most incorrect expressions, while still evaluating other expressions. Awesome. ```clojure (map (fn [& _] true) #{1 2 3}) (filter #(do [%] true) [:anything...

I am probably stupid... but i try to resolve this for some time now: Its obvious how to do a find (ctrl-f) in the editor, but how can i (auto-)replace/replaceall...

enhancement

Per [this reddit discussion](https://www.reddit.com/r/Nightcode/comments/7klgfa/line_number_of_error/) we see that the following code will cause the Clojure compiler to throw an error: ``` (defn r->lfix ([a op b] (op a b)) ([a op1...

Thanks for an amazing way into Clojure/Script. I found on OSX 10.11.6 with the Dvorak keyboard layout that pressing the command key shows the correct hints, but that I have...

If I type the following to REPL within Nightcode: ```clj (loop [x 0 ``` This gets autocompleted to ```clj (loop [x 0]) ``` **This is good.** However if I place...