1- *textprop.txt* For Vim version 8.1. Last change: 2018 Dec 13
1+ *textprop.txt* For Vim version 8.1. Last change: 2018 Dec 14
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -72,8 +72,8 @@ Suppose line 11 in a buffer has this text (excluding the indent):
7272
7373To highlight the numbers: >
7474 call prop_type_add('number', {'highlight': 'Constant'})
75- call prop_add(11, 12, {'length': 3, 'type': 'number})
76- call prop_add(11, 32, {'length': 4, 'type': 'number})
75+ call prop_add(11, 12, {'length': 3, 'type': 'number' })
76+ call prop_add(11, 32, {'length': 4, 'type': 'number' })
7777
7878 Setting "start_incl" and "end_incl" is useful when white space surrounds the
7979text, e.g. for a function name. Using false is useful when the text starts
@@ -86,7 +86,7 @@ and/or ends with a specific character, such as the quote surrounding a string.
8686 ^^^^^^ property with start_incl and end_incl not set
8787
8888Nevertheless, when text is inserted or deleted the text may need to be parsed
89- and the text properties updated. But this can be done asynchrnously .
89+ and the text properties updated. But this can be done asynchronously .
9090
9191==============================================================================
92922. Functions *text-prop-functions*
0 commit comments