This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-07-31
Channels
- # beginners (9)
- # boot (38)
- # cider (7)
- # cljs-dev (181)
- # cljsrn (49)
- # clojure (136)
- # clojure-italy (44)
- # clojure-losangeles (1)
- # clojure-news (1)
- # clojure-russia (3)
- # clojure-sanfrancisco (1)
- # clojure-serbia (2)
- # clojure-spec (28)
- # clojure-uk (41)
- # clojure-ukraine (1)
- # clojurescript (103)
- # core-async (6)
- # core-logic (46)
- # cursive (5)
- # data-science (8)
- # datascript (6)
- # datomic (5)
- # emacs (35)
- # events (3)
- # jobs (2)
- # jobs-rus (2)
- # juxt (6)
- # lumo (7)
- # off-topic (101)
- # om (6)
- # onyx (6)
- # parinfer (38)
- # pedestal (5)
- # perun (1)
- # planck (4)
- # protorepl (4)
- # re-frame (62)
- # reagent (20)
- # remote-jobs (1)
- # ring-swagger (1)
- # spacemacs (16)
- # unrepl (43)
- # vim (13)
I am analyzing with the goal of importing it in inf-clojure
at some point. I was wondering if some cider
guru can explain me briefly what is the goal of __prefix__
here: https://github.com/clojure-emacs/cider/blob/ea6aa352f7e5b97e00ac2057c2d7579a9e6f411f/cider-interaction.el#L497
@richiardiandrea https://github.com/alexander-yakushev/compliment/wiki/Context prefix__ is part of context
cool thanks, I could not find it in the cider code base, I should have thought about compliment
I wonder if it works with the whole file instead of just top level form, it's very slow to find the top level form in some cases. With parinfer it's faster to send the whole file rather than parse.
Uhm, not sure, but cider
is pretty quick in finding it, never noticed any slow down
I mean, you have to search the whole file if there's an unbalanced paren whilst someone is inserting a form, no?
ah ok got it, well yeah, but paredit
or parinfer
are there for you to keep things balanced as you said