Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can search word in vim with /word. How can I exclude searches for word1, word2 and only search for word.

share|improve this question

2 Answers

up vote 21 down vote accepted

like this:

/\<word\>

\< means beginning of a word, and \> means the end of a word,

Adding @Roe's comment:
VIM provides a shortcut for this. If you already have word on screen and you want to find other instances of it, you can put the cursor on the word and press '*' to search forward in the file or '#' to search backwards.

share|improve this answer
beaten by 19 seconds :) +1 – roe Jan 19 '09 at 19:52
placing your cursor over a word and pressing * (forward) or # (backward) is a shortcut – roe Jan 19 '09 at 19:53
yes, I tried to be fast :) – Nathan Fellman Jan 19 '09 at 19:53

I usually google my trusty vim cheat sheets whenever I go a long time without using it.

http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html http://www.tuxfiles.org/linuxhelp/vimcheat.html

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.