ryuta46 / vscode-multi-command

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

Execute mullti-command when focus on terminal view? #75

Open eret9616 opened 1 year ago

eret9616 commented 1 year ago

I've set "ctrl + end" to execute this multicommand sequence, enter image description here

enter image description here

When I focus on the terminal view, executing the command will output some characters in the terminal,not execute the actual command, how can I execute the command even in I'm focus on terminal view? enter image description here

ryuta46 commented 1 year ago

Did you try terminal.integrated.commandsToSkipShell setting?

https://code.visualstudio.com/docs/terminal/advanced#_keybinding-and-the-shell

I guess #22 is a similar problem.

    "terminal.integrated.commandsToSkipShell": [
        "extension.multiCommand.execute",
    ]