summaryrefslogtreecommitdiff
path: root/htdocs/download.php
blob: b8b4141f402d9bb85dca324d71254da97c85c117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
<?php
// Downloading Vim
require_once("include/init.inc");
$page_title = "download";
$page_sid = "sid_download.php";

include("header.php");
?>
<A NAME="top"></A>
<h1>Downloading Vim</h1>

Vim is available for many different systems and there are several versions.
This page will help you decide what to download.
<p>
<table cellpadding="4" border="0">
<tr>
<td>Systems</td>
<td>
<ul>
	<li>
	<A HREF="#unix">Unix</A>
	</li>
	<li>
	<A HREF="#pc">PC: MS-DOS and MS-Windows</A>
	</li>
	<li>
	<A HREF="#amiga">Amiga</A>
	</li>
	<li>
	<A HREF="#os2">OS/2</A>
	</li>
	<li>
	<A HREF="#mac">Macintosh</A>
	</li>
	<li>
	<A HREF="#others">Others</A>
	</li>
</ul>
</td>
</tr>

<tr>
<td><a href="<?=$BASE?>/mirrors.php">Mirrors</a></td>
<td>Alternative sites to download Vim files from.
<!--
(<a href="http://www.nluug.nl/ftpserver/status.html">main ftp server status</a>)</td>
-->
</tr>

<tr>
<td><a href="<?=$BASE?>/sources.php">Sources</a></td>
<td>Build Vim yourself and/or make changes.</td>
</tr>

<tr>
<td><a href="<?=$BASE?>/mercurial.php">Mercurial</a></td>
<td>Obtain Vim sources with a Mercurial client (recommended).</td>
</tr>

<tr>
<td><a href="<?=$BASE?>/patches.php">Patches</a></td>
<td>Include the latest improvements (requires sources and rebuilding).</td>
</tr>

<tr>
<td><a href="<?=$BASE?>/runtime.php">Runtime</a></td>
<td>Get the latest syntax files, documentation, etc..</td>
</tr>

<tr>
<td><a href="<?=$BASE?>/vimscriptlinks.php">Script links</a></td>
<td>Links to individual syntax, indent, color, compiler and ftplugin scripts.</td>
</tr>

<tr>
<td><a href="<?=$BASE?>/translations.php">Translations</a></td>
<td>Non-English documentation packages.</td>
</tr>

</table>
<p>

Versions before 7.3 can also be obtained with
<a href="<?=$BASE?>/subversion.php">Subversion</a>
and
<a href="<?=$BASE?>/cvs.php">CVS</a>.

<h1>Version</h1>

