This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-04-30
Channels
- # admin-announcements (3)
- # arachne (8)
- # beginners (5)
- # boot (52)
- # braveandtrue (4)
- # cider (17)
- # cljsrn (1)
- # clojure (36)
- # clojure-dusseldorf (2)
- # clojure-india (1)
- # clojure-russia (30)
- # clojure-uk (1)
- # clojurebridge (1)
- # clojurescript (47)
- # clojutre (1)
- # component (1)
- # core-async (3)
- # cursive (5)
- # datascript (1)
- # datomic (4)
- # emacs (1)
- # error-message-catalog (62)
- # garden (3)
- # hoplon (16)
- # jobs (5)
- # luminus (11)
- # mount (1)
- # om (32)
- # onyx (17)
- # spacemacs (4)
- # untangled (20)
- # yada (4)
@xcthulhu: thanks for the advice, I tried adding the cljs path to :source-paths on lein root and moving my clojurescript files to the /src/ root but both don't seem to work.
Ah I got it. I forgot to remove the debugging stuff I tried to add in the spacemacs init setq-default cider-cljs-lein-repl stuff. Thanks for the help @plexus @xcthulhu!
Can anybody provide guidance on why I can’t jump to source when running over a remote nrepl? Works fine (from the same github repo and commit) running everything locally. Cider tells me “No source location”. This is running cider 0.12.0 and nrepl 0.2.12 on Clojure 1.8.0
Could anyone show me how to use "cider-debug-defun-at-point" on Clojure core code? I tried it on https://github.com/clojure/clojure/blob/clojure-1.8.0/src/clj/clojure/core.clj#L4259 and got these errors http://pastebin.com/656D99a0.
hey dudes, I’ve finally upgraded to 0.12.0 and am running some unit tests, and one of them’s throwing an exception. is there a way to show the stack trace?
@nonrecursive: in the test-results buffer, tab to the error then press "e". Docs: https://cider.readthedocs.io/en/latest/running_tests/#running-tests
@nonrecursive: or just click on the link in the test report buffer
@greenrecyclebin: some of the Clojure core functions just can't be debugged.
The debugger is written in Clojure, so you're going to get stack overflows if you try to debug some of the functions used by the debugger.
thanks!
@malabarba: well, actually the remote repl server is running via lein repl :headless
and the files are present both locally and remotely.