Find a file (via recursive directory search) in Vim

Vim

Vim Problem Overview


Is there any way to search a directory recursively for a file (using wildcards when needed) in Vim? If not natively, is there a plugin that can handle this?

Vim Solutions


Solution 1 - Vim

You can use wildcards with the :edit command. So,

:e **/test/Suite.java

will open test/Suite.java no matter where it is in the current directory hierarchy. This works with tab-completion so you can use [tab] to expand the wildcards before opening the file. See also the wildmode option for a way to browse through all possible extensions instead.

Another trick is to use

:r! find . -type f

to load a list of all files in the current directory into a buffer. Then you can use all the usual vim text manipulation tools to navigate/sort/trim the list, and CTRL+W gf to open the file under the cursor in a new pane.

Solution 2 - Vim

There is a find command. If you add ** (see :help starstar) to your 'path' then you can search recursively:

:set path

will show you your current path, add ** by doing something like

:set path+=**

then you can just type

:find myfile.txt

and it opens magically!

If you add the set command to your .vimrc it'll make sure you can do recursive search in future. It doesn't seem to search dot directories (.ssh for example)

Solution 3 - Vim

I'd recommend ctrlp.vim. It's a very good plugin, ideal to work inside large projects. It has search by file name or full path, regexp search, automatic detection of the project root (the one with the .git|hg|svn|bzr|_darcs folder), personalized file name exclusions, and many more.

Just press <c-p> and it will open a very intuitive pane where you can search what you want:

enter image description here

It's possible to select and open several files at once. It also accepts additional arbitrary commands, like jump to a certain line, string occurrence or any other Vim command.

Repo: https://github.com/kien/ctrlp.vim

Solution 4 - Vim

vim as a builtin find command (:help find) but only open the first found file. However you can use this amazing plugin : FuzzyFinder which does everything you want and even more

Solution 5 - Vim

You can browse the file system with :ex ., but I do not know how to search recursively (I am a Vim novice — I have been using it only ten years).

There are a few popular file browsers plug-ins:

See also this thread on SuperUser.

Solution 6 - Vim

Command-T lets you find a file very fast just by typing some letters. You can also open the file in a new tab, but it need vim compiled with ruby support.

Solution 7 - Vim

You can use ! to run shell commands :

:! find . -name *.xml

Solution 8 - Vim

vim has bild in commands named grep, lgrep, vimgrep or lvimgrep that can do this

here is a tutorial on how to use them http://vim.wikia.com/wiki/Find_in_files_within_Vim#Recursive_Search

you can also use an external command like find or grep from vim by executing it like this

:!find ...

Solution 9 - Vim

Quickfix-like result browsing

Usage:

Find my.regex

Outcome:

  • a new tab opens
  • each line contains a relative path that matches a grep -E regex
  • hit:
    • <enter> or <C-w>gf to open the file on the current line in a new tab
    • gf to open the file on the current tab and lose the file list

Find all files instead:

Find

Alternative methods:

Code:

function! Find(cmd)
  let l:files = system(a:cmd)
  if (l:files =~ '^\s*$')
    echomsg 'No matching files.'
    return
  endif
  tabedit
  set filetype=filelist
      set buftype=nofile
  " TODO cannot open two such file lists with this. How to get a nice tab label then?
  " http://superuser.com/questions/715928/vim-change-label-for-specific-tab
  "file [filelist]
  put =l:files
  normal ggdd
  nnoremap <buffer> <Enter> <C-W>gf
  execute 'autocmd BufEnter <buffer> lcd ' . getcwd()
endfunction
command! -nargs=1 Find call Find("find . -iname '*'" . shellescape('<args>') . "'*'")
command! -nargs=1 Gfind call Find('git ls-files | grep -E ' . shellescape('<args>'))
command! -nargs=1 Gtfind call Find('git rev-parse --show-toplevel && git ls-files | grep -E ' . shellescape('<args>'))
command! -nargs=1 Locate call Find('locate ' . shellescape('<args>'))

Solution 10 - Vim

Depending on your situation (that is, assuming the following command will find just a single file), perhaps use a command like:

:e `locate SomeUniqueFileName.java`

This will cause Vim to open, in the current tab (the e command) a file that is the result of running (in this example),

locate SomeUniqueFileName.java

Note that the magic here is the backticks around the command, which will convert the output from the shell command into text usable in the Vim command.

Solution 11 - Vim

You don't need a plugin only for this function, below code snippet is enough.

function! FindFiles()
    call inputsave()
    let l:dir = input("Find file in: ", expand("%:p:h"), "dir")
    call inputrestore()
    if l:dir != ""
        call inputsave()
        let l:file = input("File name: ")
        call inputrestore()
        let l:nf = 'find '.l:dir.' -type f -iname '.l:file.' -exec grep -nH -m 1 ".*" {} \;'
        lexpr system(l:nf)
    endif
endfunction
nnoremap <silent> <leader>fo :call FindFiles()<CR>

Solution 12 - Vim

Run:

:args `find . -name '*xml'`

Vim will run the shell command in backticks, put the list of files to arglist and open the first file. Then you can use :args to view the arglist (i.e. list the files found) and :n and :N to navigate forward and bacwards through the files in arglist. See https://vimhelp.org/editing.txt.html#%7Barglist%7D and https://vimhelp.org/editing.txt.html#backtick-expansion

Solution 13 - Vim

You can find files recursively in your "path" with this plugin. It supports tab completion for the filename as well.

Solution 14 - Vim

I am surprised no one mentioned Unite.vim yet.

Finding files (fuzzily or otherwise) is just the very tip of the iceberg of what it can do for a developer. It has built in support for ag, git, and a myriad of other programs/utilities/vim plugins. The learning curve can be a bit steep, but i cannot imagine my life without it. User base is big, and bugs are fixed immediately.

Solution 15 - Vim

ag tool and corresponding Ag vim plugin solves this problem perfectly:

To find a file using some pattern use:

AgFile! pattern

It will open quickfix window with results where you can choose.

You can add vim keybinding to call this command using selected word as a pattern.

nnoremap <silent> <C-h> :AgFile! '<C-R><C-W>'<CR>
vnoremap <silent> <C-h> y :AgFile! '<C-R>"'<CR>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionmat-mcloughlinView Question on Stackoverflow
Solution 1 - VimDavid WinslowView Answer on Stackoverflow
Solution 2 - VimStephen PaulgerView Answer on Stackoverflow
Solution 3 - VimVictor SchröderView Answer on Stackoverflow
Solution 4 - Vimmb14View Answer on Stackoverflow
Solution 5 - VimPaul RuaneView Answer on Stackoverflow
Solution 6 - VimMartin BaumView Answer on Stackoverflow
Solution 7 - VimPeter TillemansView Answer on Stackoverflow
Solution 8 - VimNikolaus GradwohlView Answer on Stackoverflow
Solution 9 - VimCiro Santilli Путлер Капут 六四事View Answer on Stackoverflow
Solution 10 - VimByron KatzView Answer on Stackoverflow
Solution 11 - Vimbrook hongView Answer on Stackoverflow
Solution 12 - VimEugene PrikazchikovView Answer on Stackoverflow
Solution 13 - Vimlomilomi26View Answer on Stackoverflow
Solution 14 - VimminusfView Answer on Stackoverflow
Solution 15 - VimaGlacierView Answer on Stackoverflow