Today I had to align a table at only the first multiple spaces on a line.

p.e.

<ScrollWheelDown>    move window     three lines     down  
<S-ScrollWheelDown>     move window    one page   down
<ScrollWheelUp>        move window      three lines up
<S-ScrollWheelUp>    move window   one page      up

I use Tabular plugin to align tables but I could not find a way how to find only the first occurrence of multiple spaces and do an align only there.

I don't know it either in VIM: What will be the regex if I only want to find the 3rd occurrence of a pattern on a line? Is the regex the same as using Tabular?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

The regex would be:

/\(.\{-}\zsPATTERN\)\{3}

So if, for example, you want to change the 3rd 'foo' to 'bar' on the following line:

lorem ifoopsum foo lor foor ipsum foo dolor foo
       ^1      ^2      ^3         ^4        ^5

run:

s/\(.\{-}\zsfoo\)\{3}/bar/

to get:

lorem ifoopsum foo lor barr ipsum foo dolor foo
       ^1      ^2      ^3=bar     ^4        ^5
link|improve this answer
Very nice use of \zs inside a \(...\) block. I didn't know that when repeating zs, only the last one was taken into account. Of course :help /\zs states it. – Benoit Mar 25 '11 at 12:42
Thanks Eelvex, I still have a little problem. The regex doesn't stop after it has found the 3rd 'foo'. It will change also the 6th 'foo' and the 9th 'foo'. How can i stop the regex after the 3rd 'foo'? – Remonn Mar 25 '11 at 15:57
@Remonn: Just request start of line (^) at the beginning: /^\(.\{-}... but is this really necessary? :s without g at the end would only replace the first occurrence of your third pattern. :) – Eelvex Mar 25 '11 at 16:46
That was quit simple. Thank you. – Remonn Mar 25 '11 at 17:03
feedback

I don't know if it fits your needs, but you can search that way :

  1. Place your cursor at the beginning line
  2. Type 3 / pattern Return

It place the cursor on the 3rd occurrence of the next matching line (highlighting all occurrences)

You can also macro :

qa+3nq

then @a to go to the next line 3rd occurence

link|improve this answer
not exactly because it searches only in one line the 3rd occurrence and in other lines the first occurrence. – Remonn Mar 24 '11 at 17:43
You can jump 3 by 3 with <kbd>3</kbd> <kbd>n</kbd> also. – M'vy Mar 24 '11 at 17:44
Maybe with a macro you can simplify the process. I suppose there is also a shortcut to go to beginning of next line but do not remember it. – M'vy Mar 24 '11 at 17:45
post just edited! – M'vy Mar 24 '11 at 17:49
(See also How do comment @replies work?) – Arjan Mar 24 '11 at 22:45
feedback

Try this:

:Tabularize /^.\{-}\S\s\{2,}

Yes, Tabularize uses Vim's regex, so the example on Eelvex's answer should work.

link|improve this answer
thank you too for your answer. – Remonn Mar 25 '11 at 11:22
Of course a plug-in is needed for this. – Benoit Mar 25 '11 at 12:42
feedback

Your Answer

 
or
required, but never shown

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