microsoft/Terminal

New panes should inherit the tab color of the active pane when they're split

Open

#18,930 建立於 2025年5月20日

在 GitHub 查看
 (2 留言) (1 反應) (0 負責人)C++ (3,212 fork)batch import
Help WantedIssue-TaskNeeds-Tag-FixPriority-3Product-Terminal

倉庫指標

Star
 (35,764 star)
PR 合併指標
 (平均合併 27天 19小時) (30 天內合併 24 個 PR)

描述

Windows Terminal version

1.22.11141.0

Windows build number

10.0.26100.4061

Other Software

No response

Steps to reproduce

  1. Close all instances of Microsoft Terminal
  2. Open a cmd prompt or Powershell
  3. Run this command:
  • CMD: wt new-tab -p "Windows PowerShell" --tabColor "#FF0000" --title "Hello World" ; split-pane -p "Windows PowerShell"
  • Powershell: wt new-tab -p "Windows PowerShell" --tabColor "#FF0000" --title "Hello World" ; split-pane -p "Windows PowerShell"

Expected Behavior

The resulting tab in Terminal should have the correct title and color set from command line.

Image

Actual Behavior

The resulting tab in Terminal has the default title and color (not the ones defined in the command line).

Image

If you run the same commands but with a semicolon at the end:

  • CMD: wt new-tab -p "Windows PowerShell" --tabColor "#FF0000" --title "Hello World" ; split-pane -p "Windows PowerShell" ;
  • Powershell: wt new-tab -p "Windows PowerShell" --tabColor "#FF0000" --title "Hello World" ; split-pane -p "Windows PowerShell" ; Then the resulting tab in Terminal have the correct title and color set from command line (and in addition, it opens another default terminal tab).

Image

This is also the case using "startupActions" inside settings.json`:

  • ❌ bugged: "new-tab -p \"Windows PowerShell\" --tabColor \"#FF0000\" --title \"Hello World\" ; split-pane -p \"Windows PowerShell\""
  • ✅ okay: "new-tab -p \"Windows PowerShell\" --tabColor \"#FF0000\" --title \"Hello World\" ; split-pane -p \"Windows PowerShell\" ;"

貢獻者指南