diff 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
line wrap: on
line diff
--- a/src/libvterm/src/vterm_internal.h
+++ b/src/libvterm/src/vterm_internal.h
@@ -222,7 +222,8 @@ enum {
   C1_SS3 = 0x8f,
   C1_DCS = 0x90,
   C1_CSI = 0x9b,
-  C1_ST  = 0x9c
+  C1_ST  = 0x9c,
+  C1_OSC = 0x9d
 };
 
 void vterm_state_push_output_sprintf_CSI(VTermState *vts, const char *format, ...);