This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-09-18
Channels
- # 100-days-of-code (10)
- # announcements (2)
- # aws (3)
- # beginners (120)
- # boot (6)
- # calva (6)
- # cider (22)
- # cljsrn (3)
- # clojure (145)
- # clojure-greece (1)
- # clojure-italy (7)
- # clojure-nl (24)
- # clojure-russia (90)
- # clojure-spec (21)
- # clojure-uk (80)
- # clojurescript (175)
- # core-async (1)
- # datomic (17)
- # emacs (8)
- # ethereum (5)
- # figwheel (1)
- # figwheel-main (140)
- # fulcro (137)
- # jobs (6)
- # jobs-discuss (3)
- # luminus (3)
- # mount (1)
- # nyc (3)
- # off-topic (39)
- # onyx (1)
- # pedestal (1)
- # re-frame (21)
- # reagent (13)
- # shadow-cljs (60)
- # spacemacs (25)
- # test-check (4)
- # tools-deps (14)
- # uncomplicate (3)
- # vim (18)
How can I use a specific alias when using jack-in
with deps.edn?
@andreas862 set cider-clojure-cli-global-options
Thanks - Tried it, but unsure if has taken any effect
Starting nREPL-server via
doesn't contain the option, but it ends with ...
so could contain more
The variable is set at least
(defcustom cider-clojure-cli-global-options
nil
"Command line options used to execute clojure with tools.deps."
:type 'string
:group 'cider
:safe #'stringp
:package-version '(cider . "0.17.0"))
Seems like my cider was too old, thanks for your help
on the same vein when I jack in using deps.edn is there a good way to default to figwheel.main?
@jduhamel I suppose you could set "-m figwheel.main"
could do. Currently I just wait for the pop up and select figwheel-main when doing a clojurescript jack-in.
I would think that there are ways to set up variables per project in Emacs
@jduhamel this should contain the answer https://cider.readthedocs.io/en/latest/clojurescript/
@richiardiandrea Following the https://cider.readthedocs.io/en/latest/clojurescript just led to more confusion. Based on the docs I should have the line ’(setq cider-default-cljs-repl ’figwheel-main)` in my .emacs when I do that I get an error saying ‘Figwheel-main is not available’ but if I don’t have that line in it prompts me for the type of repl I want and figwheel-main is included in that list.
@richiardiandrea Actually there seems to be a regression elsewhere. I unset all my new variables and still had an issue on stuff that was working yesterday.
uhm, I currently doing (cider-default-cljs-repl . shadow)
in a .dir-locals.el
file and it works so I don't know what could've broken