-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Link-hint mode command options (incl. hover, focus) #3097
Conversation
This adds: map X LinkHints.activateMode action=hover map X LinkHints.activateMode action=focus map X LinkHints.activateMode action=copy-text For "hover", `<Escape>` generates the `mouseout` event.
In order to make Doc: https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/relatedTarget |
Thanks, @gdh1995. So, setting Ideally, if you could give me a commit that I can cherry pick, then that would be perfect. |
I have no enough rest time today, and if you wait a commit from me, it will be in 8 hours. BTW, according to https://developer.mozilla.org/en-US/docs/Web/Events/mouseout , Line 282 in d128370
Code about this in my project: |
By the way, I haven't understood changes about |
I've tested on http://jsfiddle.net/wUNhU/81/ , and after I hovered Explain: The last A plain idea: rework HoverMode into:
|
Are there any reasons why this PR hasn't been merged? I'm interested in using the feature set and would love to offer any fixes that may be required. |
Just bumping @cadillion's comment—is there anything preventing this from merging? |
any movement on this? |
I would love this feature :) |
Great work @smblott-github! Works great. This functionality is pretty undiscoverable -- we need a better way to document command parameters (e.g. #2827). For now I've documented it in our wiki, and will link to this wiki entry in the release notes when this hits the store. |
I see the option to copy the link text with Is there an option to copy the link URL? |
@eyalev There has been a command named |
This adds:
For "hover",
<Escape>
generates themouseout
event.