-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Open
Copy link
Labels
Help WantedWe encourage anyone to jump in on these.We encourage anyone to jump in on these.Issue-TaskIt's a feature request, but it doesn't really need a major design.It's a feature request, but it doesn't really need a major design.Needs-Tag-FixDoesn't match tag requirementsDoesn't match tag requirementsPriority-3A description (P3)A description (P3)Product-TerminalThe new Windows Terminal.The new Windows Terminal.
Milestone
Description
Windows Terminal version
1.22.11141.0
Windows build number
10.0.26100.4061
Other Software
No response
Steps to reproduce
- Close all instances of Microsoft Terminal
- Open a cmd prompt or Powershell
- 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.
Actual Behavior
The resulting tab in Terminal has the default title and color (not the ones defined in the command line).
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).
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\" ;"
Metadata
Metadata
Assignees
Labels
Help WantedWe encourage anyone to jump in on these.We encourage anyone to jump in on these.Issue-TaskIt's a feature request, but it doesn't really need a major design.It's a feature request, but it doesn't really need a major design.Needs-Tag-FixDoesn't match tag requirementsDoesn't match tag requirementsPriority-3A description (P3)A description (P3)Product-TerminalThe new Windows Terminal.The new Windows Terminal.