In vim, you can increase (decrease) a numeric digit on or after the cursor by pressing
NUMBER<ctrl-a> to add NUMBER to the digit (NUMBER<ctrl-x> to substract NUMBER from the digit)
If you only increase (decrease) by one, you do not need to specify NUMBER. In your case, I would use a simple macro for this:
qaf<<ctrl-a>q 100<altgr-q>a
Here is a brief explanation of the macro: it uses the find (f) command to place the cursor on the opening <bracket. There is no need to position the cursor on a digit. When you click the number on the cursor or the nearest number after the cursor increases.
If you want an even shorter series of commands, you can position your ONCE cursor by pressing f< , increase the number with ctrl-a , and then just press ;. several times ;. . Team repeats the last cursor move, that is, the find command. Team repeats the last text change command.
Refer to this link for more information or use the built-in documentation: h: ctrl-a .
el_tenedor
source share