We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9286ff8 commit ed6b8a3Copy full SHA for ed6b8a3
1 file changed
tools/ShowJavaExampleOutput.py
@@ -0,0 +1,12 @@
1
+# ShowJavaExampleOutputCommand.py
2
+# Must be placed in
3
+# C:\Users\Bruce\AppData\Roaming\Sublime Text 3\Packages\User
4
+import sublime, sublime_plugin
5
+
6
+class ShowJavaExampleOutputCommand(sublime_plugin.EventListener):
7
+ def on_load(self, view):
8
+ if view.file_name().endswith(".java"):
9
+ output_region = view.find(r"/\* Output:.*", 0)
10
+ if output_region:
11
+ view.show(output_region)
12
+ # view.show(sublime.Region(view.size(), view.size()))
0 commit comments