Hi i'm finding the simplest way to search in vim, i don't have anything on my workflow yet, only the / command. Currently i'm using this line
map <F3> :execute "vimgrep /" . expand("<cword>") . "/j **" <Bar> cw<CR>
On my .vimrc so i put the cursor on the word, hit F3 and it searches for that word on the current dir and subdirs, i wish i could change the <cword> for the contents of the current visual block and use grep instead, because vimgrep is too slow the problem is grep doesnt output to the quick fix window. Any ideas on doing searches with the content of the current visual block? Or redirecting the ouput of grep to the quick fix list?