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 notes that the font object is only 1.10+ #389

Merged
merged 2 commits into from
Aug 30, 2021
Merged
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
8 changes: 8 additions & 0 deletions TerminalDocs/customize-settings/profile-appearance.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ This sets the weight (lightness or heaviness of the strokes) for the profile's f
}
```

> [!IMPORTANT]
> This `font` object is only available in [Windows Terminal Preview](https://aka.ms/terminal-preview), version 1.10+. Prior to that version, you should use the `fontFace`, `fontSize`, and `fontWeight` properties separately, like so:
> ```json
> "fontFace": "Cascadia Mono",
> "fontSize": 12,
> "fontWeight": "normal"
> ```

### Intense Text Formatting

This controls how "intense" text is formatted in the Terminal. "Intense" text is text formatted with the escape sequence `\x1b[1m`.
Expand Down