This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-07-07
Channels
- # bangalore-clj (3)
- # beginners (103)
- # boot (13)
- # cider (16)
- # cljs-dev (192)
- # cljsrn (44)
- # clojure (147)
- # clojure-dev (1)
- # clojure-italy (79)
- # clojure-norway (1)
- # clojure-russia (9)
- # clojure-spec (4)
- # clojure-uk (34)
- # clojurescript (65)
- # core-async (1)
- # core-logic (2)
- # core-typed (5)
- # cursive (1)
- # datascript (9)
- # datomic (26)
- # emacs (8)
- # garden (1)
- # hoplon (11)
- # humor (1)
- # jobs (1)
- # jobs-discuss (8)
- # jobs-rus (3)
- # leiningen (1)
- # luminus (1)
- # lumo (1)
- # mount (6)
- # off-topic (16)
- # om (10)
- # om-next (1)
- # onyx (10)
- # parinfer (10)
- # pedestal (25)
- # re-frame (27)
- # reagent (3)
- # rum (47)
- # uncomplicate (1)
- # unrepl (34)
- # untangled (120)
- # vim (58)
How do I set cider to prefer build.boot over project.clj when both exist? I need to be lein compatible for someone else using cursive, but I want things like cljr-add-project-dependency to work with the boot file.
> "Allow choosing a build system when there are many. > When there are artifacts from multiple build systems (\"lein\", \"boot\", > \"gradle\") the user is prompted to select one of them. When non-nil, this> > variable will suppress this behavior and will select whatever build system > is indicated by the variable if present. Note, this is only when CIDER > cannot decide which of many build systems to use and will never override a > command when there is no ambiguity."
and the code in cider-project-type
:
(cond ((and multiple-project-choices
(member cider-preferred-build-tool choices))
cider-preferred-build-tool)
Is there a way to produce html documentation from elisp's docstrings?
@dpsutton cider-preferred-build-tool
only seems to affect jack-in, adding a dependency with cljr-add-project-dependency
still results in the dependency vector appearing in project.clj regardless.
@sooheon Yep. Fixing this should be trivial, though. Just send a patch to cljr
to honour the value of the defcustom. //cc @benedek
https://github.com/clojure-emacs/cider-nrepl/issues/345 @arrdem any idea on the root cause of this? I'll tackle it if you can point me at either the bad inputs or what is different in jaunt that might cause it.
been having all sorts of trouble using the debugger, think i've boiled it down to this:
(ns other)
(ns scratch)
(alias 'o 'other)
#dbg
(defn debugs
[r]
(inc (:n r)))
#dbg
(defn debugs-2
[r]
(inc (:other/n r)))
#dbg
(defn no-debug
[r]
(inc (::o/n r)))
(debugs {:n 1})
(debugs-2 {::o/n 1})
(no-debug {::o/n 1})
Had in confirmed by a colleague as well, so not just me! 🙂