Bozhidar Batsov
Bozhidar Batsov
I'm curious if there's any reason not to support directly `eldoc-mode` in `merlin-mode`, as from what I gather from https://github.com/Khady/merlin-eldoc all the necessary information is available there. What's the recommended...
When `jemoji` is enabled emojis are always displayed on a line by themselves. You can see https://emacsredux.com/blog/2018/09/29/super-save-0-dot-3/ as an example. This works just fine with some other them - e.g....
I get this warning every time I start `bundle exec jekyll serve`. Everything seems to work fine, but I thought I should probably bring this to your attention.
Such a test would be very useful on CI to prevent from silly mistakes like the one in #1279 creeping in. Basically we need to: * clone Prelude * start...
For JavaDoc to work properly for third-party libraries we need to register their JavaDoc like this: ``` (javadoc/add-remote-javadoc "com.amazonaws." "http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/") (javadoc/add-remote-javadoc "org.apache.kafka." "https://kafka.apache.org/090/javadoc/") ``` For the sake of convenience we...
As you can't encode false/nil with bencode you're actually supposed not to send such flags, but I guess people do it from time to time by mistake. It'd be nice...
This [recent convo](https://github.com/BetterThanTomorrow/calva/issues/198) with @PEZ reminded that we don't check the REPL type before loading the REPL utils and they are basically the Clojure ones all the time. That should...
Not sure whether to call this a bug report or an improvement. Personally I find it annoying that when I'm done debugging something the point stays in the source file...
That's a relatively small bug, but it's also kind of annoying that the special font-locking never goes away from functions that were already evaluated in the REPL. ## Expected behavior...
One big pain when working with nREPL today is that in Emacs a `nil` and an empty list are the same thing. This means that nils and empty lists get...