summaryrefslogtreecommitdiff
path: root/htdocs/web.php
blob: 98892d79892696ac499b979d226a7256a2308b42 (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
<?php
// Online info about vim
require_once("include/init.inc");
$page_title = "Vim web pages";

include("header.php");
?>
<h1>Links to Vim web pages</h1>

A bunch of pages about Vim can be found on
<a href='http://u.webring.com/hub?ring=vim'>the Vim webring</a>.
<p />

<h2>Vim-related Projects</h2>
<dl>
  <dt><a href='http://vimdoc.sf.net/'>VimDoc</a></dt>
  <dd>
	  VimDoc is the official Vim documentation project, hosted right here at
	  SourceForge.
  </dd>

  <dt><a href='http://vimonline.sf.net/'>Vim Online</a></dt>
  <dd>
	  Vim Online is the portal software that powers this site.  Development for
	  Vim Online is hosted here at SourceForge.
  </dd>

  <dt><a href='http://sf.net/projects/vim'>Vim Project pages</a></dt>
  <dd>
	  Less interesting stuff for the Vim project hosted on sourceforge.
	  Has statistics for the web site.
	  The sourceforge areas other than CVS are not used.
  </dd>

  <dt><a href='/vimgor'>Vimgor</a></dt>
  <dd>
  <a href='http://vigor.sf.net/'>Vigor</a> is an animated assistant
  for vi.  Vigor was originally written for
  <a href='http://freshmeat.net/projects/nvi/'>nvi</a>, but Andy Kahn
  has ported it to Vim as Vimgor.
  </dd>

  <dt><a href='http://eclim.sourceforge.net/'>Eclim</a></dt>
  <dd>
  Using Vim with Eclipse.
  </dd>

  <dt><a href='http://pyclewn.sourceforge.net/'>Pyclewn</a></dt>
  <dd>
  An extension for Vim that supports full use of <b>gdb</b> from Vim.  With
  breakpoints, watch variables, gdb command completion, etc.  Uses the NetBeans
  interface.
  </dd>

  <dt><a href='http://cubiclevim.sourceforge.net/'>CubicleVim</a></dt>
  <dd>
  An add-in for using Vim with Microsoft Outlook.
  This is a minimalistic solution, there are a few problems to be solved.
  </dd>

  <dt><a href='http://www.opensky.ca/gnome-vim/'>GNOME-Vim</a></dt>
  <dd>
  GNOME-Vim is a Bonobo component that embeds Vim and implements
  (part of) the same interface as the GtkHTML component.  This makes
  it possible to use Vim in Evolution instead of the default HTML
  editor.
  </dd>

  <dt><a href='http://www.freehackers.org/kvim/'>KVim</a></dt>
  <dd>
	  KVim is a port of Vim to the K Desktop Environment. It provides a nice
	  GUI, with menubar, toolbar, popups menus and much features.  The project
	  was initially started by Philippe Fremy and Thomas Capricelli. The goal
	  is to have -a KDE version of vim and a component for KDE using the KPart
	  technology. 
  </dd>

</dl>

<h2>Other Vim Links</h2>
<dl>
    <dt><a href='http://chronos.cs.msu.su/vim/'>Sven's Vim Pages</a></dt>
	<dd>
		These pages were once vim.org.
		This is a copy that someone made.
    </dd>

    <dt>Vim rating</dt>
	<dd>
	    <form 
		  action="http://osdir.com/modules.php?op=modload&amp;name=Downloads&amp;file=index"
		  method="post">
		<input type="hidden" name="lid" value="143">
		<input type="hidden" name="req" value="ratedownload">
		<input type="submit" value="Rate Vim - Vi IMproved @ O'Reilly's OSDir.com">
	    </form>

	</dd>

    <dt><a href='http://www.troubleshooters.com/lpm/200212/200212.htm'>Linux Productivity Magazine</a></dt>
	<dd>
		Issue of an online magazine dedicated to Vi and Vim.
	</dd>
</dl>

<?php
$google_ads = "big";
include("footer.php");
?>