comparison src/libvterm/t/02parser.test @ 20498:55a373a243c0 v8.2.0803

patch 8.2.0803: libvterm code lags behind the upstream version Commit: https://github.com/vim/vim/commit/83a52533b23c88f90be0dea01bc5e32ddadc1d6a Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 20 19:30:19 2020 +0200 patch 8.2.0803: libvterm code lags behind the upstream version Problem: Libvterm code lags behind the upstream version. Solution: Include revisions 764 - 767
author Bram Moolenaar <Bram@vim.org>
date Wed, 20 May 2020 19:45:04 +0200
parents 1d595fada804
children f93337ae0612
comparison
equal deleted inserted replaced
20497:1f96d44df1a7 20498:55a373a243c0
148 PUSH "def" 148 PUSH "def"
149 osc "def" 149 osc "def"
150 PUSH "ghi\e\\" 150 PUSH "ghi\e\\"
151 osc "ghi"] 151 osc "ghi"]
152 152
153 !OSC BEL without semicolon
154 PUSH "\e]1234\x07"
155 osc [1234 ]
156
157 !OSC ST without semicolon
158 PUSH "\e]1234\e\\"
159 osc [1234 ]
160
153 !Escape cancels OSC, starts Escape 161 !Escape cancels OSC, starts Escape
154 PUSH "\e]Something\e9" 162 PUSH "\e]Something\e9"
155 escape "9" 163 escape "9"
156 164
157 !CAN cancels OSC, returns to normal mode 165 !CAN cancels OSC, returns to normal mode