aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAyose <ayosec@gmail.com>2022-07-11 22:22:21 +0100
committerAyose <ayosec@gmail.com>2022-07-12 10:16:09 +0100
commita919ac7d1e6d1ec5729ac08d25351ea0d6446145 (patch)
treed4f6e7a075aad2f08dd9675be0b34d3e4f35d2bc /docs
parentebf41d5fb035232bc504c568f4e1329a10292848 (diff)
parent694a52bcffeffdc9e163818c3b2ac5c39e26f1ef (diff)
downloadr-alacritty-a919ac7d1e6d1ec5729ac08d25351ea0d6446145.tar.gz
r-alacritty-a919ac7d1e6d1ec5729ac08d25351ea0d6446145.tar.bz2
r-alacritty-a919ac7d1e6d1ec5729ac08d25351ea0d6446145.zip
Merge with alacritty/master
The merge requires multiple changes in order to be compatible with the last version of Alacritty: - Textures are now always deleted on Drop. This is required because Alacritty now supports multiple windows in the same process, so we can't assume that all resources are freed when a single window is closed. This is the same approach used for the atlas textures. - The graphics feature is only compatible with OpenGL 3.3. Alacritty now supports GLES 2.2, but in order to provide a proper support for it we need a different approach, specific for that version. - Cell dimensions in pixels are re-added to the alacritty_terminal crate.
Diffstat (limited to 'docs')
-rw-r--r--docs/escape_support.md6
-rw-r--r--docs/features.md6
2 files changed, 11 insertions, 1 deletions
diff --git a/docs/escape_support.md b/docs/escape_support.md
index 4673cedc..755997aa 100644
--- a/docs/escape_support.md
+++ b/docs/escape_support.md
@@ -65,7 +65,10 @@ brevity.
| `CSI l` | PARTIAL | See `CSI h` for supported modes |
| `CSI ? l` | PARTIAL | See `CSI ? h` for supported modes |
| `CSI M` | IMPLEMENTED | |
-| `CSI m` | PARTIAL | Only singular straight underlines are supported |
+| `CSI m` | IMPLEMENTED | Supported parameters: |
+| | | `0`-`9`, `21`-`25`, `27`-`49`, `58`, `59` |
+| | | `90`-`97`, `100`-`107` |
+| | REJECTED | `11`-`19`, `51`-`55` |
| `CSI n` | IMPLEMENTED | |
| `CSI P` | IMPLEMENTED | |
| `CSI SP q` | IMPLEMENTED | |
@@ -88,6 +91,7 @@ brevity.
| `OSC 1` | REJECTED | Icon names are not supported |
| `OSC 2` | IMPLEMENTED | |
| `OSC 4` | IMPLEMENTED | |
+| `OSC 8` | IMPLEMENTED | |
| `OSC 10` | IMPLEMENTED | |
| `OSC 11` | IMPLEMENTED | |
| `OSC 12` | IMPLEMENTED | |
diff --git a/docs/features.md b/docs/features.md
index 094210fd..b12480a9 100644
--- a/docs/features.md
+++ b/docs/features.md
@@ -83,3 +83,9 @@ Graphics can be added to the terminal using the Sixel protocol. Every graphic ca
have up to 1024 colors, and it is limited to 4096x4096 pixels.
[configuration file]: ../alacritty.yml
+
+## Multi-Window
+
+Alacritty supports running multiple terminal emulators from the same Alacritty
+instance. New windows can be created either by using the `CreateNewWindow`
+keybinding action, or by executing the `alacritty msg create-window` subcommand.