Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add always on top mode to the keybindings, globals #89

Merged
merged 3 commits into from
Jul 20, 2020
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
26 changes: 26 additions & 0 deletions TerminalDocs/customize-settings/global-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,32 @@ This is the number of rows displayed in the window upon first load. If `launchMo

**Default value:** `30`


### Always on top mode

:::row:::
:::column span="":::
When set to true, Windows Terminal windows will launch on top of all other windows on the desktop. This state can also be toggled with the `toggleAlwaysOnTop` keybinding.

**Property name:** `alwaysOnTop`

**Necessity:** Optional

**Accepts:** `true, false`

**Default value:** `false`

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


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

> [!IMPORTANT]
> The `"alwaysOnTop"` setting is only available in [Windows Terminal Preview](https://aka.ms/terminal-preview/), version 1.2.


<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 @@ -203,6 +203,24 @@ _This command is not currently bound in the default settings_.
> The `"toggleFocusMode"` action is only available in [Windows Terminal Preview](https://aka.ms/terminal-preview/), version 1.2.


### Toggle always on top mode

This allows you toggle the "always on top" state of the window. When in "always on top" mode, the window will appear on top of all other non-topmost windows.

**Command name:** `toggleAlwaysOnTop`

**Default bindings:**

_This command is not currently bound in the default settings_.

```json
{ "command": "toggleAlwaysOnTop" }
```

> [!IMPORTANT]
> The `"toggleAlwaysOnTop"` action is only available in [Windows Terminal Preview](https://aka.ms/terminal-preview/), version 1.2.


<br />

___
Expand Down