nefrob / vscode-just

VSCode syntax highlighting for just files
https://marketplace.visualstudio.com/items?itemName=nefrob.vscode-just-syntax
MIT License
63 stars 1 forks source link

Feature Request: Open a new terminal to run receipt like Makefile extension #41

Open cdfq152313 opened 1 week ago

cdfq152313 commented 1 week ago

Is it possible to run a receipt on a new terminal?

It would help to see the receipt log immediately after running.

Currently, I need to open the output and switch to vscode-just to see the result.

Reference: Makefile Extension Example: https://github.com/user-attachments/assets/28455153-565c-49b6-8b96-9f8c28679df9

nefrob commented 1 week ago

Yeah good idea. Would creating a new terminal per task to isolate output/logging (especially for long running tasks) or reusing the terminal as make does be preferred?

nigels-com commented 2 days ago

I'd probably prefer reusing the same terminal, rather than have some unbounded history to have to clean up later.

nefrob commented 1 day ago

@nigels-com One thing to consider here is a single terminal is will mean recipe commands get queued. For example, running a recipe that starts a docker container would block any other commands being run.