Fork me on GitHub
#cider
<
2021-03-29
>
bozhidar07:03:30

Might also be bad interaction between several packages. I'd this without clj-refactor.el, although it has been mostly dormant for years now and I don't remember when was the last time something related to the jack-in deps changed there.

bozhidar07:03:48

Still - fewer packages are always better when debugging something in Emacs. 😄

bozhidar07:03:20

Here's a classic example from the other day - https://github.com/clojure-emacs/cider/issues/2995

🙈 3
bozhidar07:03:35

> Very weird bug. It turns out that loading dircolors.el breaks cider. I solved the problem by removing it.

oxalorg (Mitesh)16:03:35

Thanks I'll try to debug this more, but since this happens so rarely it's hard to remove packages to check which is the culprit! 🙈

David Pham10:03:57

Is there a support for tap> with cider? or something to navigate between cider-results over time?

pinkfrog14:03:25

I am using cider-connect-cljs. In the cider-repl react/xxx buffer, when I run (js/alert “foobar”) indeed there would be an alert popping up in the app.

pinkfrog14:03:51

However, emacs mode line shows cider not connected. and cider-sessions returns: No cljs REPLs in current session “react/rn-rf-shadow:localhost:53969”

pinkfrog14:03:24

The remote repl is run with: shadow watch :app . I guess I have to add some cider-nrepl stuff.

pinkfrog15:03:53

Yup. Problem solved.

pinkfrog15:03:28

Say I imported with: (require ’[“react-native” :as rn]). Is it possible to jump to definition of rn/View ?

vemv15:03:58

silly q, when you cider-connect how much time does it take in your computer? For me its something like 2s, it's acceptable but it makes me twitch. It sounds like a job that could be easily instantaneous Might be specific to my emacs though

bozhidar17:03:22

Haven't tried it in a while, but it should be almost instantaneous. There's a bit of a message exchange after the connect itself that might be causing this delay for you. You'll have to debug this.

vemv17:03:24

Yeah it was instantaneous and specific to my emacs Sorry for the noise!

bozhidar20:03:17

No worries!

dpsutton15:03:48

If you m-x nrepl-toggle-message-logging you can see the messages going back and forth with timestamps i believe. Might help you locate where the slowdown is. My quick guess is its the namespace tracker sending along all of the var information

vemv15:03:23

that's handy, thanks!