From 01e1a79386bf332d0592d608fcbe31925d781606 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 7 Oct 2023 09:24:27 -0700 Subject: [PATCH] website: HPA, VPA --- website/app/vt/hpa/page.mdx | 9 +++++++++ website/app/vt/vpa/page.mdx | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 website/app/vt/hpa/page.mdx create mode 100644 website/app/vt/vpa/page.mdx diff --git a/website/app/vt/hpa/page.mdx b/website/app/vt/hpa/page.mdx new file mode 100644 index 000000000..67ab76d51 --- /dev/null +++ b/website/app/vt/hpa/page.mdx @@ -0,0 +1,9 @@ +import VTSequence from "@/components/VTSequence"; + +# Horizontal Position Absolute (HPA) + + + +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`. diff --git a/website/app/vt/vpa/page.mdx b/website/app/vt/vpa/page.mdx new file mode 100644 index 000000000..e663b1bbd --- /dev/null +++ b/website/app/vt/vpa/page.mdx @@ -0,0 +1,9 @@ +import VTSequence from "@/components/VTSequence"; + +# Vertical Position Absolute (VPA) + + + +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`.