Hi Suresh! On Mon, Apr 15, 2013 at 10:22 AM, Suresh Govindachar <[email protected]> wrote: > Hitting <tab> after entering a partial argument to :find will offer > suggestions for completing the command line by searching inside > non-trivial components of the 'path' -- but it does not search in "." > and in ",," components of the path. > > Here's what I see: On vim's command line, the following finds the > possible completions > > :find ./foo/blah/blee[hit the <tab> key] > > but the following (without the leading ./) will not: > > :find foo/blah/blee[hit the <tab> key]
I'm trying to reproduce the problem but couldn't: My setup: d:\foo>dir /s (i leave out the . and .. entries to slim down the lines below) Directory of D:\foo 15/04/2013 01:41 PM 9 foo.txt 15/04/2013 01:41 PM 10 food.txt 15/04/2013 01:32 PM <DIR> opt Directory of D:\foo\opt 15/04/2013 01:44 PM <DIR> vim Directory of D:\foo\opt\vim 15/04/2013 01:32 PM 11 700_vimrc 15/04/2013 01:33 PM 10 fish.txt 15/04/2013 01:33 PM 12 fish.txt d:\foo>gvim -u NONE -U NONE :set cp wildchar=<Tab> wildmode=list:longest,full :set path=.,,d:/foo/opt/vim,d:/foo/opt/vim/** :pwd D:\foo Now doing :find opt/vim/fi<Tab> Shows "fish.txt" and "finger.txt" as the candidates. :find opt\vim\fish.txt And doing :find *foo* Shows "foo.txt" and "food.txt" as the candidates. Is there anything different in my settings here that might not show the problem that you're seeing? Regards, nazri -- -- You received this message from the "vim_dev" 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 --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
