diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-26 13:36:21 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-26 13:36:21 +0100 |
commit | bc93cebb692f47488d66f078d1728031e9be35e7 (patch) | |
tree | b7f5cebc4cff0cc4a4f678fdcc890226415647e1 /runtime/doc/textprop.txt | |
parent | 0c2ca58ef06ac49d40330bbe1ee70c3d8af7a648 (diff) | |
download | vim-git-bc93cebb692f47488d66f078d1728031e9be35e7.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/doc/textprop.txt')
-rw-r--r-- | runtime/doc/textprop.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/runtime/doc/textprop.txt b/runtime/doc/textprop.txt index 2c6674f05..6dc58b707 100644 --- a/runtime/doc/textprop.txt +++ b/runtime/doc/textprop.txt @@ -1,4 +1,4 @@ -*textprop.txt* For Vim version 8.2. Last change: 2020 Jan 10 +*textprop.txt* For Vim version 8.2. Last change: 2020 Feb 22 VIM REFERENCE MANUAL by Bram Moolenaar @@ -143,8 +143,9 @@ prop_add({lnum}, {col}, {props}) within one line, or use "end_lnum" and "end_col" for a property that spans more than one line. When neither "length" nor "end_col" are given the property - will be zero-width. That means it will not be highlighted but - will move with the text, as a kind of mark. + will be zero-width. That means it will move with the text, as + a kind of mark. One character will be highlighted, if the + type specifies highlighting. The property can end exactly at the last character of the text, or just after it. In the last case, if text is appended to the line, the text property size will increase, also when @@ -335,10 +336,11 @@ properties below the changed text, so that they still highlight the same text, thus you don't need to update these. -Text property columns are not updated: ~ +Text property columns are not updated or copied: ~ - When setting the line with |setline()| or through an interface, such as Lua, Tcl or Python. Vim does not know what text got inserted or deleted. +- With a command like `:move`, which takes a line of text out of context. vim:tw=78:ts=8:noet:ft=help:norl: |