Daily PHP WTF?
What does the following code print?
var_dump(strpos(’Line 1763′, 76));
What does the following code print?
var_dump(strpos(’Line 1763′, 76));
:vimgrep /pattern/ *.php
:copen
This will search for pattern in all *.php files in current directory and open up a result window, which you can use to navigate to all the occurences.
It can do a lot more: http://vim.wikia.com/wiki/VimTip1543