diff options
author | James McCoy <jamessan@jamessan.com> | 2021-12-22 19:45:28 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-22 19:45:28 +0000 |
commit | a80aad717464760a5a50ac2201ce35b24a0cf7a5 (patch) | |
tree | 968eca4115530a2d08a151f5c3cc957b4b43d69d /src/structs.h | |
parent | 82b3b4c6cf2973fe767f8e2311482af0bd95267e (diff) | |
download | vim-git-a80aad717464760a5a50ac2201ce35b24a0cf7a5.tar.gz |
patch 8.2.3874: cannot highlight the number column for a signv8.2.3874
Problem: Cannot highlight the number column for a sign.
Solution: Add the "numhl" argument. (James McCoy, closes #9381)
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index 7023ac3d3..41604537f 100644 --- a/src/structs.h +++ b/src/structs.h @@ -854,6 +854,7 @@ typedef struct sign_attrs_S { int sat_texthl; int sat_linehl; int sat_culhl; + int sat_numhl; int sat_priority; } sign_attrs_T; |