> I'm having difficulty understanding how to set fuzzyfinder so it will find
> any file (no matter how deep) starting from the root of my vim instance. So
> for example if I'm in /Users/rick/projects/myproject I want to be able to
> find any file beneath 'myproject.' Right now when I trigger fuzzy finder it
> starts by showing the files/dirs from the root 'myproject' but I can't
> easily find 'any' file (in any subdirectory) as I start typing it. I'm sure
> I'm missing something stupid.
>
> My alias is
>
> map <leader>f :FufFile<CR>
you should type /Users/rick/projects/myproject completely, or define
shourtcut:
let g:fuf_abbrevMap = {
            \   '^vim:' : [ $VIMRUNTIME ],
            \   '^home:' : [ $HOME ],
\ '^myp:' : [ '/Users/rick/projects/myproject' ],
\}
then type myp:, it will popup the files under this dir.

-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to