Add button to view output from build #47
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change makes it easier to find textual output from the language server. It should allow VS Code users to receive most of the same information that is available from the standalone compiler. The button looks like this:
![Screenshot from 2022-05-16 16-52-46](https://user-images.githubusercontent.com/33707478/168700441-bbb75ad0-48b5-44e8-9ae9-59998522a2bf.png)
The output looks like this:
![Screenshot from 2022-05-16 16-54-00](https://user-images.githubusercontent.com/33707478/168700575-1093e9eb-e650-46fa-ba0b-ac298c5fbd7f.png)
The output includes ALL messages that have been generated by the language server via
System.err
andSystem.out
. This may be confusing ("where do the logs start and end?"), but it makes the implementation simple because it means we do not have to worry about what does and does not belong in the output.This branch in the main repo should be merged first.
Fixes #42.