Carlo Sciolla
Carlo Sciolla
Pagination could possibly be done at the storage level, as otherwise all list queries would result in the whole collections being passed around. In this scenario, we could define a...
I experienced a similar issue with long keys destructuring (see [screencast](https://asciinema.org/a/gsudrvzoiwlZu8em2KjDIRrW7)): ```clojure (let [{:keys [one two three four five six seven eight nine] :as whole} bigstuff]) ``` Setting `clojure-align-separator` to...
So, it took me a while before coming back to this, sorry for the delay... Let me start with my mutual appreciation of the time you spent on `plantuml-mode`, not...
just checking, is the update to this library still on track to be released before March 31 2023, when Google will deprecate the "legacy" authentication method?
That's not currently supported. It would require a good amount of code to make that happen so that your preview is displayed inline in your org sources (e.g. properly handling...
good tip, thanks. I was actually looking into `ob-plantuml.el` myself. It's a good starting point for what we need to do here
I also had this issue trying to install 29.1 on Sonoma. Following [this comment](https://github.com/d12frosted/homebrew-emacs-plus/issues/554#issuecomment-1791730837) seems to do the trick: ``` brew reinstall gcc ```
I experienced the same issue when trying out [`lein-exec`](https://github.com/kumarshantanu/lein-exec) with the following script: ``` #!/bin/sh lein-exec (println "bogus") (doseq (map println (java.io.BufferedReader. *in*))) ``` The following command invocation doesn't print...
I'm also looking at the PR, the above should indeed work but I'm looking at a different angle: rather than manually adding the wrapper JAR I'd leave the task to...