You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to jump to the next header on a page? For example, I am reading a blog index page, and I want to jump to the next entry. Can I program a shortcut to jump to the next <h1>, <h2>, <h3>, etc. element?
The text was updated successfully, but these errors were encountered:
I also think it would be very useful option to have, e.g. to skim through long wikipedia articles. Vim has ]] to jump to new section, but it is used for something different in vimium. Please reconsider opening this issue. :)
gdh1995
added a commit
to gdh1995/vimium-c
that referenced
this issue
Apr 25, 2021
now support:
```
map <f6> LinkHints.click direct="element" match="h1,h2" directOptions={"offset":"cur","index":"count"}
```
For philc/vimium#595
====
If `mode="focus"`, then always set `currentScrolling`, just in case:
* the target element has been focused before
* a user action / code causes its "previous element" gets "activated", but not focused
* then use `LinkHints.click` to (re-)focus the target
Then the old code would cause a dead loop even when`{"offset":"cur","index":"count"}`,
if `map <f6> LinkHints.click mode="focus" direct="element" dO={...}`
Is there a way to jump to the next header on a page? For example, I am reading a blog index page, and I want to jump to the next entry. Can I program a shortcut to jump to the next
<h1>
,<h2>
,<h3>
, etc. element?The text was updated successfully, but these errors were encountered: