comparison runtime/doc/if_tcl.txt @ 557:862863033fdd v7.0158

updated for version 7.0158
author vimboss
date Wed, 23 Nov 2005 21:25:05 +0000
parents 4707450c2b33
children 0f9f4761ad9c
comparison
equal deleted inserted replaced
556:f9eaf0a9872d 557:862863033fdd
1 *if_tcl.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 1 *if_tcl.txt* For Vim version 7.0aa. Last change: 2005 Oct 14
2 2
3 3
4 VIM REFERENCE MANUAL by Ingo Wilken 4 VIM REFERENCE MANUAL by Ingo Wilken
5 5
6 6
12 4. Tcl window commands |tcl-window-cmds| 12 4. Tcl window commands |tcl-window-cmds|
13 5. Tcl buffer commands |tcl-buffer-cmds| 13 5. Tcl buffer commands |tcl-buffer-cmds|
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 18
18 {Vi does not have any of these commands} *E280* *E281* 19 {Vi does not have any of these commands} *E280* *E281*
19 20
20 The Tcl interface only works when Vim was compiled with the |+tcl| feature. 21 The Tcl interface only works when Vim was compiled with the |+tcl| feature.
21 22
507 if has("tcl") 508 if has("tcl")
508 tclfile ~/.vimrc.tcl 509 tclfile ~/.vimrc.tcl
509 endif 510 endif
510 511
511 ============================================================================== 512 ==============================================================================
513 9. Dynamic loading *tcl-dynamic*
514
515 On MS-Windows the Tcl library can be loaded dynamically. The |:version|
516 output then includes |+tcl/dyn|.
517
518 This means that Vim will search for the Tcl DLL file only when needed. When
519 you don't use the Tcl interface you don't need it, thus you can use Vim
520 without this DLL file.
521
522 To use the Tcl interface the Tcl DLL must be in your search path. In a
523 console window type "path" to see what directories are used.
524
525 The name of the DLL must match the Tcl version Vim was compiled with.
526 Currently the name is "tcl83.dll". That is for Tcl 8.3. To know for sure
527 edit "gvim.exe" and search for "tcl\d*.dll\c".
528
529 ==============================================================================
512 vim:tw=78:ts=8:ft=help:norl: 530 vim:tw=78:ts=8:ft=help:norl: