This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-10-31
Channels
- # aleph (1)
- # announcements (2)
- # beginners (105)
- # braveandtrue (1)
- # cider (61)
- # clara (47)
- # cljdoc (29)
- # cljs-dev (5)
- # clojure (61)
- # clojure-austin (14)
- # clojure-brasil (1)
- # clojure-india (3)
- # clojure-italy (4)
- # clojure-mexico (1)
- # clojure-nl (2)
- # clojure-spec (37)
- # clojure-uk (95)
- # clojurescript (73)
- # cursive (12)
- # data-science (1)
- # datomic (26)
- # duct (10)
- # emacs (5)
- # fulcro (47)
- # hoplon (6)
- # hyperfiddle (3)
- # jobs-discuss (3)
- # kaocha (2)
- # leiningen (3)
- # nrepl (8)
- # off-topic (3)
- # onyx (2)
- # re-frame (31)
- # reitit (16)
- # shadow-cljs (36)
- # spacemacs (46)
- # specter (16)
- # tools-deps (13)
- # yada (22)
@michal Sorry about the broken URL. We didnโt figure out that removing the files from which the old site was built would nuke it. I assume it would just stay like it used to be. Maybe itโs possible to redirect it somehow. Weโll see about that.
When I try to dive into clj-http.cookies/cookie-store
, I found it is created by object (BasicCookieStore.)
. Then I use cider-doc
on it. But it's docstring is empty. I open the javadoc link in the popuped buffer. It opened wrong URL in browser. How can I check out doc for those Java class/objects easily in CIDER?
Hi, how can I automatically call a function (start my webapp) when the REPL is connected? ๐
I just upgraded to the latest version of Cider, still running Clojure 1.9, and the first time I enter an expression at the REPL, I get several dozen boxed math warnings emanating from fipp. What's going on and how do I stop these messages?
They are coming from a transitive dependency. Thereโs nothing I can do about those. They have to fixed upstream.
That makes sense, but why are the messages only appearing now after the upgrade if fipp itself hasn't changed?
I see the warning cider-cljs-lein-repl is obsolete (since 0.17); use 'cider-default-cljs-repl' instead
in my emacs *Messages*
but canโt find any mention of cider-cljs-lein-repl
in my config. Does anyone know what to do?
hmm looks like I probably need to set a custom repl type in cider-cljs-repl-types
@bozhidar You might want to rebuild cider-nrepl, I've pushed a fixed snapshot of Compliment that addresses the JDK10 issue
I use refactor-clj and namespace clean (cljr-clean-ns) feature. It works great but I always have to add manually the namespaces I've required but not used in the code (like namespace with clojure.spec model or namespace with mount states). Is it possible to mark those namespaces so they won't be removed in the clean up process?
(defcustom cljr-libspec-whitelist
'("^cljsns" "^slingshot.test" "^monger.joda-time" "^monger.json")
"List of regexes to match against libspec names which shouldn't be pruned.
This is useful when `clean-ns' should leave a libspec alone even
if it appears to be unused."
:group 'cljr
:type '(repeat string))
There's an Emacs Lisp function called setenv
. Not 100% sure if CIDER will pick up on that but it's worth a try.
(setenv "GOOGLE_APPLICATION_CREDENTIALS" "/home/user/Downloads/[FILE_NAME].json")
I think it should work, if it doesn't then you'll either have to set that env var before starting emacs, or customizing the command that CIDER runs to start Clojure
How can I make cider aware of :source-paths
? For me, C-x C-e
breaks when I set :source-paths
to something like src/clj
.
#!/bin/bash
export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/[FILE_NAME].json"
lein "[email protected]"