summaryrefslogtreecommitdiff
path: root/htdocs/vimscriptlinks.php
blob: 19017489448dc4a8952ec773d467943c8f126fbd (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
<?php
// Vim script links
require_once("include/init.inc");
$page_title = "Vim script links";

include("header.php");
?>
<h1>Vim script links</h1>
This table lists the URLs found in the current scripts of
the runtime files.
<br>
Usually you can find the latest version with this link.
<p>
To use a file put it in the subdirectory of $VIMRUNTIME where it
belongs.  E.g., the vim.vim syntax file goes into $VIMRUNTIME/syntax
and the vim.vim indent script goes into $VIMRUNTIME/indent.
<br>
To find out the value of $VIMRUNTIME use this Vim command:
<pre>
:echo $VIMRUNTIME</pre>
You can put a file in your own Vim runtime directory (~/.vim), but
don't forget to delete it when upgrading Vim!
<p>
<?php
include("con_scriptlinks.php");
$google_ads = "normal";
include("footer.php");
?>