Eclipse auto-complete of filenames
Does anyone know if there e开发者_StackOverflow社区xists a plugin to Eclipse which can auto complete filenames for files in the project.
So if I type images/s [Alt+tab] it should present a list of all files located in images starting with s. Like the auto-complete for types but using filenames.
It would be really cool if it worked with all kinds of editors.
You can use
Ctrl Shift R to open any other resource in the project, e.g. *.jpg
Martin, in response to your comment, in those cases I usually use the find command which is available in Linux and Windows/cygwin
find . -name '*.jpg'
精彩评论