comparison src/vim.h @ 26266:365e7f083f02 v8.2.3664

patch 8.2.3664: cannot adjust sign highlighting for 'cursorline' Commit: https://github.com/vim/vim/commit/e413ea04b716effb28eb49dbc98ad3f9f761545a Author: Bram Moolenaar <Bram@vim.org> Date: Wed Nov 24 16:20:13 2021 +0000 patch 8.2.3664: cannot adjust sign highlighting for 'cursorline' Problem: Cannot adjust sign highlighting for 'cursorline'. Solution: Add CursorLineSign and CursorLineFold highlight groups. (Gregory Anders, closes #9201)
author Bram Moolenaar <Bram@vim.org>
date Wed, 24 Nov 2021 17:30:06 +0100
parents 9fadec3d0c40
children 8b7f01b39d79
comparison
equal deleted inserted replaced
26265:e3e34a2ed54d 26266:365e7f083f02
1409 , HLF_CM // Mode (e.g., "-- INSERT --") 1409 , HLF_CM // Mode (e.g., "-- INSERT --")
1410 , HLF_N // line number for ":number" and ":#" commands 1410 , HLF_N // line number for ":number" and ":#" commands
1411 , HLF_LNA // LineNrAbove 1411 , HLF_LNA // LineNrAbove
1412 , HLF_LNB // LineNrBelow 1412 , HLF_LNB // LineNrBelow
1413 , HLF_CLN // current line number 1413 , HLF_CLN // current line number
1414 , HLF_CLS // current line sign column
1415 , HLF_CLF // current line fold
1414 , HLF_R // return to continue message and yes/no questions 1416 , HLF_R // return to continue message and yes/no questions
1415 , HLF_S // status lines 1417 , HLF_S // status lines
1416 , HLF_SNC // status lines of not-current windows 1418 , HLF_SNC // status lines of not-current windows
1417 , HLF_C // column to separate vertically split windows 1419 , HLF_C // column to separate vertically split windows
1418 , HLF_T // Titles for output from ":set all", ":autocmd" etc. 1420 , HLF_T // Titles for output from ":set all", ":autocmd" etc.
1449 } hlf_T; 1451 } hlf_T;
1450 1452
1451 // The HL_FLAGS must be in the same order as the HLF_ enums! 1453 // The HL_FLAGS must be in the same order as the HLF_ enums!
1452 // When changing this also adjust the default for 'highlight'. 1454 // When changing this also adjust the default for 'highlight'.
1453 #define HL_FLAGS {'8', '~', '@', 'd', 'e', 'h', 'i', 'l', 'm', 'M', \ 1455 #define HL_FLAGS {'8', '~', '@', 'd', 'e', 'h', 'i', 'l', 'm', 'M', \
1454 'n', 'a', 'b', 'N', 'r', 's', 'S', 'c', 't', 'v', 'V', \ 1456 'n', 'a', 'b', 'N', 'G', 'O', 'r', 's', 'S', 'c', 't', 'v', 'V', \
1455 'w', 'W', 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \ 1457 'w', 'W', 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \
1456 'B', 'P', 'R', 'L', \ 1458 'B', 'P', 'R', 'L', \
1457 '+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o', 'q', \ 1459 '+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o', 'q', \
1458 'z', 'Z'} 1460 'z', 'Z'}
1459 1461