summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-12-26 00:25:20 +0100
committerBram Moolenaar <Bram@vim.org>2018-12-26 00:25:20 +0100
commit48f88ac85be8446a42a03cec45264eac21f9eba8 (patch)
treeaf264dc3a069ecb74ab40fd9457c75a4d0b9c261 /src/structs.h
parent4604fbbbff9e1f924e76a6b4695626b519bd4030 (diff)
patch 8.1.0638: text property highlighting is off by one columnv8.1.0638
Problem: Text property highlighting is off by one column. (Bjorn Linse) Solution: Update text property highlighting earlier. Let it overrule syntax highlighting.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index 2f2795a128..aa59bff245 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -705,7 +705,7 @@ typedef struct memline
*/
typedef struct textprop_S
{
- colnr_T tp_col; // start column
+ colnr_T tp_col; // start column (one based)
colnr_T tp_len; // length in bytes
int tp_id; // identifier
int tp_type; // property type