I have been using https://github.com/vim-scripts/increment.vim--Avadhanula for vim for years.
How could i leverage functionality similarly in emacs?
The idea be something like this:
given a list such as the following:
the_array[0]
the_array[0]
the_array[0]
I want to be able to select all the zeros, issue a command, and have the text replaced with this:
the_array[0]
the_array[1]
the_array[2]
I am using emacs evil-mode if it matters, hoping to do the equivelent of a block select for the region of numbers i want to increment.
Thanks,