sublimehq / sublime_text

Issue tracker for Sublime Text
https://www.sublimetext.com
812 stars 39 forks source link

Syntax Test results can not open files in .sublime-package archives #1082

Open FichteFoll opened 8 years ago

FichteFoll commented 8 years ago

Opening files from traversing the output result does not open files in .sublime-package archives, for example Packages/Java/syntax_test_java.java. To my knowledge, the only way to open these files in a simple manner is

window.run_command("open_file", {"file": "${packages}/Java/syntax_test_java.java"})

, which the file result opener doesn't use for obvious reasons. I'm unsure of which method to choose for solving this.

For clarification, the current behavior is that a new view is opened pointing to where the file would be, but the buffer is empty.

wbond commented 8 years ago

When you say, "traversing the output result", do you mean using the build navigation tools to jump to the file/line where the error occurred?

What path does it try to open? Is it {DATA}/Packages/Java/Java.sublime-syntax?

FichteFoll commented 8 years ago

Yes and yes. I use F4 or double-click. It tries to open the correct path, but the file doesn't exist.