How to highlight all <DIV> </DIV> in Vim?

I use the latest Vim in Ubuntu and Vimrc from Vincent Driessen from nvie.com. How to highlight the entire section between a matching pair of div and / div? The DIV tag on the same line is highlighted when I am <the DIV tag, but I want to select the entire section to see if divs across the page are in turn aligned.

+6
source share
1 answer

Scroll to the original <div> , then press v a t .

+10
source

Source: https://habr.com/ru/post/912845/


All Articles