-
-
Notifications
You must be signed in to change notification settings - Fork 645
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Making CIDER more language agnostic? (decoupling Clojure assumptions from CIDER's nREPL client) #2848
Comments
That's one of my favourite topics these days, so let me add a couple of thoughts here.
Yeah, that's a pretty accurate description of the situation and obviously I'm to blame about the current state of affairs. When I started working on CIDER my only focus was implementing a Clojure programming environment, so I didn't really think much about the possibility of going beyond Clojure. Frankly, at the time I didn't even realize the potential of nREPL as language-agnostic protocol. Only when I eventually assumed the maintenance of nREPL a couple of years ago I saw the bigger picture and it dawned me that the nREPL protocol could be almost as important as LSP (at least for languages that are compatible with the overall idea). Lately I've been spending more time documenting the nREPL protocol and promoting it as a Clojure-agnostic solution, but my progress has been fairly slow, as CIDER and nREPL obviously don't have the backing of Microsoft behind them. :-)
That is certainly my dream.
That's also something I've been working about. There's actually even an nREPL issue on the subject - nrepl/nrepl#181 We first need the nREPL servers to be able to communicate to the clients what's the runtime we're deal with, so the clients can act on this information. Alternatively we can have users specify explicitly those things (e.g. when doing
Well, I'm not so sure about "all", as that's quite ambitious, but I'd definitely love to see CIDER supporting more programming languages than Clojure. Any help in this direction would be most welcome! Recently, Conjure (nREPL client for vim) showed that nREPL is a viable path in this direction, as it now it supports both Clojure and Fennel and plans to add support for Racket as well. |
No worries, it was an unforseen issue. Thanks for everything you've done for CIDER and nREPL. Here are various actionable issues I've been thinking about. Let me know if any of them sound effective.
|
For the moment I made an attempt at refactoring CIDER to support different runtimes, alongside related projects, to embed an nREPL written in Lua. So far it seems to work pretty well. https://github.com/Ruin0x11/cider/tree/capability-gating |
No arguments from me.
That might be redundant if clients simply probe the capabilities of the server. There's also the question what versions to use for the protocol. Would they be the versions from the reference implementation or something different?
Just a small remark - there's no such thing as generic runtime. :-) It's always some specific runtime.
That's an overkill in many cases, so you'd rather just need to dispatch different code from the client for different runtimes.
What would be the purpose of this? After all clients normally don't care where an op is coming from as long as they know how to handle it.
I think we already have plenty of those, but judging from your next comment I think you saw this as well. |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
It feels like there is a gap for "interactive program exploration" that is only serviced very well in the Clojure ecosystem, like there now is for IDE features (Language Server Protocol) and debugging (Debug Adapter Protocol).
nREPL could be described as a language-agnostic spec, but in practice the implementations of nREPL clients almost always assume Clojure is being used. The documentation on the built-in operations and passed data types isn't as detailed as that for LSP, and the Clojure-specific operations are scattered throughout
cider
's source code without detailed documentation.I have tried other nREPL clients but find they're missing features I want that
cider
does have, like module reloading, that I've implemented on the server side. I ended up having to write a totally separate REPL protocol and client code for one of my games to add the missing features. It worked leaps and bounds better than print debugging and I find that I can't go back to programming without it, but when I wanted to add it to a different project and hack in more program-specific features, I wondered why I couldn't just use nREPL as easily as I could as with my editor and an LSP server.In contrast with LSP, which lets you pair any client with any server with the expectation that things will just work, you have to be careful not to choose an nREPL client/server that is missing features or assumes Clojure is being used.
What I would like is to be able to take
cider
and use it with an nREPL server in a language besides Clojure and not have to worry about incompatibilities. I understand this issue might be more of a standardization/onboarding issue than a programming one, but work on it could be done one step at a time. For example, some refactoring could be done oncider
's nREPL client code to put Clojure-specific parts behind capabilities (as with LSP), such thatcider
will not blow up so long as the server doesn't specify that certain Clojure-specific features are available. And for earliernREPL
versions,cider
could just fall back gracefully to the previous behavior and assume Clojure is being used, if it doesn't support the server capabilities feature.Also, I have made an attempt in the past at writing a completely new protocol just for connecting to a remote REPL in a standardized, language-agnostic way, as with LSP and DAP, but found that doing so from scratch would take a very long time, and I wondered why not just leveraging nREPL was off-limits.
Would there any interest in making
cider
more generic across all programming languages?The text was updated successfully, but these errors were encountered: