From: Doug Kearns Date: Mon, 13 Oct 2025 21:07:22 +0000 (+0000) Subject: runtime(doc): Fix example highlighting at :help prop_list() X-Git-Tag: v9.1.1855~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=97da1ec67063c7f8413886e221a98a02e401054d;p=thirdparty%2Fvim.git runtime(doc): Fix example highlighting at :help prop_list() closes: #18573 Signed-off-by: Doug Kearns Signed-off-by: Christian Brabandt --- diff --git a/runtime/doc/textprop.txt b/runtime/doc/textprop.txt index ff1baf88cc..fbef22842b 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() <