Daniel Carl

Results 151 comments of Daniel Carl

@amarakon I think the easiert was would be to patch vimb. Not tested but removing the call to `update_title()` in https://github.com/fanglingsu/vimb/blob/abff254e142317e610fb91d7fed4c76d56f952c8/src/main.c#L1036-L1041 should avoid vimb to update the title. But maybe...

Special case of this is #396.

@AdrienLemaire Yes you can detach. I gave up using keyboard when the developer tools are open. At the time the key events of the webview are processed - and since...

As I know there was only one user who wanted this. If there are not other user who are interested in this I'd like to throw away this feature. I...

You are right, buffers are great. I've thought about buffers in the past too. But I saw some possible issues with the buffers. And because no one other ask for...

@JJK96 I've already thought about something like this to allow the user to configure seomthing like the `set statusline` in vim. How does the keepass auto-type work? And how does...

Sounds interesting! At the time you could change the title by hand (`:e! document.title="The new title"`), until we have a generic solution, so that the keepass can pick this up....

Oh, this is even better. If you have vimb compiles with autocmd support, following should help you to do this automatically. ``` augroup titlechange autocmd LoadFinished * e! document.title+=' '+document.URL;...

If LoadCommitted work, fine. But the LoadCommited might be fired before the DOM and the title are available.

@marek-lach Compiling vimb again could help in some cases. In the moste cases I've seen in the past with webkit, disabling JavaScript helped a lot. But the new modern pagers...