changeset 33658:9bb0f134585b

runtime(doc): missing code formatting in if_pyth.txt Commit: https://github.com/vim/vim/commit/a56f02d824288104823e9740e1b1fe045c3ab994 Author: Christian Brabandt <cb@256bit.org> Date: Wed Oct 25 21:21:56 2023 +0200 runtime(doc): missing code formatting in if_pyth.txt fixes: https://github.com/vim/vim/issues/13418 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 25 Oct 2023 21:30:06 +0200
parents ecb6be083728
children 867fa40377c1
files runtime/doc/if_pyth.txt
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/doc/if_pyth.txt
+++ b/runtime/doc/if_pyth.txt
@@ -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))