website: HPA, VPA

This commit is contained in:
Mitchell Hashimoto
2023-10-07 09:24:27 -07:00
parent f5a5de15cc
commit 01e1a79386
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import VTSequence from "@/components/VTSequence";
# Horizontal Position Absolute (HPA)
<VTSequence sequence={["CSI", "Px", "`"]} />
This sequence performs [cursor position (CUP)](/vt/cup) with `x` set
to the parameterized value and `y` set to the current cursor position.
There is no additional or different behavior for using `HPA`.

View File

@ -0,0 +1,9 @@
import VTSequence from "@/components/VTSequence";
# Vertical Position Absolute (VPA)
<VTSequence sequence={["CSI", "Py", "d"]} />
This sequence performs [cursor position (CUP)](/vt/cup) with `y` set
to the parameterized value and `x` set to the current cursor position.
There is no additional or different behavior for using `VPA`.