up vote 5 down vote favorite
1
share [g+] share [fb]

In normal mode (in vim) if the cursor is on a number, hitting Ctrl-A increments the number by 1. Now I want to do the same thing, but from the commandline. Specifically, I want to go to certain lines whose first character is a number, and increment it. i.e. I want to run the following command:

:g/searchString/ Ctrl-A

I tried to store Ctrl-A in a macro (say a), and using :g/searchString/ @a, but I get an error E492: Not an editor command ^A. Any suggestions?

Thanks! Gaurav

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

You have to use normal to execute normal mode commands in command mode:

:g/searchString/ normal ^A

Note that you have to press Ctrl-VCtrl-A to get the ^A character.

link|improve this answer
Didn't know this! Thanks a lot. – gveda Jan 14 '10 at 4:46
Been using vim for years and never came across "normal" -- kool – James Anderson Jan 14 '10 at 4:52
@James: Beauty of the unknown :) Vim surprises like no other software! – Vijay Dev Jan 14 '10 at 8:59
1  
Try the dark corners of vim question for discovering more of the unknown: stackoverflow.com/questions/726894/… – pydave Feb 23 '11 at 19:17
feedback

As well as the :g//normal trick posted by CMS, if you need to do this with a more complicated search than just finding a number at the start of the line, you can do something like this:

:%s/^prefix pattern\zs\d\+\zepostfix pattern/\=(submatch(0)+1)

By way of explanation:

:%s/X/Y            " Replace X with Y on all lines in a file
" Where X is a regexp:
^                  " Start of line (optional)
prefix pattern     " Exactly what it says: find this before the number
\zs                " Make the match start here
\d\+               " One or more digits
\ze                " Make the match end here
postfix pattern    " Something to check for after the number (optional)

" Y is:
\=                 " Make the output the result of the following expression
(
    submatch(0)    " The complete match (which, because of \zs and \ze, is whatever was matched by \d\+)
    + 1            " Add one to the existing number
)
link|improve this answer
feedback

i am sure you can do that with vim on the command line. But here's an alternative,

$ cat file
one
2two
three

$ awk '/two/{x=substr($0,1,1);x++;$0=x substr($0,2)}1' file #search for "two" and increment
one
3two
three
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.