Skip to content

Commit d0329d5

Browse files
committed
Fix CSI + HPA sequence
This commit fixes `HPA` character, which is `U+0060` according to https://vt100.net/docs/vt510-rm/HPA.html, but not `U+0027`.
1 parent 61d0c0c commit d0329d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyte/escape.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,5 @@
149149
DECSTBM = "r"
150150

151151
#: *Horizontal position adjust*: Same as :data:`CHA`.
152-
HPA = "'"
152+
HPA = "`"
153+

0 commit comments

Comments
 (0)