Shih-Ming Wang
Shih-Ming Wang
I am not sure. But probably the header of the script specifies some metadata such as the url regex the script applies?
Perhaps you can add a function called `passthroughkey` ```vim nmap j call passthroughkey("j", "https://site-that-need-to-pass-through") ``` Implementation of `passthroughkey` would then be something like: ```vim function! passthroughkey(key, site) if match(current_url, site)...
I think in addition to per-site pass-through. There should also be a global pass-through. Regarding implementation complexity, I think these could be set using list/dict, which is easier to parse....
> I would like the set command to remain true to Vim What does this mean? I thought vim also have options taking list/dict as argument. > I would probably...
I see. I recalled it wrong.
Out of focus means the document edit area component is not in focus. And that the focus is in some other component in the page. I can press tab to...
I see. But I would say that for google doc/slide/sheet these kind of sites, we could have some optimization to focus the edit port by default. As these sites have...
FYI, qutebrowser does behave like this, though I am not sure if they do such kind of optimization or there's some fundamental difference between vieb and qutebrowser. One other thing...
[netranger-diricon](https://github.com/ipod825/netranger-diricon) is an example plugin.
Thanks! I'll spend some time looking into you pull requests.