This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-11-20
Channels
- # aleph (12)
- # announcements (7)
- # aws (6)
- # babashka (36)
- # beginners (161)
- # boot (1)
- # calva (6)
- # cider (21)
- # clj-kondo (13)
- # cljs-dev (28)
- # cljsrn (1)
- # clojars (3)
- # clojure (13)
- # clojure-colombia (1)
- # clojure-europe (10)
- # clojure-spec (12)
- # clojure-uk (47)
- # clojuredesign-podcast (2)
- # clojurescript (67)
- # datascript (8)
- # datomic (21)
- # duct (3)
- # emacs (6)
- # events (1)
- # fulcro (6)
- # graalvm (98)
- # jobs (1)
- # kaocha (18)
- # luminus (1)
- # malli (7)
- # off-topic (56)
- # pathom (5)
- # re-frame (18)
- # reagent (3)
- # reitit (9)
- # remote-jobs (3)
- # rewrite-clj (10)
- # ring (1)
- # shadow-cljs (155)
- # spacemacs (2)
- # sql (5)
- # tools-deps (27)
- # vim (86)
- # xtdb (2)
If I jump using cider-find-var
into an external file (for example if I jump to the definition of something in clojure.core
) cider is not connected to any repl as I am outside of the project, so I can't e.g. jump again from that file. Is there any way to keep the "cider context" ?
Oh I think I know why this happens, it might be because I changed lein cache repo (it's not ~/.m2
for this particular project)
Looks like a bug. When trying to comment a form that contains @
inside let - cider inserts a space between @
and the rest of the form
I’m running an unsession tomorrow at the conj to work on bugs/features in the orchard, and I was wondering if folks had recommendations for issues that could be improved in some fashion with only an hour’s worth of work.
I feel the cider-error-buffer popup become really slow after I update my cider package. anyone run into the same issue? I saw this issue https://github.com/clojure-emacs/cider/issues/2237 but the poster's problem solved by reinstall package.
anyone using jenv with cider? I would like to be able to switch to different jdk versions easily
I use jenv in the terminal which works nicely, but doesn't affect emacs/cider
ah looks like :java-cmd "/Users/acrotti/.jenv/shims/java"
in my lein_profiles.clj file works
so well at least it picks up the global jdk I've set up with jenv
ideally I'd just like to change it per project if needed
if you do (shell-command "which java")
it will say what emacs thinks is java. i suspect emacs is not aware of jenv?
yeah it's not
I changed the exec-path to add the shims directory but didn't help
the java-cmd trick worked though
I just used a symbolic link called current
that is set as part of the operating system path to java. Then I can just change the symbolic link to point to a different version. I am not changing the system path, so any newly run command will use the new version. I assume you would have to quit and restart the repl, but keep Emacs open.