]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Fix example highlighting at :help prop_list()
authorDoug Kearns <dougkearns@gmail.com>
Mon, 13 Oct 2025 21:07:22 +0000 (21:07 +0000)
committerChristian Brabandt <cb@256bit.org>
Mon, 13 Oct 2025 21:07:22 +0000 (21:07 +0000)
closes: #18573

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/textprop.txt

index ff1baf88ccada6b492bdf4f6a5ab50db4be94d8b..fbef22842bdf1cecf16c68c0e9455649ed566ee3 100644 (file)
@@ -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()
 <