ryuta46 / vscode-multi-command

Visual Studio Code Plugin named multi-command
MIT License
229 stars 14 forks source link

Prevent waiting for command to be finished #66

Open borkovec opened 2 years ago

borkovec commented 2 years ago

Hi, thanks for this great extension!

I've read in the other issues that "This extension waits until the previous command has finished". Is there way to change that? For example to wait a specified interval of time after the start of the command, rather than the the end?

the specific use case I'd need this for is, that I want to do following: copy a piece of code, go to the interactive, paste that code, execute that code and go back to the first editor.

the problem is, that after running the code, the extension waits, till the execution is finished, before jumping back to the first editor.

The reason for doing this is btw, that I want the code to appear in the history of the interactive window and I haven't found a better way yet.

thanks so much :)