vote up 2 vote down star

Hi,

i was wondering how could we do it.i.e., search for 3 strings at a time in vi like i do :/xyz in command mode. how could i add 2 more strings so that the cursor will stop at a string which ever is found first among the three and if we press n it will stop at the string that is found second among the three.I suppose this would be very helpful in real time.

flag

78% accept rate

1 Answer

vote up 5 vote down check

Use the bar (|), escaped (i.e., with a backslash in front, so that it is not interpreted as a literal bar):

/string1\|string2\|string3

Note that the colon (:) is not necessary. In command mode, you can just type a slash (/); no need to type a colon first.

link|flag
Strange that you have to escape the pipe symbol, which is the opposite from standard RegExp. $-) – SanHolo Oct 24 at 10:14
@SanHolo: yes. This holds for e.g. parentheses and square brackets as well. I suppose the philosophy behind this is that most users will use the search functionality for "regular" (non-regexp) searches. – Stephan202 Oct 24 at 10:19
4  
See :help magic for more details on when you should escape special characters, and how you can change this. – Tim Oct 24 at 10:43

Your Answer

Get an OpenID
or

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