Recursive search inside files in vim
I just knew about the :vimgrep command inside vim, it is used to search a pattern in a filetree, us it like:
vimgrep /$.ajax/ **/*.html
then, you can check all the files that resulted of that command with:
:copen
BTW: vim is *awesome*!