comparison src/libvterm/src/vterm_internal.h @ 20496:747a270eb1db v8.2.0802

patch 8.2.0802: libvterm code lags behind the upstream version Commit: https://github.com/vim/vim/commit/d863728913801c8fa6d633f6580edfcada533fd0 Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 20 18:41:41 2020 +0200 patch 8.2.0802: libvterm code lags behind the upstream version Problem: Libvterm code lags behind the upstream version. Solution: Include revisions 759 - 762.
author Bram Moolenaar <Bram@vim.org>
date Wed, 20 May 2020 18:45:04 +0200
parents 1d595fada804
children 55a373a243c0
comparison
equal deleted inserted replaced
20495:0736d3dc23ba 20496:747a270eb1db
51 unsigned int bold:1; 51 unsigned int bold:1;
52 unsigned int underline:2; 52 unsigned int underline:2;
53 unsigned int italic:1; 53 unsigned int italic:1;
54 unsigned int blink:1; 54 unsigned int blink:1;
55 unsigned int reverse:1; 55 unsigned int reverse:1;
56 unsigned int conceal:1;
56 unsigned int strike:1; 57 unsigned int strike:1;
57 unsigned int font:4; // To store 0-9 58 unsigned int font:4; // To store 0-9
58 }; 59 };
59 60
60 int vterm_color_equal(VTermColor a, VTermColor b); 61 int vterm_color_equal(VTermColor a, VTermColor b);
71 VTerm *vt; 72 VTerm *vt;
72 73
73 const VTermStateCallbacks *callbacks; 74 const VTermStateCallbacks *callbacks;
74 void *cbdata; 75 void *cbdata;
75 76
76 const VTermParserCallbacks *fallbacks; 77 const VTermStateFallbacks *fallbacks;
77 void *fbdata; 78 void *fbdata;
78 79
79 int rows; 80 int rows;
80 int cols; 81 int cols;
81 82