Skip to content

Commit

Permalink
Merge pull request #229 from rockorager/vt-fixup-rockorager-doh
Browse files Browse the repository at this point in the history
fix(vt): s/SGR/CSI and fix newline inserted in markdown link
  • Loading branch information
mitchellh authored Dec 30, 2024
2 parents ac7c2dd + d12818c commit c7f3817
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
34 changes: 34 additions & 0 deletions \
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
fix(vt): s/SGR/CSI and fix newline inserted in markdown link
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch vt-fixup-rockorager-doh
# Changes to be committed:
# modified: docs/vt/concepts/sequences.mdx
#
# ------------------------ >8 ------------------------
# Do not modify or remove the line above.
# Everything below it will be ignored.
diff --git a/docs/vt/concepts/sequences.mdx b/docs/vt/concepts/sequences.mdx
index 61819baf2493..8e9c9f6f6fbf 100644
--- a/docs/vt/concepts/sequences.mdx
+++ b/docs/vt/concepts/sequences.mdx
@@ -87,7 +87,7 @@ ST = "0x1B" "0x5C"

## DCS Sequences

-DCS Sequences are like an SGR sequence combined with an OSC sequence: they
+DCS Sequences are like an CSI sequence combined with an OSC sequence: they
natively support integer parameters as well as string values. An example DSC
sequence is `DCS + P q <string> ST`

@@ -104,8 +104,7 @@ ST = "0x1B" "0x5C"
## APC Sequences

Ghostty supports APC sequences. Currently there is only one supported APC
-sequence: the Kitty Graphics Protocol sequence. This is documented [here]
-(https://sw.kovidgoyal.net/kitty/graphics-protocol/).
+sequence: the Kitty Graphics Protocol sequence. This is documented [here](https://sw.kovidgoyal.net/kitty/graphics-protocol/).

```
apc_sequence = "0x1B" "_" data ST
5 changes: 2 additions & 3 deletions docs/vt/concepts/sequences.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ ST = "0x1B" "0x5C"

## DCS Sequences

DCS Sequences are like an SGR sequence combined with an OSC sequence: they
DCS Sequences are like a CSI sequence combined with an OSC sequence: they
natively support integer parameters as well as string values. An example DSC
sequence is `DCS + P q <string> ST`

Expand All @@ -104,8 +104,7 @@ ST = "0x1B" "0x5C"
## APC Sequences

Ghostty supports APC sequences. Currently there is only one supported APC
sequence: the Kitty Graphics Protocol sequence. This is documented [here]
(https://sw.kovidgoyal.net/kitty/graphics-protocol/).
sequence: the Kitty Graphics Protocol sequence. This is documented [here](https://sw.kovidgoyal.net/kitty/graphics-protocol/).

```
apc_sequence = "0x1B" "_" data ST
Expand Down

0 comments on commit c7f3817

Please sign in to comment.