view src/libvterm/t/10state_putglyph.test @ 11621:b8299e742f41 v8.0.0693

patch 8.0.0693: no terminal emulator support commit https://github.com/vim/vim/commit/e4f25e4a8db2c8a8a71a4ba2a68540b3ab341e42 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 7 11:54:15 2017 +0200 patch 8.0.0693: no terminal emulator support Problem: No terminal emulator support. Cannot properly run commands in the GUI. Cannot run a job interactively with an ssh connection. Solution: Very early implementation of the :terminal command. Includes libvterm converted to ANSI C. Many parts still missing.
author Christian Brabandt <cb@256bit.org>
date Fri, 07 Jul 2017 12:00:04 +0200
parents
children 9f857e6310b6
line wrap: on
line source

INIT
UTF8 1
WANTSTATE g

!Low
RESET
PUSH "ABC"
  putglyph 0x41 1 0,0
  putglyph 0x42 1 0,1
  putglyph 0x43 1 0,2

!UTF-8 1 char
# U+00C1 = 0xC3 0x81  name: LATIN CAPITAL LETTER A WITH ACUTE
# U+00E9 = 0xC3 0xA9  name: LATIN SMALL LETTER E WITH ACUTE
RESET
PUSH "\xC3\x81\xC3\xA9"
  putglyph 0xc1 1 0,0
  putglyph 0xe9 1 0,1

!UTF-8 wide char
# U+FF10 = 0xEF 0xBC 0x90  name: FULLWIDTH DIGIT ZERO
RESET
PUSH "\xEF\xBC\x90 "
  putglyph 0xff10 2 0,0
  putglyph 0x20 1 0,2

!UTF-8 combining chars
# U+0301 = 0xCC 0x81  name: COMBINING ACUTE
RESET
PUSH "e\xCC\x81Z"
  putglyph 0x65,0x301 1 0,0
  putglyph 0x5a 1 0,1

!Combining across buffers
RESET
PUSH "e"
  putglyph 0x65 1 0,0
PUSH "\xCC\x81Z"
  putglyph 0x65,0x301 1 0,0
  putglyph 0x5a 1 0,1

RESET
PUSH "e"
  putglyph 0x65 1 0,0
PUSH "\xCC\x81"
  putglyph 0x65,0x301 1 0,0
PUSH "\xCC\x82"
  putglyph 0x65,0x301,0x302 1 0,0

!DECSCA protected
RESET
PUSH "A\e[1\"qB\e[2\"qC"
  putglyph 0x41 1 0,0
  putglyph 0x42 1 0,1 prot
  putglyph 0x43 1 0,2