Jelmer van Arnhem
Jelmer van Arnhem
I personally think that tracking all that and making sense of what will change when running `:earlier` or `:later` is more confusing than helpful. I'll keep this ticket open for...
I noticed this a while ago as well, but there seems to be no way to handle this currently. I should have made an issue for it back then. There...
Just to confirm, this will disable the built-in PDF viewer and download the file instead? Because that sounds more like a solution than a workaround to me actually, and I...
I have tested this workaround, and it doesn't work reliable, so I see no reason to add this. It's an Electron issue that you can't disable the PDF viewer, no...
There is actually ANOTHER electron bug that is affecting Vieb related to the pdf viewer: https://github.com/electron/electron/issues/26714 This results in the pdf not even being rendered at all in recent Vieb...
Besides `openLinkExternal` there is also `action.downloadLink`. I think Vieb already has enough options to download or open PDF externally, the problem is here is that there still exist a viewer...
For what it's worth, I gave the `:call` command an upgrade in [this commit](https://github.com/Jelmerro/Vieb/commit/592b4a667206c703d5c1d0a187f5ae768ed0b685). It now accepts any action, command or basically just any mapstring and it will execute it...
I understand your problem, but I don't like the proposed solution. This is fundamentally incompatible from how mappings are supposed to work in both Vim and Vieb. What you are...
#### General I could write a fair bit about it, but I think [the Vim docs](https://vimhelp.org/autocmd.txt.html) should be the main source of inspiration for implementing the autocmd command (and most...
You can find a list of supported webview events [here](https://www.electronjs.org/docs/api/webview-tag#dom-events). Vieb listens for them in `app/renderer/tabs.js`. Just search for something like `webview.addEventListener` and you'll find most of them. After the...