This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-03-24
Channels
- # aleph (4)
- # beginners (93)
- # cider (7)
- # cljs-dev (16)
- # cljsrn (5)
- # clojure (192)
- # clojure-dusseldorf (3)
- # clojure-italy (14)
- # clojure-russia (16)
- # clojure-serbia (1)
- # clojure-spec (85)
- # clojure-taiwan (1)
- # clojure-uk (79)
- # clojurescript (188)
- # code-reviews (9)
- # core-async (2)
- # crypto (1)
- # cursive (26)
- # datomic (21)
- # heroku (1)
- # hoplon (3)
- # jobs (7)
- # jobs-discuss (20)
- # jobs-rus (13)
- # off-topic (77)
- # om (15)
- # onyx (23)
- # pedestal (94)
- # planck (11)
- # proton (10)
- # protorepl (1)
- # re-frame (16)
- # ring (22)
- # ring-swagger (9)
- # rum (2)
- # specter (18)
- # testing (2)
- # untangled (14)
- # vim (12)
- # yada (58)
Can I configure the layout of the REPL window whereas the output is displayed at the bottom and the input field at the top?
If you’re having problems with this, there are several fixes in the 1.5.0 EAPs, which are out now. I’m hoping to do a stable release next week sometime.
having same issue 😅 not sure what I'm doing wrong
okay, think I at least partly figured it out... I think it's just freaking out about macros
(defn app-container [cursor component]
(reify
om/IRender
(render [this]
(dom/div nil
(dom/h1 nil "Lab notebook")
(dom/button #js {:className "btn btn-warning"
:onClick undo}
"Undo")
(dom/span nil (str (count @apphistory)))
(dom/div #js {:style #js {:marginTop "12px"}}
(om/build item-table cursor))))))
everywhere it says dom/whatever
(this is for om
) I'm getting the yellow syntax highlighting
there's nothing defined in om.dom
for those things so (new to Clojure, can't quite trace what happens when you call dom/whatever
, it's just magic to me right now)
Or maybe I'm wrong and it just couldn't generate the stub code?
okay... what I said apparently isn't entirely true since I just tried it with the om tutorial and it generated stubs just fine
I’m hardly using it anyway, but I bought a license just to support the amazing work in this area 😄
@dnolen: seems to work, have been running it for a day or two with no problems
@timgilbert ok cool
@goomba I posted a link above which explains how the stubs work. There are some problems with them which are (hopefully) fixed in the latest series of EAP builds. They should be stable next week.
Great, thank you. You did cursive? Impressive and daunting task. Take all my money!!