view src/libvterm/t/18state_termprops.test @ 25437:d4a710f06f02 v8.2.3255

patch 8.2.3255: ci" finds following string but ci< and others don't Commit: https://github.com/vim/vim/commit/b9115da4bec5e6cfff69da85cc47c42dd67e42e4 Author: Connor Lane Smith <cls@lubutu.com> Date: Sat Jul 31 13:31:42 2021 +0200 patch 8.2.3255: ci" finds following string but ci< and others don't Problem: ci" finds following string but ci< and others don't. Solution: When not inside an object find the start. (Connor Lane Smit, closes #8670)
author Bram Moolenaar <Bram@vim.org>
date Sat, 31 Jul 2021 13:45:03 +0200
parents 1d595fada804
children
line wrap: on
line source

INIT
WANTSTATE p

RESET
  settermprop 1 true
  settermprop 2 true
  settermprop 7 1

!Cursor visibility
PUSH "\e[?25h"
  settermprop 1 true
PUSH "\e[?25\$p"
  output "\e[?25;1\$y"
PUSH "\e[?25l"
  settermprop 1 false
PUSH "\e[?25\$p"
  output "\e[?25;2\$y"

!Cursor blink
PUSH "\e[?12h"
  settermprop 2 true
PUSH "\e[?12\$p"
  output "\e[?12;1\$y"
PUSH "\e[?12l"
  settermprop 2 false
PUSH "\e[?12\$p"
  output "\e[?12;2\$y"

!Cursor shape
PUSH "\e[3 q"
  settermprop 2 true
  settermprop 7 2

!Title
PUSH "\e]2;Here is my title\a"
  settermprop 4 ["Here is my title"]

!Title split write
PUSH "\e]2;Here is"
  settermprop 4 ["Here is"
PUSH " another title\a"
  settermprop 4 " another title"]