This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-11-10
Channels
- # asami (41)
- # babashka (24)
- # beginners (48)
- # calva (41)
- # cider (10)
- # clj-commons (20)
- # clj-kondo (2)
- # cljdoc (8)
- # clojure (131)
- # clojure-australia (4)
- # clojure-europe (17)
- # clojure-hungary (2)
- # clojure-india (2)
- # clojure-nl (3)
- # clojure-uk (1)
- # clojurescript (12)
- # community-development (6)
- # core-logic (4)
- # cursive (11)
- # datomic (22)
- # emacs (25)
- # events (1)
- # exercism (2)
- # fulcro (30)
- # helix (5)
- # honeysql (6)
- # hugsql (3)
- # integrant (12)
- # introduce-yourself (4)
- # lsp (5)
- # malli (5)
- # nextjournal (31)
- # off-topic (4)
- # pedestal (3)
- # portal (51)
- # reitit (33)
- # remote-jobs (1)
- # shadow-cljs (12)
- # sql (10)
- # vim (7)
- # xtdb (37)
Hey all. While using cljr-rename-file
I am getting an EOF exception, but it is not very informative. My question is how can I find out which is the file that is making it throw.
cljr--maybe-rethrow-error: clojure.lang.ExceptionInfo: [line 587, col 1] Unexpected EOF while reading item 85 of list, starting at line 151 and column 1. {:type :reader-exception, :ex-kind :eof, :file nil, :line 587, :col 1}
I tried running cider-load-all-project-ns
to see if something stood out, but everythig loads correctly.2.5.1
The 3.0.0 series makes these less likely because it analyzes/refactors far fewer irrelevant files :) Just today we released 3.1.0 If you update clj-refactor.el to latest (3.1.0 or $snapshot), you'll get an updated refactor-nrepl with it as well
Just as an update, it did work. Thanks @U45T93RA6
When I have clojure running and I change deps.edn (add deps) is there some easy way to pull stuff into the running program?
I believe that add-lib + running cider-nrepl 'standalone' (as opposed to cider-jack-in) should work https://github.com/practicalli/clojure-deps-edn/blob/157a08ac8712fd544727302f7669789addac48a8/deps.edn#L178-L185
Here is an accompanying guide to using add-libs to hot load libraries https://practical.li/clojure/alternative-tools/clojure-tools/hotload-libraries.html