Increment numbers with submatch
:[range]s/\d\+/\=submatch(0) + 1/ will increment the first number in each line within the range.
:[range]s/\d\+$/\=submatch(0) + 1/ will increment a number if it is at the end of a line.
:[range]s/\d\+/\=submatch(0) + 1/ will increment the first number in each line within the range.
:[range]s/\d\+$/\=submatch(0) + 1/ will increment a number if it is at the end of a line.