lf-lang / vscode-lingua-franca

Lingua Franca extension for Visual Studio Code
Other
5 stars 3 forks source link

Add button to view output from build #47

Closed petervdonovan closed 2 years ago

petervdonovan commented 2 years ago

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

The output looks like this: Screenshot from 2022-05-16 16-54-00

The output includes ALL messages that have been generated by the language server via System.err and System.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.