Skip to content

Commit

Permalink
Fix PowerShell commands
Browse files Browse the repository at this point in the history
Based on #527
  • Loading branch information
mattwojo authored Jul 7, 2022
1 parent 1671a25 commit e4f65a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TerminalDocs/command-line-arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ wt --tabColor #009999 ; new-tab --tabColor #f59218
#### [PowerShell](#tab/powershell)

```powershell
wt --tabColor #009999 ; new-tab --tabColor #f59218
wt --tabColor '#009999' `; new-tab --tabColor '#f59218'
```

#### [Linux](#tab/linux)
Expand All @@ -448,7 +448,7 @@ Execution aliases do not work in WSL distributions. If you want to use wt.exe fr
When `--tabColor` is set for a tab, it is associated with the first pane of this tab. Hence in a tab with multiple panes, the color will be applied only if the first pane is in focus. To set the tab color for additional panes, you will need to add the `--tabColor` parameter to the `split-pane` subcommand as well. In the example below, a tab with two panes is created with tab colors specified for each pane:

```powershell
wt new-tab --tabColor #009999 ; split-pane --tabColor #f59218
wt new-tab --tabColor '#009999' `; split-pane --tabColor '#f59218'
```

### Color scheme
Expand Down

0 comments on commit e4f65a7

Please sign in to comment.