Hello, I wonder if somebody has ever needed or even developped support for the following: perform a recursive grep from within a JDE menu. This recursive grep could use the JDE project source settings or search in the directory of current buffer. I currently type by hand by grep command in emacs: 1. M-X grep 2. replace line with: find . -name "*.java" | xargs grep -n -i "my keywords" 3. using the highlighted result buffer, browse to the sources. I often use this to derive dependencies on a class or uses of a method in the rest of my project. Any easier solution is welcome! Guillaume.
