javac error message does not display entire filepath
问题 When using javac (or the ant task ), the error message does not include the entire filepath, it only includes the file name. For example, $ javac src/path/to/Filename.java Filename.java:1: package foo.bar does not exist import foo.bar.Baz; ^ What I would like is, $ 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's not given the entire filepath, not just the filename. With just