runtime(doc): Fix example highlighting at :help prop_list()
Commit:
https://github.com/vim/vim/commit/97da1ec67063c7f8413886e221a98a02e401054d
Author: Doug Kearns <
dougk...@gmail.com>
Date: Mon Oct 13 21:07:22 2025 +0000
runtime(doc): Fix example highlighting at :help prop_list()
closes:
https://github.com/vim/vim/issues/18573
Signed-off-by: Doug Kearns <
dougk...@gmail.com>
Signed-off-by: Christian Brabandt <
c...@256bit.org>
diff --git a/runtime/doc/textprop.txt b/runtime/doc/textprop.txt
index ff1baf88c..fbef22842 100644
--- a/runtime/doc/textprop.txt
+++ b/runtime/doc/textprop.txt
@@ -1,4 +1,4 @@
-*textprop.txt* For Vim version 9.1. Last change: 2025 Oct 12
+*textprop.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -363,7 +363,7 @@ prop_list({lnum} [, {props}]) *prop_list()*
Returns an empty list on error.
- Examples:
+ Examples: >
" get text properties placed in line 5
echo prop_list(5)
" get text properties placed in line 20 in buffer 4
@@ -384,7 +384,7 @@ prop_list({lnum} [, {props}]) *prop_list()*
" in buffer 4.
echo prop_list(1, {'bufnr': 4, 'types': ['myprop'],
\ 'ids': [100], 'end_lnum': -1})
-
+<
Can also be used as a |method|: >
GetLnum()->prop_list()
<