-1

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

user956609
  • 906
  • 7
  • 22
  • @user In the workbench, using the multi-command will result "focus on git commit view", but when Im focus on terminal, using the command will output some characters in terminal, I want to execute the command like when its on the workbench, and "focus on git commit view". – user956609 Mar 13 '23 at 02:37
  • @user "send keybindings to the shell" is not checked – user956609 Mar 13 '23 at 02:38
  • I can't reproduce this problem. My Bash shell just does nothing when I try to reproduce it, and the SCM panel is not opened, etc. What shell is in the integrated terminal you're using? Apologies for the first part of my first comment. I didn't see the first part of the list of your commands when I first wrote it. Still, it stands that you should provide a [mre]. – starball Mar 13 '23 at 02:49

1 Answers1

1

Use terminal.integrated.commandsToSkipShell setting:

    "terminal.integrated.commandsToSkipShell": [
        "extension.multiCommand.execute",
    ]
user956609
  • 906
  • 7
  • 22