commit | 39f7aa3c3124065b50f182b1d2f7ac92a0918656 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Aug 31 22:00:05 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Aug 31 22:00:05 2020 +0200 |
tree | 238fc2ad919f9e66aca9519d9dd30585ae918d2a | |
parent | 7d6979608ee83b06ccfab2589da3047b143defae [diff] [blame] |
patch 8.2.1556: cursorline highlighting always overrules sign highlighting Problem: Cursorline highlighting always overrules sign highlighting. Solution: Combine the highlighting, use the priority to decide how. (closes #6812)
diff --git a/src/structs.h b/src/structs.h index 38ebcf5..528c247 100644 --- a/src/structs.h +++ b/src/structs.h
@@ -817,6 +817,7 @@ char_u *sat_text; int sat_texthl; int sat_linehl; + int sat_priority; } sign_attrs_T; #if defined(FEAT_SIGNS) || defined(PROTO)