This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-05-26
Channels
- # aws (7)
- # beginners (109)
- # boot (5)
- # carry (2)
- # cider (25)
- # clara (6)
- # cljs-dev (86)
- # cljs-experience (19)
- # cljsrn (1)
- # clojure (183)
- # clojure-dev (7)
- # clojure-dusseldorf (7)
- # clojure-gamedev (2)
- # clojure-greece (32)
- # clojure-italy (2)
- # clojure-norway (1)
- # clojure-russia (228)
- # clojure-sg (3)
- # clojure-spec (38)
- # clojure-uk (104)
- # clojurebridge (1)
- # clojurescript (29)
- # community-development (9)
- # core-async (118)
- # core-matrix (20)
- # cursive (5)
- # datomic (140)
- # emacs (25)
- # figwheel (1)
- # hoplon (21)
- # jobs (4)
- # lein-figwheel (2)
- # luminus (10)
- # lumo (35)
- # off-topic (137)
- # om (31)
- # onyx (62)
- # pedestal (6)
- # reagent (25)
- # remote-jobs (1)
- # ring-swagger (11)
- # spacemacs (2)
- # test-check (17)
- # uncomplicate (10)
- # unrepl (1)
- # untangled (20)
- # vim (4)
- # yada (3)
i just use vanilla atom with autocomplete disabled + parinfer plugin
@thedavidmeister what are you trying to do when that happens?
Looks like you might be missing a parent element before a template macro
@flyboarder i don't know, it just got reported from sentry
i'm usually pretty careful about that
it could be
That would be my first guess
i'll see how hard it is to audit all the tpls in my project 😕
@flyboarder i've definitely seen problems with appendChild
from tpls but removeChild
is new for me
@thedavidmeister thanks. which theme do you use in atom for clojure ?
@jouerose just one of the default ones i think
with parinfer on, it doesn't matter so much
thinking about hoplon. although defelem expects attributes and children as arguments, he dynamic nature of clojure, fundamentally is there any worry about if i use these two arguments as not a map in the case of attributes and not children in the case of children ?
@jouerose just use a defn
if you want to control your own arguments, use defn
if you want the convenience of a macro "scooping up" all the args and normalising it to attributes and children, use defelem
that's all defelem does, so if you want different args don't use it
@thedavidmeister thanks for your advice.