This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-10-05
Channels
- # aleph (190)
- # bangalore-clj (4)
- # beginners (31)
- # boot (127)
- # braid-chat (2)
- # cider (2)
- # cljs-dev (79)
- # cljsrn (7)
- # clojure (81)
- # clojure-dev (1)
- # clojure-greece (40)
- # clojure-italy (3)
- # clojure-korea (8)
- # clojure-new-zealand (5)
- # clojure-russia (5)
- # clojure-spec (87)
- # clojure-uk (13)
- # clojurescript (50)
- # cloverage (10)
- # component (4)
- # core-async (37)
- # cursive (26)
- # datascript (20)
- # datomic (29)
- # editors (2)
- # emacs (12)
- # hoplon (63)
- # jobs (2)
- # lein-figwheel (1)
- # leiningen (17)
- # liberator (2)
- # off-topic (19)
- # om (31)
- # onyx (9)
- # pedestal (4)
- # proton (1)
- # re-frame (22)
- # reagent (13)
- # ring (1)
- # ring-swagger (9)
- # spacemacs (5)
- # specter (4)
- # untangled (24)
- # vim (29)
is it possible to show the test results in the REPL instead of in a popup when you hover the line with failed tests?
I was thinking of creating a REPL command, but can you use parameters in the command (like e.g. the namespace of the file from which you are calling the command)?
this is embarrassing , but I get cljs.user=> No nREPL ack received
on fresh lein new figwheel
and following https://github.com/bhauman/lein-figwheel/wiki/Running-figwheel-in-a-Cursive-Clojure-REPL
@misha: You get it all working?
yes, that "omg" message is the solution : ), thanks @shaun-mahood
I figured, but I've found it a bit tricky to get working (even after doing it a few dozen times) depending on which template I started with, as the instructions are a little bit outdated. Glad it's working.
Is anyone else's mouse control getting kind of squirrelly after upgrading to macOS Sierra? I keep accidentally dragging and dropping text selections, it's driving me slightly crazy
But I also just moved to a new desk, so I'm not sure it's really upgrade related
Yeah, there is a non-zero chance of PEBKAC
reminds me of when my cursor started randomly spewing characters towards the end of the day. my keyboard is made of optical switches that were triggered when the sun hit at a certain angle =)
we have a project with sub modules that we keep in sync with the same version. to avoid changing version in multiple project.clj
files we simply defined a VERSION file at the root and symlinked it in each sub module. Each sub module project.clj
reads this, eg:
(def +version+ (slurp "VERSION"))
(defproject foo +version+
This was working fine until the latest upgrade and now the Lein refresh in Cursive gives a FileNotFoundException for the slurp on the VERSION file. Any ideas on why this might be the case? I'm able to run the slurp in the REPL. Or any suggestions for more easily/cleanly managing versions across multiple submodules?@manderson Right, it looks like something got broken with the managed dependencies support, see: https://github.com/cursive-ide/cursive/issues/1551 filed by darwin
Holy cow @spieden, that would drive me completely insane