Alexei

Results 10 comments of Alexei

Yeah, I realise that the resulting event would be outside juspy ecosystem. Here's the issue: it doesn't't seem possible to use the javascript clipboard API on Safari outside a user...

I'm getting the same problem with neovim on a mac. After installing the plugin and running `:UpdateRemotePlugins` vim_pudb.py fails to get registered in `~/.local/share/nvim/rplugin.vim`.

Just hit a similar issue to above while running justly app behind nginx. Solution was to set up websocket proxying: ``` proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header...

Same error, and I've checked it all get's expanded correctly and there is a file at that url.

The following variant works, but requires loading data into array buffer: ``` async function loadDocument1() { // Working const viewer = new DjVu.Viewer(); viewer.render(document.getElementById('djvu-view')); const indexFileBuffer = await fetch('/file/{{fuid}}').then(r =>...

This is using the js files from https://djvu.js.org/downloads (DjVu.js 0.5.4, DjVu.js Viewer 0.10.0). Console reports ``` TypeError: invalid type format at DE (djvu_viewer.js:134:4404) at Op.loadDocumentByUrl (djvu_viewer.js:134:17798) at loadDocumentByUrl.next () at...

I guess it's also possible to add extra control characters: ``` (define (ketbra text) (apply format "|~a\\rangle\\langle ~a|" (string-split text "│")) ) ``` so that the following works (where "│"...

Ok, need something more sophisticated if the arguments can have nested expressions

Thanks for the responses! Here's something closer to what I had in mind: First a method to split lists at a marker (from https://codereview.stackexchange.com/a/87626) ``` (define (split-by lst x) (foldr...

@101scholar Did you find a solution to setting the foreground correctly?