Mike Fikes
Mike Fikes
I found that, by adding the additional source path to the project-level `:source-paths` setting (in addition to the cljsbuild build-specific setting), things work. I've added this to the previously mentioned...
Currently the history is kept in an array-of-array structure and probably should be flattened. Then it would be easier to use it for this ticket.
Right. (I have no wireless keyboard so I'm frequently unaware of keyboard related deficiencies in Replete.)
Start with `(let [x 3] |)` where `|` is the cursor. Then tap return, space over and type `y`. You then get ``` (let [x 3 ______y])|_ ``` where `_`...
If I do this, things work. ``` export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig" ```
See mfikes/planck#15
@dotemacs This issue had been reported and fixed previously ( #78 ). Perhaps it regressed with the change to Swift 3 and subtleties surrounding string handling? Or perhaps it is...
Interestingly, I can't reproduce the problem with the released version 1.6 on iOS 10.2 (I also have the "." shortcut enabled in my keyboard.) Hrm.
@skrat Yes, `pprint` and `pp` should be available in Replete as this is the default for normal ClojureScript REPLs: https://github.com/clojure/clojurescript/blob/2924c4880c05208beb0f321e8e4e63b4cb1c45f3/src/main/clojure/cljs/repl.cljc#L739
Yep. This is probably an easy fix—having it iterate over reading a form, evaluating it, and then proceeding with the remainder. As an aside, this kind of stuff is fixed...