We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
OR: Jump between HTML tags with just vim
vat + Esc to get to the ending tag.
vat + Esc
vato + Esc to get to the starting tag.
vato + Esc
After vat you can also press o to jump back and forth between the start and the end.
vat
o
Seems like matchit plugin will do the same by allowing you to jump with %
https://github.com/vim/vim/tree/master/runtime/pack/dist/opt/matchit
I'd recommend using matchup these days, it's a modern replacement for matchit.
https://github.com/andymass/vim-matchup
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Choice1: only use raw features of VIM
vat + Esc
to get to the ending tag.vato + Esc
to get to the starting tag.After
vat
you can also presso
to jump back and forth between the start and the end.Choice2: use plugins
matchit
Seems like matchit plugin will do the same by allowing you to jump with %
https://github.com/vim/vim/tree/master/runtime/pack/dist/opt/matchit
vim-matchup
I'd recommend using matchup these days, it's a modern replacement for matchit.
https://github.com/andymass/vim-matchup
The text was updated successfully, but these errors were encountered: