comparison src/structs.h @ 16545:7a563ee902b6 v8.1.1276

patch 8.1.1276: cannot combine text properties with syntax highlighting commit https://github.com/vim/vim/commit/de24a8701328b1cce7cad0ee11b415369b482420 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 5 15:48:00 2019 +0200 patch 8.1.1276: cannot combine text properties with syntax highlighting Problem: Cannot combine text properties with syntax highlighting. Solution: Add the "combine" field to prop_type_add(). (closes https://github.com/vim/vim/issues/4343)
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 May 2019 16:00:05 +0200
parents 54ffc82f38a8
children bcc343175103
comparison
equal deleted inserted replaced
16544:609f0de1e64c 16545:7a563ee902b6
725 char_u pt_name[1]; // property type name, actually longer 725 char_u pt_name[1]; // property type name, actually longer
726 } proptype_T; 726 } proptype_T;
727 727
728 #define PT_FLAG_INS_START_INCL 1 // insert at start included in property 728 #define PT_FLAG_INS_START_INCL 1 // insert at start included in property
729 #define PT_FLAG_INS_END_INCL 2 // insert at end included in property 729 #define PT_FLAG_INS_END_INCL 2 // insert at end included in property
730 #define PT_FLAG_COMBINE 4 // combine with syntax highlight
730 731
731 // Sign group 732 // Sign group
732 typedef struct signgroup_S 733 typedef struct signgroup_S
733 { 734 {
734 short_u refcount; // number of signs in this group 735 short_u refcount; // number of signs in this group