comparison src/vim.h @ 18471:b9cf60801963 v8.1.2229

patch 8.1.2229: cannot color number column above/below cursor differently Commit: https://github.com/vim/vim/commit/efae76ab1a43d5a628d8c2fa4218ace6ba597f5d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 27 22:54:58 2019 +0100 patch 8.1.2229: cannot color number column above/below cursor differently Problem: Cannot color number column above/below cursor differently. Solution: Add LineNrAbove and LineNrBelow. (Shaun Brady, closes https://github.com/vim/vim/issues/624)
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Oct 2019 23:00:03 +0100
parents 18d7337b6837
children e93cab5d0f0f
comparison
equal deleted inserted replaced
18470:0a2e927170c2 18471:b9cf60801963
1380 , HLF_I // incremental search 1380 , HLF_I // incremental search
1381 , HLF_L // last search string 1381 , HLF_L // last search string
1382 , HLF_M // "--More--" message 1382 , HLF_M // "--More--" message
1383 , HLF_CM // Mode (e.g., "-- INSERT --") 1383 , HLF_CM // Mode (e.g., "-- INSERT --")
1384 , HLF_N // line number for ":number" and ":#" commands 1384 , HLF_N // line number for ":number" and ":#" commands
1385 , HLF_LNA // LineNrAbove
1386 , HLF_LNB // LineNrBelow
1385 , HLF_CLN // current line number 1387 , HLF_CLN // current line number
1386 , HLF_R // return to continue message and yes/no questions 1388 , HLF_R // return to continue message and yes/no questions
1387 , HLF_S // status lines 1389 , HLF_S // status lines
1388 , HLF_SNC // status lines of not-current windows 1390 , HLF_SNC // status lines of not-current windows
1389 , HLF_C // column to separate vertically split windows 1391 , HLF_C // column to separate vertically split windows
1421 } hlf_T; 1423 } hlf_T;
1422 1424
1423 // The HL_FLAGS must be in the same order as the HLF_ enums! 1425 // The HL_FLAGS must be in the same order as the HLF_ enums!
1424 // When changing this also adjust the default for 'highlight'. 1426 // When changing this also adjust the default for 'highlight'.
1425 #define HL_FLAGS {'8', '~', '@', 'd', 'e', 'h', 'i', 'l', 'm', 'M', \ 1427 #define HL_FLAGS {'8', '~', '@', 'd', 'e', 'h', 'i', 'l', 'm', 'M', \
1426 'n', 'N', 'r', 's', 'S', 'c', 't', 'v', 'V', 'w', 'W', \ 1428 'n', 'a', 'b', 'N', 'r', 's', 'S', 'c', 't', 'v', 'V', \
1427 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \ 1429 'w', 'W', 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \
1428 'B', 'P', 'R', 'L', \ 1430 'B', 'P', 'R', 'L', \
1429 '+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o', 'q', \ 1431 '+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o', 'q', \
1430 'z', 'Z'} 1432 'z', 'Z'}
1431 1433
1432 /* 1434 /*