]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Add [range] spec to :help :tcl and :help :tclfile
authorDoug Kearns <dougkearns@gmail.com>
Fri, 29 Aug 2025 16:19:04 +0000 (18:19 +0200)
committerChristian Brabandt <cb@256bit.org>
Fri, 29 Aug 2025 16:19:04 +0000 (18:19 +0200)
A range is allowed for all :tcl* commands.

closes: #18154

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

index 1589178a8fa12b6723657b5f19dbf68de1531e75..2de3bea4c66cba6a934ee85620e57eb88844e8a5 100644 (file)
@@ -1,4 +1,4 @@
-*if_tcl.txt*    For Vim version 9.1.  Last change: 2024 Oct 05
+*if_tcl.txt*    For Vim version 9.1.  Last change: 2025 Aug 29
 
 
                  VIM REFERENCE MANUAL    by Ingo Wilken
@@ -26,7 +26,7 @@ comments, ideas etc to <Ingo.Wilken@informatik.uni-oldenburg.de>
 1. Commands                            *tcl-ex-commands* *E571* *E572*
 
                                                        *:tcl*
-:tcl {cmd}             Execute Tcl command {cmd}.  A simple check if `:tcl`
+:[range]tcl {cmd}      Execute Tcl command {cmd}.  A simple check if `:tcl`
                        is working: >
                                :tcl puts "Hello"
 
@@ -69,7 +69,8 @@ To see what version of Tcl you have: >
                        See |tcl-var-line| and |tcl-var-lnum|.
 
                                                        *:tclfile* *:tclf*
-:tclf[ile] {file}      Execute the Tcl script in {file}.  This is the same as
+:[range]tclf[ile] {file}
+                       Execute the Tcl script in {file}.  This is the same as
                        ":tcl source {file}", but allows file name completion.