view src/libvterm/t/40state_selection.test @ 29247:5f314b2ed494 v8.2.5142

patch 8.2.5142: startup test fails if there is a status bar Commit: https://github.com/vim/vim/commit/fa04eae5a5b9394079bde2d37ce6f9f8a5567d48 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 21 14:38:40 2022 +0100 patch 8.2.5142: startup test fails if there is a status bar Problem: Startup test fails if there is a status bar at the top of the screen. (Ernie Rael) Solution: Use a larger vertical offset in the test.
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Jun 2022 18:45:07 +0200
parents f93337ae0612
children b13f723a7ec6
line wrap: on
line source

INIT
UTF8 1
WANTSTATE

!Set clipboard; final chunk len 4
PUSH "\e]52;c;SGVsbG8s\e\\"
  selection-set mask=0001 ["Hello,"]

!Set clipboard; final chunk len 3
PUSH "\e]52;c;SGVsbG8sIHc=\e\\"
  selection-set mask=0001 ["Hello, w"]

!Set clipboard; final chunk len 2
PUSH "\e]52;c;SGVsbG8sIHdvcmxkCg==\e\\"
  selection-set mask=0001 ["Hello, world\n"]

!Set clipboard; split between chunks
PUSH "\e]52;c;SGVs"
  selection-set mask=0001 ["Hel"
PUSH "bG8s\e\\"
  selection-set mask=0001 "lo,"]

!Set clipboard; split within chunk
PUSH "\e]52;c;SGVsbG"
  selection-set mask=0001 ["Hel"
PUSH "8s\e\\"
  selection-set mask=0001 "lo,"]

!Query clipboard
PUSH "\e]52;c;?\e\\"
  selection-query mask=0001

!Send clipboard; final chunk len 4
SELECTION 1 ["Hello,"]
  output "\e]52;c;SGVsbG8s\e\\"

!Send clipboard; final chunk len 3
SELECTION 1 ["Hello, w"]
  output "\e]52;c;SGVsbG8sIHc=\e\\"

!Send clipboard; final chunk len 2
SELECTION 1 ["Hello, world\n"]
  output "\e]52;c;SGVsbG8sIHdvcmxkCg==\e\\"

!Send clipboard; split between chunks
SELECTION 1 ["Hel"
  output "\e]52;c;SGVs"
SELECTION 1  "lo,"]
  output "bG8s\e\\"

!Send clipboard; split within chunk
SELECTION 1 ["Hello"
  output "\e]52;c;SGVs"
SELECTION 1 ","]
  output "bG8s\e\\"