comparison runtime/doc/textprop.txt @ 18456:6d11fc4aa683

Update runtime files Commit: https://github.com/vim/vim/commit/96f45c0b6fc9e9d404e6805593ed1e0e6795e470 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 26 19:53:45 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Oct 2019 20:00:04 +0200
parents 834b7854aa3c
children e9a47bcf7b94
comparison
equal deleted inserted replaced
18455:3c98dfd2380c 18456:6d11fc4aa683
1 *textprop.txt* For Vim version 8.1. Last change: 2019 Sep 04 1 *textprop.txt* For Vim version 8.1. Last change: 2019 Oct 23
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
7 Displaying text with properties attached. *textprop* *text-properties* 7 Displaying text with properties attached. *textprop* *text-properties*
8
9 THIS IS UNDER DEVELOPMENT - ANYTHING MAY STILL CHANGE *E967*
10
11 What is not working yet:
12 - Adjusting column/length when inserting text
13 - Text properties spanning more than one line
14 - prop_find()
15 8
16 9
17 1. Introduction |text-prop-intro| 10 1. Introduction |text-prop-intro|
18 2. Functions |text-prop-functions| 11 2. Functions |text-prop-functions|
19 3. When text changes |text-prop-changes| 12 3. When text changes |text-prop-changes|
91 var = "text"; ~ 84 var = "text"; ~
92 ^^^^^^ property with start_incl and end_incl not set 85 ^^^^^^ property with start_incl and end_incl not set
93 86
94 Nevertheless, when text is inserted or deleted the text may need to be parsed 87 Nevertheless, when text is inserted or deleted the text may need to be parsed
95 and the text properties updated. But this can be done asynchronously. 88 and the text properties updated. But this can be done asynchronously.
89
90
91 Internal error *E967*
92
93 If you see E967, please report the bug. You can do this at Github:
94 https://github.com/vim/vim/issues/new
96 95
97 ============================================================================== 96 ==============================================================================
98 2. Functions *text-prop-functions* 97 2. Functions *text-prop-functions*
99 98
100 Manipulating text property types: 99 Manipulating text property types: