comparison src/libvterm/src/vterm_internal.h @ 13318:5e47c4bdf3a6 v8.0.1533

patch 8.0.1533: libterm doesn't support requesting fg and bg color commit https://github.com/vim/vim/commit/674e482d1346aa1afddab62675f3a7d7a00a4894 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 24 14:03:56 2018 +0100 patch 8.0.1533: libterm doesn't support requesting fg and bg color Problem: Libterm doesn't support requesting fg and bg color. Solution: Implement t_RF and t_RB.
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Feb 2018 14:15:06 +0100
parents 93024e778745
children a62b0bbc8834
comparison
equal deleted inserted replaced
13317:64be34986f54 13318:5e47c4bdf3a6
220 220
221 enum { 221 enum {
222 C1_SS3 = 0x8f, 222 C1_SS3 = 0x8f,
223 C1_DCS = 0x90, 223 C1_DCS = 0x90,
224 C1_CSI = 0x9b, 224 C1_CSI = 0x9b,
225 C1_ST = 0x9c 225 C1_ST = 0x9c,
226 C1_OSC = 0x9d
226 }; 227 };
227 228
228 void vterm_state_push_output_sprintf_CSI(VTermState *vts, const char *format, ...); 229 void vterm_state_push_output_sprintf_CSI(VTermState *vts, const char *format, ...);
229 230
230 void vterm_screen_free(VTermScreen *screen); 231 void vterm_screen_free(VTermScreen *screen);