When using javac (or the ant task), the error message does not include the entire path to the file, it includes only the file name. For instance,
$ javac src/path/to/Filename.java Filename.java:1: package foo.bar does not exist import foo.bar.Baz; ^
What i wish
$ javac src/path/to/Filename.java src/path/to/Filename.java:1: package foo.bar does not exist import foo.bar.Baz; ^
My problem is that vim quickfix does not work if it did not give the whole path to the file, and not just the file name. Only with the file name after starting a new empty file is opened: make.
I use:
- Debian wheezy
- openjdk-6-jdk v6b23 ~ pre7-1
- javac v1.6.0_23
source share