-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #229 from rockorager/vt-fixup-rockorager-doh
fix(vt): s/SGR/CSI and fix newline inserted in markdown link
- Loading branch information
Showing
2 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters