Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions TerminalDocs/customize-settings/global-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,30 @@ When this is set to `true`, closing a window with multiple tabs open _will_ requ
:::column-end:::
:::row-end:::

### Use Tab Switcher Experience

:::row:::
:::column span="":::
When this is set to `true`, the `nextTab` and `prevTab` commands will use the Tab Switcher UI. The UI will show all the currently open tabs in a vertical list, navigable with the keyboard or mouse.
The tab switcher will open on the initial press of the keybindings for `nextTab` and `prevTab`, and will stay open as long as a modifier key is held down. When all modifier keys are released, the switcher will close and the highlighted tab will be focused. <kbd>Tab</kbd>/<kbd>Shift+Tab</kbd>, the Up and Down arrow keys, and the `nextTab`/`prevTab` keybindings can be used to cycle through the switcher UI.

**Property name:** `useTabSwitcher`

**Necessity:** Optional

**Accepts:** `true`, `false`

**Default value:** `true`

> [!IMPORTANT]
> This feature is only available in [Windows Terminal Preview](https://aka.ms/terminal-preview/).

:::column-end:::
:::column span="":::

:::column-end:::
:::row-end:::

<br />

___
Expand Down
18 changes: 18 additions & 0 deletions TerminalDocs/customize-settings/key-bindings.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,24 @@ This opens a specific tab depending on the index.
| ---- | --------- | ------- | ----------- |
| `index` | Required | Integer | Tab that will open based on its position in the tab bar (starting at 0). |


### Tab Search ([Preview](https://aka.ms/terminal-preview/))

This opens the tab search box.

**Command name:** `tabSearch`

**Default binding:**

_This command is not currently bound in the default settings_.

```json
{"command": "tabSearch", "keys": "ctrl+shift+t"}
```

> [!IMPORTANT]
> This feature is only available in [Windows Terminal Preview](https://aka.ms/terminal-preview/).

### Rename tab ([Preview](https://aka.ms/terminal-preview/))

This command can be used to rename a tab to a specific string.
Expand Down