diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-17 13:05:07 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-17 13:05:07 +0200 |
commit | bfd451283f8c37926f4b0aa22b74b534bd84e482 (patch) | |
tree | 10b60e88040d935de174aa80cfca48f87655d91a /src/textprop.c | |
parent | dabfde04fe974b444d08715178c619c99c2cdcd8 (diff) | |
download | vim-git-bfd451283f8c37926f4b0aa22b74b534bd84e482.tar.gz |
patch 8.1.1340: attributes from 'cursorline' overwrite textpropv8.1.1340
Problem: Attributes from 'cursorline' overwrite textprop.
Solution: Combine the attributes. (closes #3912)
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/textprop.c b/src/textprop.c index 361ecb126..4c78ff11c 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -11,10 +11,7 @@ * Text properties implementation. See ":help text-properties". * * TODO: - * - When using 'cursorline' attributes should be merged. (#3912) * - Adjust text property column and length when text is inserted/deleted. - * -> splitting a line can create a zero-length property. Don't highlight it - * and extend it when inserting text. * -> a :substitute with a multi-line match * -> join two lines, also with BS in Insert mode * -> search for changed_bytes() from misc1.c |