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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Cream :: a modern configuration of the Vim text editor</title>
<link href="favicon.ico" rel="Shortcut Icon">
<link href="style.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script src="mouseovers.js" type="text/javascript"></script>
</head>
<body>
<div align="center">
<div class="main">
<!-- header {{{1 -->
<div class="header">
<!-- Page Title -->
<div class="title">
<a class="logo" href="index.html"><b>Cream</b></a>
<span class="tagline">
<small>: :</small> <i>a modern configuration of the </i>Vim<i> text editor</i>
</span>
</div>
<!-- Search {{{ -->
<form class="searchform" method="GET" action="http://www.google.com/search">
<input type="hidden" name="sitesearch" value="cream.sourceforge.net">
<input type="submit" name="btnG" value="Find" class="searchbtn">
<input type="text" name="q" maxlength="255" value="" class="searchbox">
</form>
<!-- }}} -->
</div>
<!-- HOME {{{1 -->
<div
class="home"
style="width:608px;height:28px;cursor:pointer;"
onMouseOver="
this.style.backgroundColor='#2a3b4c';
this.style.borderColor='#ddd';
window.status=ThisURL()+'home.html';
"
onMouseOut="
this.style.backgroundColor='#223344';
this.style.borderColor='#fff';
window.status='';
"
onClick="window.location.href='home.html'"
>
<p class="sectitleleft"><a class="sec" href="home.html"><b>home</b></a></p>
</div>
<!-- FEATURES {{{1 -->
<div
class="feat"
style="width:28px;height:28px;cursor:pointer;"
onMouseOver="
this.style.backgroundColor='#90902a';
this.style.borderColor='#ddd';
window.status=ThisURL()+'features.html';
"
onMouseOut="
this.style.backgroundColor='#888822';
this.style.borderColor='#fff';
window.status='';
"
onClick="window.location.href='features.html'"
>
<p class="sectitleright"><a class="sec" href="features.html"><b>f</b></a></p>
</div>
<!-- DOWNLOAD {{{1 -->
<div
class="down"
style="width:608px;height:468px;"
>
<p class="sectitleleft"><a class="sec" href="download.html"><b>download</b></a></p>
<div class="news-down">
<p>Cream is <a href="http://www.fsf.org/licensing/essays/free-sw.html">free software<img src="external.gif" alt=" [ext.link] " height="9" width="9"></a>, licensed under the <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License v3<img src="external.gif" alt=" [ext.link] " height="9" width="9"></a>.</p>
</div>
<ul>
<li><a href="http://packages.debian.org/sid/cream">Debian Linux<img src="external.gif" alt=" [ext.link] " height="9" width="9"></a> : : by Christoph Haas</li>
<li><a href="http://www.freshports.org/editors/cream/">FreeBSD<img src="external.gif" alt=" [ext.link] " height="9" width="9"></a> : : by Janos Mohacsi (FreshPorts)</li>
<li><a href="http://packages.gentoo.org/package/app-vim/cream">Gentoo Linux<img src="external.gif" alt=" [ext.link] " height="9" width="9"></a> <i>(unmaintained)</i> : : by Ciaran McCreesh, Thomas de Grenier de Latour, et. al.</li>
<li><a href="http://sourceforge.net/projects/cream/files/Cream/0.43/cream-0-43-gvim-7-3-107.exe/download">Windows<img src="external.gif" alt=" [ext.link] " height="9" width="9"></a> (7.9 MB) : : One-click installer, includes both Vim and Cream.</li>
<li><a href="http://sourceforge.net/projects/cream/files/Cream/0.43/cream-0.43.zip/download">Source install packages<img src="external.gif" alt=" [ext.link] " height="9" width="9"></a> (0.9 MB) : : For both GNU/Linux and Windows. Requires an existing installation of gVim and basic command line knowledge.</li>
</ul>
<p>Archives of previous versions can be found on Cream's <a href="http://sourceforge.net/projects/cream/files/">SourceForge Project Files<img src="external.gif" alt=" [ext.link] " height="9" width="9"></a> page.</p>
<p><b>Vim <i>Without</i> Cream</b></p>
<p><a href="http://sourceforge.net/projects/cream/files/Vim">Windows Vim installers <i>without Cream</i><img src="external.gif" alt=" [ext.link] " height="9" width="9"></a> : : Includes both GUI and console Vim versions. Note this does not include Vim's standard install.exe, we rely soley on the <a href="http://nsis.sourceforge.net">Nullsoft Installer</a>.</p>
</div>
<!-- ABOUT {{{1 -->
<div
class="about"
style="width:28px;height:468px;cursor:pointer;"
onMouseOver="
this.style.backgroundColor='#7e5c4b';
this.style.borderColor='#ddd';
window.status=ThisURL()+'about.html';
"
onMouseOut="
this.style.backgroundColor='#775544';
this.style.borderColor='#fff';
window.status='';
"
onClick="window.location.href='about.html'"
>
<p class="sectitleright"><a class="sec" href="about.html"><b>a</b></a></p>
</div>
<!-- footer {{{1 -->
<!-- 1}}} -->
</div>
</div>
</body>
</html>
<!-- vim:foldmethod=marker
-->
|