Bozhidar Batsov

Results 1758 comments of Bozhidar Batsov

I'll mention here that the conversation for nREPL improvements is taking place mostly here https://github.com/nrepl/nrepl/discussions/273 right now. As for this particular ticket - I'll take it upon myself to make...

> Well, this depends on the nREPL server. I implemented an nREPL server under the assumption that the client will only ask for ops that are supported, as described in...

Agreed. As an example - here's what I imagine the typical fix on CIDER's side would be like - https://github.com/clojure-emacs/cider/commit/7fc568809cb2afc1f42abc70066d3cb7029e54c7

Btw, it seems that CIDER does only 4 "tooling" evals in its entire codebase currently, which means the problem is simpler to solve than I imagined it'd be. 3 of...

It seems to me that `cider-connect` should work fine for them, as from what I got they are both native ClojureScript implementations that don't need the "upgrade magic" that's needed...

> After using the profiler, I determined that I can set clojure-use-backtracking-indent to nil and get a nice speedup of about 90%. I don't know what it does ("When non-nil,...

If someone is using fixed indentation (`always-indent`) then I think they can safely set this to `nil`, as they don't need indentation specs.

Yeah, that's expected. Otherwise we wouldn't need the complicated backtracking indent. :-) I'll add some note to the docs, so it's clearer.

Yeah, I understand this, but such forms are essentially composed of several definitions and can't be indented directly without extra work. At least not with the current state of the...