Fork me on GitHub
#cursive
<
2017-06-01
>
pseud07:06:01

@dealy hard to read what you wrote. But if your user.clj file starts up figwheel immediately it seems to cause problems. At least it did for me when I had a file similar to yours yesterday. Instead, put those same commands to start figwheel and the cljs repl into a function and call it manually once you get your CLJ repl. Humour me 🙂

misha16:06:35

@cfleming Is there a way to style how folded blocks of code are displayed? Here some current collapsed top level forms examples:

(let ...)
(defn foo ...)
(def bar ...)
(spec/def ...)
What I'd really like, is to show spec/defs keyword, and single-arity function's args (if those are on the same line, ofc.):
(defn foo [bar baz] ...)
(spec/def :foo/bar ...)
I know, there is a settings page for unresolved symbols to "alias" those to known macros structure, like "treat rum/defc just like defn". Is there something like this, but for code folding representation?

cfleming21:06:21

@misha No, there isn’t unfortunately. I’ll try to look at some of the folding related issues soon. Could you add a comment to https://github.com/cursive-ide/cursive/issues/1269?

misha09:06:19

cfleming: done