]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): missing code formatting in if_pyth.txt
authorChristian Brabandt <cb@256bit.org>
Wed, 25 Oct 2023 19:21:56 +0000 (21:21 +0200)
committerChristian Brabandt <cb@256bit.org>
Wed, 25 Oct 2023 19:21:56 +0000 (21:21 +0200)
fixes: #13418

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/if_pyth.txt

index c0b968e07c9a2ba58e82255f41ba19a852408d72..4ea6d138028436856b055f4807974163a3c1b97d 100644 (file)
@@ -1,4 +1,4 @@
-*if_pyth.txt*   For Vim version 9.0.  Last change: 2022 Feb 22
+*if_pyth.txt*   For Vim version 9.0.  Last change: 2023 Oct 25
 
 
                  VIM REFERENCE MANUAL    by Paul Moore
@@ -524,7 +524,7 @@ The range object methods are:
 
 Range object type is available using "Range" attribute of vim module.
 
-Example (assume r is the current range):
+Example (assume r is the current range): >
        # Send all lines in a range to the default printer
        vim.command("%d,%dhardcopy!" % (r.start+1,r.end+1))