1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 22:42:48 +03:00
Wez Furlong 2021-05-11 18:59:46 -07:00
parent 3d83a805ec
commit 3c6fb77879
2 changed files with 24 additions and 0 deletions

View File

@ -18,6 +18,7 @@ As features stabilize some brief notes about them will accumulate here.
* Fixed: double-click-drag selection could panic when crossing line boundaries [#762](https://github.com/wez/wezterm/issues/762)
* Fixed: wrong scaling for ligatures in Recursive Mono font [#699](https://github.com/wez/wezterm/issues/699)
* Fixed: incorrect Sixel HLS hue handling [#775](https://github.com/wez/wezterm/issues/775)
* Fixed: we now recognize the `CSI 48:2:0:214:255m` form of specifying true color text attributes [#785](https://github.com/wez/wezterm/issues/785)
### 20210502-154244-3f7122cb

View File

@ -257,6 +257,14 @@ is not specified in the accompanying ITU T.416 specification and is ignored by
CSI 38 : 2 : : R : G : B m
```
(*Since nightly builds only) For the sake of compatibility with some other
terminal emulators this additional form is also supported where the colorspace
ID argument is not specified:
```
CSI 38 : 2 : R : G : B m
```
This sequence will set the *background color* to an arbitrary color in RGB colorspace.
The `R`, `G` and `B` symbols below are decimal numbers in the range `0-255`:
@ -264,6 +272,14 @@ The `R`, `G` and `B` symbols below are decimal numbers in the range `0-255`:
CSI 48 : 2 : : R : G : B m
```
(*Since nightly builds only) For the sake of compatibility with some other
terminal emulators this additional form is also supported where the colorspace
ID argument is not specified:
```
CSI 48 : 2 : R : G : B m
```
This sequence will set the *underline color* to an arbitrary color in RGB colorspace.
The `R`, `G` and `B` symbols below are decimal numbers in the range `0-255`:
@ -271,6 +287,13 @@ The `R`, `G` and `B` symbols below are decimal numbers in the range `0-255`:
CSI 58 : 2 : : R : G : B m
```
(*Since nightly builds only) For the sake of compatibility with some other
terminal emulators this additional form is also supported where the colorspace
ID argument is not specified:
```
CSI 58 : 2 : R : G : B m
```
#### Cursor Movement