view src/libvterm/t/26state_query.test @ 35075:43739470fe40 default tip

runtime(asm): missing setlocal in indent plugin (#14658) Commit: https://github.com/vim/vim/commit/2e9b9e9a9ebf3fd40437260ecd6b1e23b02c636b Author: Marc Sven Schulte <167623652+msschulte@users.noreply.github.com> Date: Sun Apr 28 21:43:03 2024 +0200 runtime(asm): missing setlocal in indent plugin (https://github.com/vim/vim/issues/14658) Signed-off-by: Marc Sven Schulte <167623652+msschulte@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 28 Apr 2024 21:45:03 +0200
parents 82336c3b679d
children
line wrap: on
line source

INIT
WANTSTATE

!DA
RESET
PUSH "\e[c"
  output "\e[?1;2c"

!XTVERSION
RESET
PUSH "\e[>q"
  output "\eP>|libvterm(0.3)\e\\"

!DSR
RESET
PUSH "\e[5n"
  output "\e[0n"

!CPR
PUSH "\e[6n"
  output "\e[1;1R"
PUSH "\e[10;10H\e[6n"
  output "\e[10;10R"

!DECCPR
PUSH "\e[?6n"
  output "\e[?10;10R"

!DECRQSS on DECSCUSR
PUSH "\e[3 q"
PUSH "\eP\$q q\e\\"
  output "\eP1\$r3 q\e\\"

!DECRQSS on SGR
PUSH "\e[1;5;7m"
PUSH "\eP\$qm\e\\"
  output "\eP1\$r1;5;7m\e\\"

!DECRQSS on SGR ANSI colours
PUSH "\e[0;31;42m"
PUSH "\eP\$qm\e\\"
  output "\eP1\$r31;42m\e\\"

!DECRQSS on SGR ANSI hi-bright colours
PUSH "\e[0;93;104m"
PUSH "\eP\$qm\e\\"
  output "\eP1\$r93;104m\e\\"

##!DECRQSS on SGR 256-palette colours
#PUSH "\e[0;38:5:56;48:5:78m"
#PUSH "\eP\$qm\e\\"
#  output "\eP1\$r38:5:56;48:5:78m\e\\"

!DECRQSS on SGR RGB8 colours
PUSH "\e[0;38:2:24:68:112;48:2:13:57:101m"
PUSH "\eP\$qm\e\\"
  output "\eP1\$r38:2:24:68:112;48:2:13:57:101m\e\\"

!S8C1T on DSR
PUSH "\e G"
PUSH "\e[5n"
  output "\x{9b}0n"
PUSH "\e F"

#!Truncation on attempted buffer overflow
#PUSH "\e[6n" x 30
#  output "\e[10;10R" x 25