Martin Polden

Results 31 comments of Martin Polden

Looking at the API for Subliminal, it looks like `page_link` will either be a string or `None`: http://subliminal.readthedocs.org/en/latest/api/subtitle.html#subliminal.subtitle.Subtitle So I guess `None` needs to be handled in some way.

Client certificates seem to have better support in Emacs 27. I did the following to get `restclient` to talk to a host with a certificate: 1. Tell `network-stream` to look...

Clicking the notification works again for me after upgrading to macOS Monterey.

I'm experiencing this bug as well. I was wondering why ignored files were being added to the cache. After a quick look at the code, it looks like only ignores...

I can still reproduce this bug on Projectile version `20180118.745` from Melpa.

Closing for now. Properly supporting a Go API requires a concentrated effort.

Building on the workaround proposed in https://github.com/joaotavora/eglot/issues/188#issue-391815195, I ended up with this: ```elisp (defun mpolden/gfm-unescape-string (string) "Remove backslash-escape of punctuation characters in STRING." ;; https://github.github.com/gfm/#backslash-escapes (replace-regexp-in-string "[\\\\]\\([][!\"#$%&'()*+,./:;?@\\^_`{|}~-]\\)" "\\1" string)) (advice-add...

CLI itself shouldn't require a test package, but maybe the controller API does.

I created https://github.com/vespa-engine/vespa/issues/24907 to track this issue wrt. to Vespa CLI.

Is it primarily the feed client you're interested in? (`document` package: https://github.com/vespa-engine/vespa/tree/master/client/go/internal/vespa/document)