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