summaryrefslogtreecommitdiff
path: root/htdocs/about.php
blob: 1c405e7e82c0b5e662fdf2f44bc3a2b4590f1f30 (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
<?php
// General info about Vim
require_once("include/init.inc");
$page_title = "about Vim";
$page_sid = "sid_about.php";
// $page_foot = "foot_about.php";

include("header.php");
?>
<h1>What Vim Can Do</h1>
<p>
Vim is an advanced text editor that seeks to provide the power of
the de-facto Unix editor 'Vi', with a more complete feature set.
It's useful whether you're <a href='viusers.php'>already using vi</a> or <a
href='others.php'>using a different editor</a>.  Users of Vim 5 and 6 should
consider upgrading to Vim 7.  The main advantages of Vim 6 compared to Vim 5 
can be found on <a href='vim5users.php'>this page</a>.
</p>

<h1>A General Overview</h1>

<a href="http://tnerual.eriogerg.free.fr/0xBABAF000L/10_en.html"><img src='<?=$IMAGES?>/0xbabaf000l.png' alt="Emaks-Vim-Notepad comic" width="800" height="254"></a>
Copyright (c) 2007 Laurent Gregoire

<h4>What Is Vim?</h4>
<p>
Vim is a highly configurable text editor built to enable efficient text
editing. It is an improved version of the vi editor distributed with
most UNIX systems.  
<p>
Vim is often called a "programmer's editor," and so useful for
programming that many consider it an entire <abbr title='integrated
development environment'>IDE</abbr>.  It's not just for programmers,
though.  Vim is perfect for all kinds of text editing, from composing
email to editing configuration files.
</p>
<p>
Despite what the above comic suggests, Vim can be configured to work in a very
simple (Notepad-like) way, called evim or Easy Vim.
</p>

<h4>What Vim Is Not?</h4>
<p>
Vim isn't an editor designed to hold its users' hands.  It is a tool,
the use of which must be learned.
</p>

<p>
Vim isn't a word processor.  Although it can display text with various
forms of highlighting and formatting, it isn't there to provide WYSIWYG
editing of typeset documents.  (It is great for editing TeX, though.)
</p>

<h4>Vim's License</h4>
<p>
Vim is charityware.  Its license is GPL-compatible, so it's
distributed freely, but we ask that if you find it useful you make a
donation to help children in Uganda through the
<a href='http://iccf-holland.org/'>ICCF</a>.  The full license text can be
found in the <a href='http://vimdoc.sourceforge.net/htmldoc/uganda.html#license'>documentation</a>.
Much more information about charityware on
<A HREF="http://Charityware.info/">Charityware.info</a>.
</p>

<h4>Vim in Six Kilobytes</h4>
<p>
If all of this information is overwhelming, try a smaller dose.  We can
expound the wonders of <a href='6kbyte.php'>vim in just six kilobytes</a> --
and in more languages than you can shake a stick at!
</p>

<h1>Testimonials</h1>
<p>
Don't take our word for it!  Read what <a href='http://vimdoc.sourceforge.net/htmldoc/quotes.html'>others have said</a>
about Vim.
</p>
<?php
$google_ads = "big";
include("footer.php");
?>