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.
<<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
|