comparison runtime/doc/if_mzsch.txt @ 625:81fe2ccc1207 v7.0179

updated for version 7.0179
author vimboss
date Thu, 12 Jan 2006 23:22:24 +0000
parents 2463194c8cdd
children 0f9f4761ad9c
comparison
equal deleted inserted replaced
624:91e7d4a7b3b0 625:81fe2ccc1207
1 *if_mzsch.txt* For Vim version 7.0aa. Last change: 2005 May 08 1 *if_mzsch.txt* For Vim version 7.0aa. Last change: 2006 Jan 05
2 2
3 3
4 VIM REFERENCE MANUAL by Sergey Khorev 4 VIM REFERENCE MANUAL by Sergey Khorev
5 5
6 6
8 8
9 1. Commands |mzscheme-commands| 9 1. Commands |mzscheme-commands|
10 2. Examples |mzscheme-examples| 10 2. Examples |mzscheme-examples|
11 3. Threads |mzscheme-threads| 11 3. Threads |mzscheme-threads|
12 4. The Vim access procedures |mzscheme-vim| 12 4. The Vim access procedures |mzscheme-vim|
13 5. Dynamic loading |mzscheme-dynamic|
13 14
14 {Vi does not have any of these commands} 15 {Vi does not have any of these commands}
15 16
16 The MzScheme interface is available only if Vim was compiled with the 17 The MzScheme interface is available only if Vim was compiled with the
17 |+mzscheme| feature. 18 |+mzscheme| feature.
241 (get-win-list [buffer]) Get list of windows for a buffer. 242 (get-win-list [buffer]) Get list of windows for a buffer.
242 (get-cursor [window]) Get cursor position in a window as 243 (get-cursor [window]) Get cursor position in a window as
243 a pair (linenr . column). 244 a pair (linenr . column).
244 (set-cursor (line . col) [window]) Set cursor position. 245 (set-cursor (line . col) [window]) Set cursor position.
245 246
247 ==============================================================================
248 5. Dynamic loading *mzscheme-dynamic*
249
250 On MS-Windows the MzScheme libraries can be loaded dynamically. The |:version|
251 output then includes |+mzscheme/dyn|.
252
253 This means that Vim will search for the MzScheme DLL files only when needed.
254 When you don't use the MzScheme interface you don't need them, thus you can
255 use Vim without these DLL files.
256
257 To use the MzScheme interface the MzScheme DLLs must be in your search path.
258 In a console window type "path" to see what directories are used.
259
260 The names of the DLLs must match the MzScheme version Vim was compiled with.
261 For MzScheme version 209 they will be "libmzsch209_000.dll" and
262 "libmzgc209_000.dll". To know for sure edit "gvim.exe" and search for
263 "libmzsch\d\d\d_\d\d\d\.dll\c".
264
246 ====================================================================== 265 ======================================================================
247 vim:tw=78:ts=8:sts=4:ft=help:norl: 266 vim:tw=78:ts=8:sts=4:ft=help:norl: