Lauri Siltanen
Lauri Siltanen
That works pretty well. Apparently `amazonica.aws.sqs/arn`does not support this and that is needed for subscribing.
~~Sorry to hijack this but what is that `describe` function?~~ Nevermind, `compojure.api.sweet/describe`
This ultimately boils down to the difference in `java.util.regex.Matcher` methods `find` and `matches` (`clojure.core/re-find`vs. `clojure.core/re-matches`). ```clojure (let [pattern (Pattern/compile "^thing$") matcher (.matcher pattern "thing\n")] (.matches matcher)) => false (let [pattern...
I didn't even know about `\z`. I think that's good enough for me.
The `lein change` proposal is lackluster at best. If I know the entire path AND version I want, I can just add them to the file. I don't want to...
I see from the code itself as well as the README that you need to have `com.gfredericks/test.chuck` as dependency to enable regex generation. Perhaps the error message could state this...
> @lasiltan what editor your are using? > that is supposed to work on emacs, vscode and most editors I know I am using nvim (LazyVim)
> @lasiltan I believe nvim is the only client which uses clojure-lsp config `dependency-scheme` as `zip`and not `jar`, so it might be related to that, you can try changing it...