diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2021-08-16 21:39:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-08-16 21:39:09 +0200 |
commit | ccfb7c6758510e0fe5f390149ea14aee6ff4f55e (patch) | |
tree | bc6984780b38233a25aff66d15d9af2798999bb0 /runtime/doc/usr_41.txt | |
parent | 434df7a401c92d4084bb0a01ffd6d1737ae0193b (diff) | |
download | vim-git-ccfb7c6758510e0fe5f390149ea14aee6ff4f55e.tar.gz |
patch 8.2.3356: adding many text properties requires a lot of function callsv8.2.3356
Problem: Adding many text properties requires a lot of function calls.
Solution: Add the prop_add_list() function. (Yegappan Lakshmanan,
closes #8751)
Diffstat (limited to 'runtime/doc/usr_41.txt')
-rw-r--r-- | runtime/doc/usr_41.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt index 3a3a0fca7..a5dde18c3 100644 --- a/runtime/doc/usr_41.txt +++ b/runtime/doc/usr_41.txt @@ -1161,6 +1161,7 @@ Prompt Buffer: *promptbuffer-functions* Text Properties: *text-property-functions* prop_add() attach a property at a position + prop_add_list() attach a property at multiple positions prop_clear() remove all properties from a line or lines prop_find() search for a property prop_list() return a list of all properties in a line |