diff runtime/doc/textprop.txt @ 15334:9d3d7b0f4861

Update runtime files commit https://github.com/vim/vim/commit/4c05fa08c9739e307ddc88ac91ba6d208f1fd68e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 1 15:32:17 2019 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Tue, 01 Jan 2019 15:45:06 +0100
parents 97b40b4c6911
children f0f06837a699
line wrap: on
line diff
--- a/runtime/doc/textprop.txt
+++ b/runtime/doc/textprop.txt
@@ -1,4 +1,4 @@
-*textprop.txt*  For Vim version 8.1.  Last change: 2018 Dec 27
+*textprop.txt*  For Vim version 8.1.  Last change: 2018 Dec 30
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -70,11 +70,14 @@ Suppose line 11 in a buffer has this tex
 
 	The number 123 is smaller than 4567.
 
-To highlight the numbers: >
+To highlight the numbers in this text: >
 	call prop_type_add('number', {'highlight': 'Constant'})
 	call prop_add(11, 12, {'length': 3, 'type': 'number'})
 	call prop_add(11, 32, {'length': 4, 'type': 'number'})
 
+Try inserting or deleting lines above the text, you will see that the text
+properties stick to the text, thus the line number is adjusted as needed.
+
 Setting "start_incl" and "end_incl" is useful when white space surrounds the
 text, e.g. for a function name.  Using false is useful when the text starts
 and/or ends with a specific character, such as the quote surrounding a string.