comparison src/vim.h @ 11890:318ae82d8ba4 v8.0.0825

patch 8.0.0825: not easy to see that a window is a terminal window commit https://github.com/vim/vim/commit/3633cf5201e914cc802fd2f813fa87bc959ffaec Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 31 22:29:35 2017 +0200 patch 8.0.0825: not easy to see that a window is a terminal window Problem: Not easy to see that a window is a terminal window. Solution: Add StatusLineTerm highlighting.
author Christian Brabandt <cb@256bit.org>
date Mon, 31 Jul 2017 22:30:04 +0200
parents 80491a71c716
children bafbdbc64bbe
comparison
equal deleted inserted replaced
11889:0af9c5c882d3 11890:318ae82d8ba4
1428 , HLF_PSB /* popup menu scrollbar */ 1428 , HLF_PSB /* popup menu scrollbar */
1429 , HLF_PST /* popup menu scrollbar thumb */ 1429 , HLF_PST /* popup menu scrollbar thumb */
1430 , HLF_TP /* tabpage line */ 1430 , HLF_TP /* tabpage line */
1431 , HLF_TPS /* tabpage line selected */ 1431 , HLF_TPS /* tabpage line selected */
1432 , HLF_TPF /* tabpage line filler */ 1432 , HLF_TPF /* tabpage line filler */
1433 , HLF_CUC /* 'cursurcolumn' */ 1433 , HLF_CUC /* 'cursorcolumn' */
1434 , HLF_CUL /* 'cursurline' */ 1434 , HLF_CUL /* 'cursorline' */
1435 , HLF_MC /* 'colorcolumn' */ 1435 , HLF_MC /* 'colorcolumn' */
1436 , HLF_QFL /* quickfix window line currently selected */ 1436 , HLF_QFL /* quickfix window line currently selected */
1437 , HLF_ST /* status lines of terminal windows */
1437 , HLF_COUNT /* MUST be the last one */ 1438 , HLF_COUNT /* MUST be the last one */
1438 } hlf_T; 1439 } hlf_T;
1439 1440
1440 /* The HL_FLAGS must be in the same order as the HLF_ enums! 1441 /* The HL_FLAGS must be in the same order as the HLF_ enums!
1441 * When changing this also adjust the default for 'highlight'. */ 1442 * When changing this also adjust the default for 'highlight'. */
1442 #define HL_FLAGS {'8', '~', '@', 'd', 'e', 'h', 'i', 'l', 'm', 'M', \ 1443 #define HL_FLAGS {'8', '~', '@', 'd', 'e', 'h', 'i', 'l', 'm', 'M', \
1443 'n', 'N', 'r', 's', 'S', 'c', 't', 'v', 'V', 'w', 'W', \ 1444 'n', 'N', 'r', 's', 'S', 'c', 't', 'v', 'V', 'w', 'W', \
1444 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \ 1445 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \
1445 'B', 'P', 'R', 'L', \ 1446 'B', 'P', 'R', 'L', \
1446 '+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o', 'q'} 1447 '+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o', 'q', '$'}
1447 1448
1448 /* 1449 /*
1449 * Boolean constants 1450 * Boolean constants
1450 */ 1451 */
1451 #ifndef TRUE 1452 #ifndef TRUE