Is there something similar to the CommandT plugin in vim for emacs? I know some plugins that do directory-based completion, but is there one that does matching on the full paths?
An example:
├── bar
│ └── hello
├── baz
│ └── test
│ └── hello
└── foo
├── hello
└── lost
baz
baz/test
baz/test/hello
bar
bar/hello
foo
foo/hello
foo/lost
Now when I type ‘h’, I’d like the paths
baz/test/hello
bar/hello
foo/hello
to match. For ‘t’, there should be
baz/test/hello
foo/lost
ido does this AFAIK, and also anything.el.
Also, this emacswiki page has a list packages which do something similar.
Edit: According to Drew’s comment Ido does not match the whole path. Anything on the other hand does, as it can be seen on the screenshot behind the link.