It is possible to have an increasable counter using substitute with an
expression feature (see :help sub-replace-\=). Since the \= construct
allows only expressions, the :let command is forbidden to use, and
therefore a variable could not be set the usual way. However, there is
a simple trick to change the value of a variable in expression if that
variable is a list or a dictionary. In that case, its contents could be
modified by the map() function. In such a manner, substitution for the case
described in the question would look as follows.1
:let n=[0] | %s/Id="F"/\='Id="'.map(n,'v:val+1')[0].'"'/g
Or better,2
:let n=[0] | %s/Id="\zsF\ze"/\=map(n,'v:val+1')/g
This short one-liner completely solves the issue.
For frequent replacements such as the above one, one can define an auxiliary
function
function! Inc(x)
let a:x[0] += 1
return a:x[0]
endfunction
and make substitution commands even shorter,
:%s/Id="\zsF\ze"/\=Inc(n)/g
1 The tricky part here is in the substitute part of the
replacement. Since it starts with \= the rest of it is interpreted as an
expression by Vim. Thus, 'Id="'.map(n, 'v:val+1').'"' is an ordinary
expression. Here a string literal 'Id="' is concatenated (using the .
operator) with return value of the function call map(n, 'v:val+1'), and with
another string, '"'. Function map expects two arguments: a list (as in
this case) or a dictionary, and a string containing expression that should be
evaluated for each of the items in the given list or dictionary. Special
variable v:val denotes an individual list item. So the 'v:val+1' string
will be evaluated to a list item increased by one.
2 The \zs and \ze pattern atoms are used to set the start and
the end of the pattern to replace, respectively (see :help /\zs and :help
/\ze). That way the whole search part of the substitute command is matched,
but only the part between \zs and \ze is replaced. This avoids clumsy
concatenations in the substitute expression.