Vim 7.3 is the latest stable version.  It is highly recommended, many bugs have 
been fixed since 7.2 and earlier.
If you have a problem with it (e.g.,
when it's too big for your system), you could try version 6.4 or 5.8 instead.
<p>
To avoid having to update this page for every new version, there are
links to the directories.  From there select the files you want to download.
In the file names ## stands for the version number.  For example,
<b>vim##src.zip</b>
with version 7.3 is <b>vim73src.zip</b> and
<b>vim-##-src.tar.gz</b> for version 7.3
is <b>vim-7.3-src.tar.gz</b>.
Links are provided for quick access to the latest version.

<hr noshade size="1" color="#000000">

<A NAME="unix"></A>
<h1>Unix</h1>
The best way to install Vim on Unix is to use the sources.  This requires a
compiler and its support files.  Compiling Vim isn't difficult at all.
You can simply type "make install" when you are happy with the default
features.  Edit the Makefile in the "src" directory to select specific
features.
<p>
You need to download at the sources and the runtime files.
And apply all the latest patches.
For Vim 6 up to 7.2 you can optionally get the "lang" archive, which adds 
translated messages and menus. For 7.3 this is included with the runtime files.
<dl>
<dt><b>Using Mercurial</b></dt>
<dd>
This is the simplest and most efficient way to obtain the latest version, 
including all patches.  This requires the "hg" command.
<br>
The explanations are on this page:
<a href="<?=$BASE?>/mercurial.php">Mercurial</a>
<p>
Summary:
<pre class='example'>
hg clone https://vim.googlecode.com/hg/ vim
cd vim/src
make
</pre>
</dd>

<dt><b>Using Aap</b></dt>
<dd>
Aap is a new tool that does all the work of downloading and patching for you.
You download one file, called a recipe, and "aap install" does all the work.
To later update to the latest version of Vim you do not need to download
anything manually, just use the command "aap update".
<p>
The detailed explanation can be found
<a href="http://www.a-a-p.org/ports.html">here</a>.
This does require Python and installing Aap.  Please report problems to Bram AT
a-a-p.org.
</dd>

<dt><b>version 7.x</b></dt>
<dd>
There is one big file to download that contains almost everything.
It is found in
<A HREF="ftp://ftp.vim.org/pub/vim/unix">the unix directory</A>:
	<table cellpadding="4" border="0">
	<tr>
	<td>The runtime and source files together:</td> <td>vim-##.tar.bz2</td><td><A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2">vim-7.3.tar.bz2</A></td>
	</tr>
	</table>
If you would like to use translated messages and menus on Vim 7.2 and earlier, 
get an additional archive from
<A HREF="ftp://ftp.vim.org/pub/vim/extra">the extra directory</A>:
	<table cellpadding="4" border="0">
	<tr>
	<td>The language files.</td> <td>vim-##-lang.tar.gz</td><td><A HREF="ftp://ftp.vim.org/pub/vim/extra/vim-7.2-lang.tar.gz">vim-7.2-lang.tar.gz</A></td>
	</tr>
	</table>
</dd>
<dt><b>version 6.x</b></dt>
<dd>
You have a choice: Either get the one big archive <b>OR</b> get four smaller
ones (that each fit on a floppy disk).  They are all in
<A HREF="ftp://ftp.vim.org/pub/vim/unix">the unix directory</A>:
	<table cellpadding="4" border="0">
	<tr>
	<td>The runtime and source files together:</td> <td>vim-##.tar.bz2</td><td><A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-6.4.tar.bz2">vim-6.4.tar.bz2</A></td>
	</tr>
	<tr>
	<td>The runtime files part 1:</td> <td>vim-##-rt1.tar.gz</td><td><A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-6.4-rt1.tar.gz">vim-6.4-rt1.tar.gz</A></td>
	</tr>
	<tr>
	<td>The runtime files part 2:</td> <td>vim-##-rt2.tar.gz</td><td><A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-6.4-rt2.tar.gz">vim-6.4-rt2.tar.gz</A></td>
	</tr>
	<tr>
	<td>The source files part 1:</td> <td>vim-##-src1.tar.gz</td><td><A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-6.4-src1.tar.gz">vim-6.4-src1.tar.gz</A></td>
	</tr>
	<tr>
	<td>The source files part 2.</td> <td>vim-##-src2.tar.gz</td><td><A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-6.4-src2.tar.gz">vim-6.4-src2.tar.gz</A></td>
	</tr>
	</table>
If you would like to use translated messages and menus, get an additional
archive from
<A HREF="ftp://ftp.vim.org/pub/vim/extra">the extra directory</A>:
	<table cellpadding="4" border="0">
	<tr>
	<td>The language files.</td> <td>vim-##-lang.tar.gz</td><td><A HREF="ftp://ftp.vim.org/pub/vim/extra/vim-6.4-lang.tar.gz">vim-6.4-lang.tar.gz</A></td>
	</tr>
	</table>
</dd>
<dt><b>version 5.x</b></dt>
<dd>
There are two files you should both get from
<A HREF="ftp://ftp.vim.org/pub/vim/unix">the unix directory</A>:
	<table cellpadding="4" border="0">
	<tr>
	<td>The runtime files:</td> <td>vim-##-rt.tar.gz</td><td><A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-5.8-rt.tar.gz">vim-5.8-rt.tar.gz</A></td>
	</tr>
	<tr>
	<td>The source files:</td> <td>vim-##-src.tar.gz</td><td><A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-5.8-src.tar.gz">vim-5.8-src.tar.gz</A></td>
	</tr>
	</table>
</dd>
</dl>
The files ending in ".tar.gz" are tar archives that are compressed with gzip.
Unpack them with <B>tar -xzf <I>filename</I></B>.
<br>
The single big file ending in ".tar.bz2" is a tar archive compressed with
bzip2.  Uncompress and unpack it with
<B>bunzip2 -c <I>filename</I> | tar -xf -</B>.
<br>
All archives should be unpacked in the same directory.
<p>
If you can't compile yourself or don't want to, look at the site of the
supplier of your Unix version for a packaged Vim executable.  For Linux
distributions and FreeBSD these are often available shortly after a new Vim
version has been released.  But you can't change the features then.
<UL>
<LI>
<B>Debian</B> packages are available at:
<A HREF="http://packages.debian.org/vim">http://packages.debian.org/vim</A>.
</LI>
<LI>
<B>Sun Solaris</B> Vim is included in the Companion Software:
<A HREF="http://wwws.sun.com/software/solaris/freeware/">http://wwws.sun.com/software/solaris/freeware/</A>.
<BR>
Vim for other Sun systems can be found at
<A HREF="http://sunfreeware.com/">http://sunfreeware.com/</a>.
</LI>
<LI>
<B>HPUX</B> with GTK GUI for various HPUX versions:
<A HREF="http://hpux.its.tudelft.nl/hppd/hpux/Editors/vim-6.2/">http://hpux.its.tudelft.nl/hppd/hpux/Editors/vim-6.2/</A> or
<A HREF="http://hpux.connect.org.uk/hppd/hpux/Editors/vim-6.2/">http://hpux.connect.org.uk/hppd/hpux/Editors/vim-6.2/</A> (note that the remark about the GNU GPL is wrong)
</LI>
</UL>

<p>
<A HREF="#top">TOP</A>

<hr noshade size="1" color="#000000">

<A NAME="pc"></A>
<h1>PC: MS-DOS and MS-Windows</h1>
For modern MS-Windows systems (starting with XP) you can simply use the 
executable installer:<br>
&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/gvim73_46.exe">gvim73_46.exe</A><br>
It includes GUI and console versions, for 32 bit and 64 bit systems.
You can select what you want to install and includes an uninstaller.
<p>
Since there are so many different versions of MS operating systems, there are
several versions of Vim for them.
<br>For Vim 5.x, Vim 6.x and Vim 7 look in
<A HREF="ftp://ftp.vim.org/pub/vim/pc">the pc directory</A>.
<dl>
<dt><B>Self-installing executable</B>&nbsp;&nbsp;&nbsp;gvim##.exe &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/gvim73_46.exe">gvim73_46.exe</A></dt>
<dd>
For Vim 6 and later.  This includes a GUI version
of Vim - with many features and OLE support - and all the runtime files.
It works well on MS-Windows 95/98/ME/NT/2000/XP/Vista/7.
Use this if you have enough disk space and memory.  It's the simplest way to
start using Vim on the PC.  The installer allows you to skip the parts you
don't want.
<BR>
For Vim 6.3 and later it also includes a console version, both for MS-Windows 
95/98/ME and MS-Windows NT/2000/XP/Vista/7.  The installer automatically 
selects the right one.
<BR>
For the latest version with all patches included see <a href="#cream">Cream</a>
below.  These versions are unofficial, but the download number
is high and complaints are few.
</dd>
</dl>
<dl>
<dt><b>Win64</b></dt>
<dd>
Native 64-bit binaries for MS-Windows can be found at
<A HREF="http://code.google.com/p/vim-win3264/">http://code.google.com/p/vim-win3264/</A>.
The Win32 binaries should run too, but the 64 bit version has a few minor 
advantages (see the web page at the link).
</dd>
</dl>
<dl>
<dt><B>Runtime files</B>&nbsp;&nbsp;&nbsp;vim##rt.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/vim73_46rt.zip">vim73_46rt.zip</A></dt>
<dd>
For all the following binary versions you need this runtime archive, which
includes the documentation, syntax files, etc.  Always get this, unless you
use the self-installing executable.
</dd>
</dl>
<p>
There are three versions that run as an MS-Windows application.  These provide
menus, scrollbars and a toolbar.
<dl>
<dt><B>GUI executable</B>&nbsp;&nbsp;&nbsp;gvim##.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/gvim73_46.zip">gvim73_46.zip</A></dt>
<dd>
This is the "normal" GUI version.
</dd>
<dt><B>OLE GUI executable</B>&nbsp;&nbsp;&nbsp;gvim##ole.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/gvim73_46ole.zip">gvim73_46ole.zip</A></dt>
<dd>
A GUI version with OLE support.  This offers a few extra features,
such as integration with Visual Developer Studio.  But it uses quite a bit
more memory.
</dd>
<dt><B>Win32s GUI executable</B>&nbsp;&nbsp;&nbsp;gvim##_s.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/gvim73_46_s.zip">gvim73_46_s.zip</A></dt>
<dd>
GUI version for Windows 3.1 with win32s support. (Not available for Vim 6.2 and 6.3)
<br>
A true Windows 3.1 version can be found here:
<A HREF="http://www.bulbous.freeserve.co.uk/vim16.html">http://www.bulbous.freeserve.co.uk/vim16.html</A>
</dd>
</dl>
There are three versions that run on MS-DOS or in a console window in
MS-Windows:
<dl>
<dt><B>16 bit DOS executable</B>&nbsp;&nbsp;&nbsp;vim##d16.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/vim71d16.zip">vim71d16.zip</A></dt>
<dd>
The 16 bit DOS version is the only one that runs on old MS-DOS systems.  Only
use this if you are really desparate, because it excludes many useful features
(such as syntax highlighting and long file names) and quickly runs out of
memory.<br>
The last version available is 7.1, 7.2 and 7.3 are too big to fit in the DOS memory 
model.
</dd>
<dt><B>32 bit DOS executable</B>&nbsp;&nbsp;&nbsp;vim##d32.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/vim73_46d32.zip">vim73_46d32.zip</A></dt>
<dd>
The 32 bit DOS version works well on MS-Windows 95/98/ME.  It requires a DPMI
manager, which needs to be installed on MS-DOS.  MS-Windows already has one.
It supports long file names, but NOT on MS-Windows NT/2000/XP/Vista/7.  It is 
compiled with "big" features.
</dd>
<dt><B>Win32 console executable</B>&nbsp;&nbsp;&nbsp;vim##w32.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/vim73_46w32.zip">vim73_46w32.zip</A></dt>
<dd>
The Win32 console version works well on MS-Windows NT/2000/XP/Vista/7.  It 
supports long file names and is compiled with "big" features.  It does not run
perfectly well on MS-Windows 95/98/ME, especially when resizing the console
window (this may crash MS-Windows...).
</dd>
</dl>
There are a few extra files:
<dl>
<dt><B>iconv library</B>&nbsp;&nbsp;&nbsp;<A HREF="http://sourceforge.net/projects/gettext">libiconv</A></dt>
<dd>
A library used for converting character sets.
Put "iconv.dll" in the same directory as gvim.exe to be able to edit files in
many encodings.  You can find the dll file in the bin directory of the
"libiconv-win32" archive.
</dd>
<dt><B>newer intl library</B>&nbsp;&nbsp;&nbsp;<A HREF="http://sourceforge.net/projects/gettext">libintl</A></dt>
<dd>
The included libintl.dll does not support encoding conversion.
If you have installed the iconv library, as mentioned above, you can install a
gettext library that uses it.
Get "intl.dll" from the bin directory in the gettext-win32 archive and store it
as "libintl.dll" in the same directory as gvim.exe, overwriting the file
that may already be there.
</dd>
<dt><B>PC sources</B>&nbsp;&nbsp;&nbsp;vim##src.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/vim73_46src.zip">vim73_46src.zip</A></dt>
<dd>
The source files, packed for the PC.  This only includes the files needed on
the PC, not for other systems.  The files are in dos format CR-LF.
</dd>
<dt><B>PC debug files</B>&nbsp;&nbsp;&nbsp;gvim##.pdb &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/gvim73_46.pdb">gvim73_46.pdb</A>&nbsp;&nbsp;&nbsp;gvim##ole.pdb &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/gvim73_46ole.pdb">gvim73_46ole.pdb</A>&nbsp;&nbsp;&nbsp;vim##w32.pdb &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/vim73_46w32.pdb">vim73_46w32.pdb</A></dt>
<dd>
When you notice a bug or a crash in Vim these files can be used to help tracing down the problem.  In Vim 7 do ":help debug-win32" to see how.
</dd>
<dt><B>PC translations</B>&nbsp;&nbsp;&nbsp;vim##lang.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/pc/vim72lang.zip">vim72lang.zip</A></dt>
<dd>
<b>Only for 7.2 and earlier, for 7.3 these are included in the "rt" archive.</b>
Translated messages and menu files, packed for the PC.  Use this to see
non-English menus.  The messages are only translated when the libintl.dll
library is installed.
</dd>
<dt><B>Windows 3.1 GUI executable</B>&nbsp;&nbsp;&nbsp;gvim##w16.zip and gvim##m16.zip</dt>
<dd>
These are GUI versions for 16 bit windows (Windows 3.1).  The "w16" has many
features, "m16" has few features (for when you're short on memory).
</dd>
</dl>
The files ending in ".zip" can be unpacked with any unzip program.
Make sure you unpack them all in the same directory!
<P>
<b>Alternate distributions</b>
<P>
<A NAME="cream"></A>
For an unofficial version that does include all the latest patches and
optionally a bit
more: <A HREF="http://cream.sf.net/download.html">Cream</A>.
The "one-click installer" mentioned includes the Cream changes.
For the "real Vim" use the "without Cream" version listed further down.
<P>
You may also try <a href="http://wyw.dcweb.cn/#download">Yongwei's build</a>,
executables with slightly different interfaces supported.
<P>
For a Cygwin binary look at <A HREF="#others">others</A>.
<P>


<p>
<A HREF="#top">TOP</A>

<hr noshade size="1" color="#000000">

<A NAME="amiga"></A>
<h1>Amiga</h1>
Quite a long time ago, Vim development started on the Amiga.  Although it's a
really old system now, it might still work.  However, this has not been tested 
recently.
You may have to use an older version for which Amiga binaries are available.
<p>
For Vim 5.x and Vim 6 look in
<A HREF="ftp://ftp.vim.org/pub/vim/amiga">the amiga directory</A>.
<br>
Vim 7 files can be found at
<A href="http://os4depot.net/index.php?function=showfile&file=utility/text/edit/vim-bin.lha">os4depot.net</a>.  This is for AmigaOS 4.  Made by Peter Bengtsson.
<dl>
<dt><B>Runtime files</B>&nbsp;&nbsp;&nbsp;vim##rt.tgz &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/amiga/vim64rt.tgz">vim64rt.tgz</A></dt>
<dd>
Documentation, syntax files, etc.  You always need this.
</dd>
<dt><B>Executable</B>&nbsp;&nbsp;&nbsp;vim##bin.tgz &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/amiga/vim64bin.tgz">vim64bin.tgz</A></dt>
<dd>
The executables for Vim and Xxd.
For Vim 6 it includes "big" features, for Vim 5.x it
includes the normal features.
For Vim 6.2 it is not available (my Amiga had harddisk problems then, this miraculously healed later).
</dd>
<dt><B>Big executable</B>&nbsp;&nbsp;&nbsp;vim##big.tgz</dt>
<dd>
Vim with "big" features and Xxd.  Only for Vim 5.x.
</dd>
<dt><B>Sources</B>&nbsp;&nbsp;&nbsp;vim##src.tgz &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/amiga/vim64src.tgz">vim64src.tgz</A></dt>
<dd>
The source files for the Amiga.
Only needed when you want to compile Vim yourself.
</dd>
</dl>
The files are all tar archives, compressed with gzip.  To unpack, first
uncompress them with <B>gzip -d <I>filename</I></B>.  Then unpack with
<B>tar xf <I>filename</I></B>.  You need to unpack the archives in the same
directory.

<p>
<A HREF="#top">TOP</A>

<hr noshade size="1" color="#000000">

<A NAME="os2"></A>
<h1>OS/2</h1>
The OS/2 version runs in a console window.
<p>
For Vim 5.x and Vim 6 look in
<A HREF="ftp://ftp.vim.org/pub/vim/os2">the os2 directory</A>.
Version 6.2 is not available.
Versions 6.3 and 6.4 were compiled by David Sanders.
<br>
Version 7.0 was compiled by David Sanders.
<dl>
<dt><B>Runtime files</B>&nbsp;&nbsp;&nbsp;vim##rt.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/os2/vim70rt.zip">vim70rt.zip</A></dt>
<dd>
Documentation, syntax files, etc.  You always need this.
</dd>
<dt><B>Executables</B>&nbsp;&nbsp;&nbsp;vim##os2.zip &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/os2/vim70os2.zip">vim70os2.zip</A></dt>
<dd>
Vim, Xxd, Tee and EMX libraries.
</dd>
</dl>
The files ending in ".zip" can be unpacked with any unzip program.
Make sure you both zip archives in the same directory!
<p>
If you want to compile the OS/2 version, you need the EMX compiler.  Use the
Unix source archive, runtime files and the extra archive.  After unpacking the
runtime archive, move all the files and directories in the "runtime"
directory one level up.

<p>
<A HREF="#top">TOP</A>

<hr noshade size="1" color="#000000">

<A NAME="mac"></A>
<h1>Macintosh</h1>
The Macintosh binaries are not on the Vim ftp site.  They are produced by a few
Macintosh lovers.  Often they lag behind a few versions.
<p>
Since MacOS 10.3 the "vi" program is actually a console version of Vim 6.2 or 
later.  It has few features.  If you want a GUI version or more features Vim 
needs to be installed separately.
<p>
There are currently two kinds of Vim for Macintosh:
<UL>
<LI>Using the Cocoa GUI.  Also known as MacVim.  This is the latest and is 
being actively developed.  This behaves like a Mac application.</LI>
<LI>Using the Carbon GUI.  This is an older way of doing things and isn't
updated much any more.  This behaves more like Vim on Unix.</LI>
</UL>
<p>
<h2>Cocoa (MacVim)</h2>
<p>
MacVim has more a Mac look and feel, is developed actively and most people
prefer this version.  Most of MacVim was made by Bj�rn Winckler.
<p>
MacVim can be downloaded here: <a href="http://code.google.com/p/macvim/">http://code.google.com/p/macvim/</a>
<p>
New versions are made quite often.
Subscribe to the
<a href="http://www.vim.org/maillist.php#vim-mac">vim-mac maillist</a>
to be informed about bugs and updates.
<p>
<h2>Carbon</h2>
<p>
Recent binaries for Mac OS/X can be found on this
<a href="http://sourceforge.net/project/showfiles.php?group_id=213254">SourceForge project</a>.
Maintained by Nicholas Stallard.
<p>
There are several versions of Vim 6.x for Mac OS on
<A href="http://macvim.org/">http://macvim.org/</A>.
<P>
A GUI version for MacOS Classic (7 - 9) compiled by Axel Kielhorn can
be found at <A href="http://macvim.org/MacClassic/">http://macvim.org/MacClassic/</A>.
<P>
A GUI version for MacOS X 10.1 compiled by Benji Fisher can be found
at <A href="http://macvim.org/OSX/">http://macvim.org/OSX/</A>.
This version does not work with MacOS X 10.2 (Jaguar). A special version that
runs only on 10.2 is provided at the same location.
<P>
There is also a version for Mac OSX that works in a terminal window and a GUI
version for X11 with GTK (produced by Marc Liyanage):<br>
<A HREF="http://www.entropy.ch/software/macosx/welcome.html#vim">http://www.entropy.ch/software/macosx/welcome.html#vim</A>
<p>
Here is a multi-byte version of Vim 5.7 (for Japanese, possibly also for
Korean and Chinese; not for Unicode):<br>
<A HREF="http://www-imai.is.s.u-tokyo.ac.jp/~asai/macvim-e.html">http://www-imai.is.s.u-tokyo.ac.jp/~asai/macvim-e.html</A>
<P>
Most of the work for
the Macintosh port (Classic and Carbon) was done by Dany St-Amant.
<p>
If you have OSX and a setup for compiling programs, you can use the Unix and
Extra source code archives and compile yourself.  See the Unix section
above.The development tools can be downloaded from Apple's developer web site.
Hint: stuffit expander can handle .bz2 files.
Turn to <A href="maillist.php#vim-mac">the vim-mac maillist</A> to meet other
Vim-Mac users.
<p>
<A HREF="#top">TOP</A>

<hr noshade size="1" color="#000000">

<A NAME="others"></A>
<h1>Others</h1>
This is a list of links to sites where various versions of Vim can be obtained.
These are supported by individuals, use at your own risk.
<P>
	<table cellpadding="4" border="0">
	<tr>
		<td>
		<A HREF="http://credentiality2.blogspot.com/2010/08/native-vim-for-android.html">Android</A>
		</td>
		<td>
		Only on rooted Android.
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="ftp://ftp.vim.org/pub/vim/qnx/">QNX</A>
		</td>
		<td>
		Provided by Yakov Zaytsev.  Requires QNX 6.3.0/6.3.2 with service pack 2.
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="http://pi7.fernuni-hagen.de/hartrumpf/agenda/vim/vim.vr3">Agenda</A>
		</td>
		<td>
		http://pi7.fernuni-hagen.de/hartrumpf/agenda/vim/vim.vr3
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="http://killefiz.de/zaurus/showdetail.php?app=388">Sharp Zaurus</A>
		</td>
		<td>
		http://killefiz.de/zaurus/showdetail.php?app=388
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="http://www.uni-magdeburg.de/steschum/hpcsh-pkgs/">HP Jornada</A>
		</td>
		<td>
		http://www.uni-magdeburg.de/steschum/hpcsh-pkgs/
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="http://www.rainer-keuchel.de/wince/vim.html">MS-Windows CE</A>
		</td>
		<td>
		http://www.rainer-keuchel.de/wince/vim.html
		</td>
	</tr>
	<tr>
		<td>
<A HREF="http://www.geocities.com/jstarship_2001/vim-tru64.html">Compaq Tru64 Unix on Alpha</A>
		</td>
		<td>
		http://www.geocities.com/jstarship_2001/vim-tru64.html
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="http://www.cygwin.com/packages/vim/">Cygwin (console)</A>
		</td>
		<td>
		http://www.cygwin.com/packages/vim/<br>
		Installing is done with the Cygwin
		<A HREF="http://cygwin.com/setup.exe">setup.exe</A>.
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="http://lassauge.free.fr/cygwin/">Cygwin (with GTK GUI)</A>
		</td>
		<td>
		http://lassauge.free.fr/cygwin/
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="http://www.polarhome.com/vim/">Open VMS</A>
		</td>
		<td>
		http://www.polarhome.com/vim/
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="http://www.vim.riscos.org.uk/">RISC OS</A>
		</td>
		<td>
		http://www.vim.riscos.org.uk/  (sorry, currently doesn't appear to work...)
		</td>
	</tr>
	<tr>
		<td>
		<A HREF="http://www.akcaagac.com/index_vim.html">MorphOS</A>
		</td>
		<td>
		http://www.akcaagac.com/index_vim.html
		</td>
	</tr>
	</table>


<p>
<A HREF="#top">TOP</A>
<?php
$google_ads = "normal";
include("footer.php");
?>