Roman Rudakov
Roman Rudakov
> @rrudakov I think it's a bit too early for this, given that `clojure-ts-mode` requires some more work before we can consider it feature-complete. I think it could help to...
I can also reproduce the issue. @vemv, here's a stacktrace ``` 1. Unhandled java.lang.NullPointerException Cannot invoke "java.lang.Thread.stop()" debug.clj: 141 cider.nrepl.middleware.debug/abort! debug.clj: 134 cider.nrepl.middleware.debug/abort! debug.clj: 389 cider.nrepl.middleware.debug/read-debug-command debug.clj: 314 cider.nrepl.middleware.debug/read-debug-command debug.clj:...
Oleksandr Yakushev ***@***.***> writes: > I can confirm that the issue is fixed in the latest CIDER, @rrudakov > please check. Yes, the problem is fixed. Thanks a lot! The...
Hi @vemv. This PR is not related to elisp or emacs. I want to start nrepl outside of emacs and connect to it using `cider-connect` (I followed [this](https://github.com/clojure-emacs/enrich-classpath/tree/master?tab=readme-ov-file#emacs-cider-connect) manual). The...
A bit more details. I have the following alias in `~/.clojure/deps.edn`: ```clojure :nREPL {:extra-deps {com.kohlschutter.junixsocket/junixsocket-common {:mvn/version "2.9.0"} com.kohlschutter.junixsocket/junixsocket-native-common {:mvn/version "2.9.0"} nrepl/nrepl {:mvn/version "1.1.1"} cider/cider-nrepl {:mvn/version "0.45.0"} refactor-nrepl/refactor-nrepl {:mvn/version "3.9.1"}} :main-opts...
vemv ***@***.***> writes: > Would it be valid if deps.edn specified the following? > > ``` > :main-opts ["-M" "-m" "nrepl.cmdline" > ``` No, I've tried. In this case I...
> So `-M` is expected - are you passing it? Does the code strip it later? Yes. My Makefile: ```make .PHONY: enrich-nrepl nrepl HOME=$(shell echo $$HOME) HERE=$(shell echo $$PWD) .DEFAULT_GOAL...
vemv ***@***.***> writes: > I'll give it another review during the week. > Sounds good. > Perhaps you can contribute another unit test for the -A behavior? If > the...
> [@rrudakov](https://github.com/rrudakov) Perhaps you can look into this? I think the first step would be to port `clojure-align` function to `clojure-ts-mode`, which probably can be just copied. It uses built-in...
> [@rrudakov](https://github.com/rrudakov) Perhaps we can apply your learnings from the `markdown-inline` work here? I think the biggest issue here is to find a proper grammar. The grammar mentioned in the...