sponsor Vim development Vim logo Vim Book Ad

intermediate Tip #799: Searching for files

 tip karma   Rating 1/1, Viewed by 393 

created:   October 3, 2004 2:46      complexity:   intermediate
author:   elz      as of Vim:   5.7

You can add the following to you .vimrc file:

" find files
fun! FindFiles()
  let $filename =  input("Enter file name to find: ")
  let $error_file = $HOME."/.findfile.output"
  silent! exe "!find . -iname \"".$filename."\" \| xargs file \| perl -pe 's/:/:1:/' > ".$error_file
  cfile $error_file
  copen
  redraw!
endfun
nmap \f :call FindFiles()<CR>

Then, when in normal mode, type "\f" (or any other mapping that you prefer). This will give a prompt for a file name pattern to search for. Then, all the file names that match this pattern (under the current directory) will be displayed in the quich fix window, along with a description of each of one of them.

Notice, the search is done in a recursive manner. It is case insensitive, and you can use wildcards. If you want to use a regular expression, you can call "find" with the "-regex" or "-iregex" flags.

Background:
The function uses some standard gnu *nix utitlities: find, file.
You also need perl to be installed.

 rate this tip  Life Changing Helpful Unfulfilling 

<<Split current window and search for word under cursor in new window | Sorting lines in a file based on the number of words in each line >>

Additional Notes

Anonymous, October 3, 2004 9:41
I made the following minor modifications to your tip in order to get rid of the dependency on perl and to make it independent from the current errorformat.

fun! FindFiles(filename)
  let error_file = $HOME."/.findfile.output"
  silent exe "!find . -iname '".a:filename."' \| xargs file > ".error_file
  let errorformat=&errorformat;
  let winNr = winnr()
  setlocal errorformat=%f:\ %m
  exe "cfile ". error_file
  copen
  let cwinNr = winnr()
  redraw!
  exec winNr ."wincmd w"
  exec "setlocal errorformat=". substitute(errorformat, ' ', '\\ ', 'g')
  exec cwinNr ."wincmd w"
endfun
command! -nargs=1 FindFile call FindFiles(<q-args>)
If you have questions or remarks about this site, visit the vimonline development pages. Please use this site responsibly.
Questions about Vim should go to [email protected] after searching the archive. Help Bram help Uganda.
Sponsored by Web Concept Group Inc. SourceForge Logo