comparison src/vim.h @ 34809:a6e19365c34d v9.1.0277

patch 9.1.0277: Cannot highlight the Command-line Commit: https://github.com/vim/vim/commit/be2b03c6eecea3eae5d460e3c19ee43b73b29928 Author: Shougo Matsushita <Shougo.Matsu@gmail.com> Date: Mon Apr 8 22:11:50 2024 +0200 patch 9.1.0277: Cannot highlight the Command-line Problem: Cannot highlight the Command-line Solution: Add the MsgArea highlighting group (Shougo Matsushita) closes: #14327 Signed-off-by: Shougo Matsushita <Shougo.Matsu@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 08 Apr 2024 22:30:03 +0200
parents 5b25ec43f208
children 3b0c98b3a7b5
comparison
equal deleted inserted replaced
34808:83de868083f2 34809:a6e19365c34d
1513 , HLF_CUL // 'cursorline' 1513 , HLF_CUL // 'cursorline'
1514 , HLF_MC // 'colorcolumn' 1514 , HLF_MC // 'colorcolumn'
1515 , HLF_QFL // quickfix window line currently selected 1515 , HLF_QFL // quickfix window line currently selected
1516 , HLF_ST // status lines of terminal windows 1516 , HLF_ST // status lines of terminal windows
1517 , HLF_STNC // status lines of not-current terminal windows 1517 , HLF_STNC // status lines of not-current terminal windows
1518 , HLF_MSG // message area
1518 , HLF_COUNT // MUST be the last one 1519 , HLF_COUNT // MUST be the last one
1519 } hlf_T; 1520 } hlf_T;
1520 1521
1521 // The HL_FLAGS must be in the same order as the HLF_ enums! 1522 // The HL_FLAGS must be in the same order as the HLF_ enums!
1522 // When changing this also adjust the default for 'highlight'. 1523 // When changing this also adjust the default for 'highlight'.
1524 'n', 'a', 'b', 'N', 'G', 'O', 'r', 's', 'S', 'c', 't', 'v', 'V', \ 1525 'n', 'a', 'b', 'N', 'G', 'O', 'r', 's', 'S', 'c', 't', 'v', 'V', \
1525 'w', 'W', 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \ 1526 'w', 'W', 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \
1526 'B', 'P', 'R', 'L', \ 1527 'B', 'P', 'R', 'L', \
1527 '+', '=', '[', ']', '{', '}', 'x', 'X', \ 1528 '+', '=', '[', ']', '{', '}', 'x', 'X', \
1528 '*', '#', '_', '!', '.', 'o', 'q', \ 1529 '*', '#', '_', '!', '.', 'o', 'q', \
1529 'z', 'Z'} 1530 'z', 'Z', 'g'}
1530 1531
1531 /* 1532 /*
1532 * Boolean constants 1533 * Boolean constants
1533 */ 1534 */
1534 #ifndef TRUE 1535 #ifndef TRUE