Fork me on GitHub
#cider
<
2019-01-29
>
tatut10:01:32

I made a PR to orchard so that `cider-browse-spec´ can expand ns-aliased keywords https://github.com/clojure-emacs/orchard/pull/42

Karol Wójcik20:01:48

Got a quick question about hot reloading functionality. I think that it still should be a part of clj-refactor. Why? 1. Clj refactor can use the hot reload functionality when adding the library so the user experience will be much more pleasant. 2. Hotreloading was a part of clj-refactor since the beginning so it should be still there 3. In order to make the user experience smooth I would have to copy and paste the existing functions from clj-refactor. (I mean those which touch adding dependencies) What is your opinion guys?

dpsutton20:01:43

i thought the discussion was whether it should go into CIDER or clj-refactor. None of those positions argue about where it should live, they just seem to argue that the feature should exist

Karol Wójcik20:01:30

The question is where the feature should land. Should I put it in clj-refactor?

Karol Wójcik21:01:01

@dpsutton Do you know how I can add the library with specific hash commit? I wanted to add tools.deps.alpha on jack in but the thing is that for instance leiningen does not allow hash commit as a version of dependency. What I plan to do is simply wrap the call to ’add-lib with emacs-lisp.

dpsutton21:01:01

no i haven't waded into that stuff

dpsutton21:01:08

i'm always fine with restarting my repl

enn21:01:39

@kwcharllie379 I'd argue for it going into CIDER. Hot-loading of dependencies is not really a refactoring task to me. (Along similar lines, I'd argue for separating the functionality of hot-loading a dependency in the running process from the functionality of updating projects.clj or deps.edn to add that dependency--the latter fits more with the spirit of clj-refactor, IMO. I would love to be able to hot-load dependencies without my project files being modified.

Karol Wójcik22:01:48

I see your point @enn. The case is that if I move the code to cider regarding the hot-load functionality I would then have to move a lot of functions from clj-refactor to cider as well.

Karol Wójcik22:01:57

I would rather avoid it for now