Skip to content

Commit ae65ed8

Browse files
committed
Fix references to syntax files after file move
1 parent 4185862 commit ae65ed8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ def handle_response(self, response, pos):
852852
panel.settings().set("result_base_dir", base_dir)
853853
panel.settings().set("line_numbers", False)
854854
panel.assign_syntax("Packages/" + PLUGIN_NAME +
855-
"/References.sublime-syntax")
855+
"/Syntaxes/References.sublime-syntax")
856856
# call a second time to apply settings
857857
window.create_output_panel("references")
858858

@@ -1000,7 +1000,7 @@ def update_output_panel(window):
10001000
panel.settings().set("result_base_dir", base_dir)
10011001
panel.settings().set("line_numbers", False)
10021002
panel.assign_syntax("Packages/" + PLUGIN_NAME +
1003-
"/Diagnostics.sublime-syntax")
1003+
"/Syntaxes/Diagnostics.sublime-syntax")
10041004
# Call create_output_panel a second time after assigning the above
10051005
# settings, so that it'll be picked up as a result buffer
10061006
window.create_output_panel("diagnostics")

0 commit comments

Comments
 (0)