Tip23: Prefer Operators to Visual Commands Where Possible
January 12, 2021 ยท View on GitHub
note: Visual mode may be more intuitive than Vim's Normal mode of operation, but it has a weakness: it doesn't always play well with the dot command.

vit
select the inner contents of a tag
itcommand is a special kind of motion called a text object.
U
converts the selected characters to uppercase
Running j.:

Tip:
The Visual mode
Ucommand has a Normal mode equivalent:gU{motion}
Discussion
vitUcan be considered as two separate commands:vitto make a selection andUto transform the selection.gUitcan be considered as a single command comprise of a operatorgUand a motionit.
