This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-03-22
Channels
- # announcements (1)
- # babashka (28)
- # beginners (120)
- # braveandtrue (6)
- # calva (59)
- # cider (10)
- # clj-kondo (10)
- # cljfx (2)
- # clojure (66)
- # clojure-europe (20)
- # clojure-germany (1)
- # clojure-italy (3)
- # clojure-nl (4)
- # clojure-norway (1)
- # clojure-serbia (17)
- # clojure-spain (1)
- # clojure-uk (17)
- # clojurescript (120)
- # clojureverse-ops (4)
- # core-async (5)
- # cursive (18)
- # data-oriented-programming (1)
- # datomic (4)
- # deps-new (8)
- # emacs (14)
- # fulcro (16)
- # funcool (2)
- # kaocha (4)
- # lambdaisland (5)
- # luminus (1)
- # malli (47)
- # membrane (9)
- # mid-cities-meetup (2)
- # music (1)
- # off-topic (44)
- # pathom (13)
- # practicalli (2)
- # re-frame (15)
- # reagent (34)
- # reveal (25)
- # ring (56)
- # rum (1)
- # shadow-cljs (23)
- # sql (14)
- # startup-in-a-month (1)
- # tools-deps (10)
- # vim (9)
- # vscode (3)
- # xtdb (9)
hey y'all, is it possible to specify which nrepl version cursive will use?
the larger question is, how can you specify nrepl middleware when using cursive + deps.edn?
thanks 🙂
The default Cmd-' (single quote) shortcut for the raise action is not doing anything for me sometimes. I'm not sure what breaks it and what makes it work again. If I run raise from the action menu, it works. Had anyone else experienced such an issue?
Would it be possible for Cursive to devote part of the REPL window to a progress bar when running tests in a namespace? Currently, we get an ephemeral popup only after tests complete.
If I use an alias for :extra-paths
in a deps project, the CLJ REPL in Cursive can’t find the sources.
:clj-paths ["src/clj"]
:server {:extra-paths [:clj-paths]}
If I don’t use an alias, it works as expected.
:server {:extra-paths ["src/clj"]}
It works fine from the command line, and the project window in IntelliJ marks the folder correctly as source folder. Only experiencing an issue in the REPL.
Maybe no support for using alias in :extra-path
yet?I’ve specified dev,server here
If I replace
:server {:extra-paths [:clj-paths]}
with
:server {:extra-paths ["src/clj"]}
it works fine, so I guess I have specified the alias ok. The difference seems to be specifying extra-paths with a keyword rather than a stringThanks :thumbsup:
If it is replaced as-is, yes, but the tool probably treats it differently. According to https://clojure.org/reference/deps_and_cli, that’s the syntax for using alias names in paths. It works fine from CLI.