>Consider this: I'm editing the HTML:

>(c)<h1>Headline</h1>

>My cursor is denoted by (c). How can I most quickly jump to the start
>of the "Headline" word?

>Pressing w or e isn't any good, I still have to press at least three
>times. Not nice, almost as bad as cursor keys.

Dunno how arbitrary your input is or is likely to be (eg, what about
"<h1>Fooey</h1>" or "<p class='head1'>Headline</p>", etc., so can't be
*that* specific.

Rolling forward 4 chars:

        4<space>
        4l

Skip to closing '>' (and 'a'ppend instead of 'i'nsert):

        f>

Skip to fixed 'H'

        fH

Skip to 3rd word:

        3w

etc.

Lotta ways to do the same thing...

Reply via email to