comparison runtime/doc/if_tcl.txt @ 16553:0e473e9e70c2 v8.1.1280

patch 8.1.1280: remarks about functionality not in Vi clutters the help commit https://github.com/vim/vim/commit/25c9c680ec4dfbb51f4ef21c3460a48d3c67ffc8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 5 18:13:34 2019 +0200 patch 8.1.1280: remarks about functionality not in Vi clutters the help Problem: Remarks about functionality not in Vi clutters the help. Solution: Move all info about what is new in Vim or already existed in Vi to vi_diff.txt. Remove {not in Vi} remarks. (closes #4268) Add "noet" to the help files modeline. Also include many other help file improvements.
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 May 2019 18:15:06 +0200
parents 2f7e67dd088c
children 2704c4e3e20a
comparison
equal deleted inserted replaced
16552:deb3d4f5be8b 16553:0e473e9e70c2
1 *if_tcl.txt* For Vim version 8.1. Last change: 2016 Jan 01 1 *if_tcl.txt* For Vim version 8.1. Last change: 2019 May 05
2 2
3 3
4 VIM REFERENCE MANUAL by Ingo Wilken 4 VIM REFERENCE MANUAL by Ingo Wilken
5 5
6 6
14 6. Miscellaneous; Output from Tcl |tcl-misc| |tcl-output| 14 6. Miscellaneous; Output from Tcl |tcl-misc| |tcl-output|
15 7. Known bugs & problems |tcl-bugs| 15 7. Known bugs & problems |tcl-bugs|
16 8. Examples |tcl-examples| 16 8. Examples |tcl-examples|
17 9. Dynamic loading |tcl-dynamic| 17 9. Dynamic loading |tcl-dynamic|
18 18
19 {Vi does not have any of these commands} *E280* 19 *E280*
20 20 {only available when Vim was compiled with the |+tcl| feature}
21 The Tcl interface only works when Vim was compiled with the |+tcl| feature.
22 21
23 WARNING: There are probably still some bugs. Please send bug reports, 22 WARNING: There are probably still some bugs. Please send bug reports,
24 comments, ideas etc to <Ingo.Wilken@informatik.uni-oldenburg.de> 23 comments, ideas etc to <Ingo.Wilken@informatik.uni-oldenburg.de>
25 24
26 ============================================================================== 25 ==============================================================================
64 line in turn, and "lnum" to the line number. Setting 63 line in turn, and "lnum" to the line number. Setting
65 "line" will change the text, but note that it is not 64 "line" will change the text, but note that it is not
66 possible to add or delete lines using this command. 65 possible to add or delete lines using this command.
67 If {cmd} returns an error, the command is interrupted. 66 If {cmd} returns an error, the command is interrupted.
68 The default for [range] is the whole file: "1,$". 67 The default for [range] is the whole file: "1,$".
69 See |tcl-var-line| and |tcl-var-lnum|. {not in Vi} 68 See |tcl-var-line| and |tcl-var-lnum|.
70 69
71 *:tclfile* *:tclf* 70 *:tclfile* *:tclf*
72 :tclf[ile] {file} Execute the Tcl script in {file}. This is the same as 71 :tclf[ile] {file} Execute the Tcl script in {file}. This is the same as
73 ":tcl source {file}", but allows file name completion. 72 ":tcl source {file}", but allows file name completion.
74 {not in Vi}
75 73
76 74
77 Note that Tcl objects (like variables) persist from one command to the next, 75 Note that Tcl objects (like variables) persist from one command to the next,
78 just as in the Tcl shell. 76 just as in the Tcl shell.
79 77