vimb icon indicating copy to clipboard operation
vimb copied to clipboard

Full support for contenteditable attribute

Open fanglingsu opened this issue 8 years ago • 5 comments

According to issue #237 there is no full support for the contenteditable attribute at the time.

  • Allow to focus contenteditable elements by hinting ;o and switch vimb to input mode.
  • Allow to use ;e hinting to open the text content in the editor and to write the content back to the element.
  • If the contenteditable element is still focused, allow CTRL-T to edit it's text content in editor.

fanglingsu avatar Oct 22 '15 21:10 fanglingsu

Special case of this is #396.

fanglingsu avatar Jun 14 '17 22:06 fanglingsu

This issue has been automatically marked as stale because it has not had activity within the last 60 days. It will be closed after 7 days if no further activity occurs. Thank you for your contributions.

stale[bot] avatar Oct 02 '18 21:10 stale[bot]

@fanglingsu I'm unable to use the debugger console (gF then go to 'console' tab), some keys (eg 't') are interpreted like in normal mode

console

Ctrl-T and ;e will open the external editor with the first input from the page, it doesn't seem possible to edit the debugger console input from the external editor.

Is there a fix or trick to be able to use the console?

AdrienLemaire avatar Feb 01 '20 07:02 AdrienLemaire

Solution: Detach into separate window

AdrienLemaire avatar Feb 03 '20 01:02 AdrienLemaire

@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 webkit2 the developer tools are a part of the webview. I think we could bypass the key processing logic if the developer tools are opened. But than we can not close them by pressing gF again or relaod the page by r. So it might be difficult to solve this issue.

fanglingsu avatar Feb 07 '20 21:02 fanglingsu