Bozhidar Batsov
Bozhidar Batsov
Same here. I planned to work on this myself, but never found the time. I still think that this is going to be an awesome addition to cljfmt and a...
I think you can simply use a parser to extract the metadata https://github.com/clojure/tools.analyzer Probably given the limited scope of this you can just use https://clojure.github.io/clojure/clojure.walk-api.html and simply look for the...
@vemv I always had this as some form of translation - it would just be nice to have `cljfmt` pick up and convert the metadata indent specs automatically to its...
To be honest - I'm not sure. I'd write this as: ``` (proxy [SimpleJavaFileObject] [(URI. path) JavaFileObject$Kind/SOURCE] (getCharContent [_] (slurp res))) ``` The other two options look pretty bad to...
> I'd write it like that as well in this particular case, but sometimes the first two arguments are too long to fit on one line, or else the user...
The proposed changes look good to me, although users might still have to add some middleware by themselves and then using the handler won't work. Probably it's better to show...
@tarsius I'm an `adoc-mode` user myself, so if you need more maintainers - count me it. I love AsciiDoc, but the support for Emacs can definitely use some improvements.
> What are the top priorities for you? Ideally I'd get the syntax highlighting to handle everything `markdown-mode` can - all the modern AsciiDoctor syntax, code blocks, etc. Some preview...
See https://github.com/emacsorphanage/adoc-mode
You should check modern modes like https://github.com/chrisbarrett/swift-mode and https://github.com/elixir-lang/emacs-elixir for ideas how to improve indentation overall. It's generally a good idea to leverage smie these days - https://www.gnu.org/software/emacs/manual/html_node/elisp/SMIE.html