comparison src/structs.h @ 29607:33d7c1fa2dac v9.0.0144

patch 9.0.0144: text property cannot override 'cursorline' highlight Commit: https://github.com/vim/vim/commit/f4ba8bc47eb3c6b5899ef31d083b9b8f0d4ca456 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 5 17:05:04 2022 +0100 patch 9.0.0144: text property cannot override 'cursorline' highlight Problem: Text property cannot override 'cursorline' highlight. Solution: Add the "override" flag to prop_type_add(). (closes https://github.com/vim/vim/issues/5533, closes #8225).
author Bram Moolenaar <Bram@vim.org>
date Fri, 05 Aug 2022 18:15:08 +0200
parents f2d7f20d83c3
children a3a966b8b7a7
comparison
equal deleted inserted replaced
29606:3e5d197e698e 29607:33d7c1fa2dac
832 } proptype_T; 832 } proptype_T;
833 833
834 #define PT_FLAG_INS_START_INCL 1 // insert at start included in property 834 #define PT_FLAG_INS_START_INCL 1 // insert at start included in property
835 #define PT_FLAG_INS_END_INCL 2 // insert at end included in property 835 #define PT_FLAG_INS_END_INCL 2 // insert at end included in property
836 #define PT_FLAG_COMBINE 4 // combine with syntax highlight 836 #define PT_FLAG_COMBINE 4 // combine with syntax highlight
837 #define PT_FLAG_OVERRIDE 8 // override any highlight
837 838
838 // Sign group 839 // Sign group
839 typedef struct signgroup_S 840 typedef struct signgroup_S
840 { 841 {
841 int sg_next_sign_id; // next sign id for this group 842 int sg_next_sign_id; // next sign id for this group