Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

3 Answers

up vote 14 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.

share|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

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
)
share|improve this answer
Very helpful! And I like how you explained it too. Thank you. – romar Mar 28 at 8:45

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
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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