Can I use ECB (or some other project aware thing, like eproject, ibuffer, etc.) to enhance emacs's find-file
goodness?
Imagine this scenario: I have several projects/directories specified in my ecb-source-path
, let's call them Project1 and Project2, and they look like so:
Project1
foo.c
bar.c
Project2
foo.c
baz.c
I'd like to have find-file
(or another command) work to find and jump to the files there without having to navigate to the ecb directories buffer, or have the buffers open already.
I guess my ideal usage scenario would be like so:
I'd like to C-x C-f baz
(or another special command) to open Project2/baz.c
. Going even further, I'd love if I could use something like ido's flex matching to get p2foo
open Project2/foo.c
.
¿C'est posible?