comparison src/term.h @ 11315:0c091a7c588c v8.0.0543

patch 8.0.0543: test_edit causes older xfce4-terminal to close commit https://github.com/vim/vim/commit/ba6ec182973af726ce9b7b7eb3753fc3a7ae7d1b Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 4 22:41:10 2017 +0200 patch 8.0.0543: test_edit causes older xfce4-terminal to close Problem: Test_edit causes older xfce4-terminal to close. (Dominique Pelle) Solution: Reduce number of columns to 2000. Try to restore the window position.
author Christian Brabandt <cb@256bit.org>
date Tue, 04 Apr 2017 22:45:05 +0200
parents 501f46f7644c
children ca4931a20f8c
comparison
equal deleted inserted replaced
11314:2808577a0260 11315:0c091a7c588c
75 KS_CIS, /* set icon text start */ 75 KS_CIS, /* set icon text start */
76 KS_CIE, /* set icon text end */ 76 KS_CIE, /* set icon text end */
77 KS_TS, /* set window title start (to status line)*/ 77 KS_TS, /* set window title start (to status line)*/
78 KS_FS, /* set window title end (from status line) */ 78 KS_FS, /* set window title end (from status line) */
79 KS_CWP, /* set window position in pixels */ 79 KS_CWP, /* set window position in pixels */
80 KS_CGP, /* get window position */
80 KS_CWS, /* set window size in characters */ 81 KS_CWS, /* set window size in characters */
81 KS_CRV, /* request version string */ 82 KS_CRV, /* request version string */
82 KS_RBG, /* request background color */ 83 KS_RBG, /* request background color */
83 KS_CSI, /* start insert mode (bar cursor) */ 84 KS_CSI, /* start insert mode (bar cursor) */
84 KS_CEI, /* end insert mode (block cursor) */ 85 KS_CEI, /* end insert mode (block cursor) */
161 #define T_ND (TERM_STR(KS_ND)) /* cursor right */ 162 #define T_ND (TERM_STR(KS_ND)) /* cursor right */
162 #define T_CIS (TERM_STR(KS_CIS)) /* set icon text start */ 163 #define T_CIS (TERM_STR(KS_CIS)) /* set icon text start */
163 #define T_CIE (TERM_STR(KS_CIE)) /* set icon text end */ 164 #define T_CIE (TERM_STR(KS_CIE)) /* set icon text end */
164 #define T_TS (TERM_STR(KS_TS)) /* set window title start */ 165 #define T_TS (TERM_STR(KS_TS)) /* set window title start */
165 #define T_FS (TERM_STR(KS_FS)) /* set window title end */ 166 #define T_FS (TERM_STR(KS_FS)) /* set window title end */
166 #define T_CWP (TERM_STR(KS_CWP)) /* window position */ 167 #define T_CWP (TERM_STR(KS_CWP)) /* set window position */
168 #define T_CGP (TERM_STR(KS_CGP)) /* get window position */
167 #define T_CWS (TERM_STR(KS_CWS)) /* window size */ 169 #define T_CWS (TERM_STR(KS_CWS)) /* window size */
168 #define T_CSI (TERM_STR(KS_CSI)) /* start insert mode */ 170 #define T_CSI (TERM_STR(KS_CSI)) /* start insert mode */
169 #define T_CEI (TERM_STR(KS_CEI)) /* end insert mode */ 171 #define T_CEI (TERM_STR(KS_CEI)) /* end insert mode */
170 #define T_CSR (TERM_STR(KS_CSR)) /* start replace mode */ 172 #define T_CSR (TERM_STR(KS_CSR)) /* start replace mode */
171 #define T_CRV (TERM_STR(KS_CRV)) /* request version string */ 173 #define T_CRV (TERM_STR(KS_CRV)) /* request version string */