fix validation errors and change <br/> to <br />
[vim_extended.git] / readme.htm
blob3abee3cb719e41c663a097d6511fc59e927e6848
1 Vim extended is based on the official Vim from <a href="http://www.vim.org">vim.org</a>.
2 It includes various extensions and features that didn't yet get into the
3 official version or even won't ever. Most features had been sent as patches to
4 the Vim mailing list.
6 <h3>Use Vim extended</h3>
8 <ul>
9 <li>
10 get the whole repository over the git or HTTP protocol<br />
11 <pre>git clone git://repo.or.cz/vim_extended.git<br />git clone http://repo.or.cz/r/vim_extended.git</pre>
12 </li>
13 <li>
14 update src/auto/configure because of lua_interface<br />
15 <pre>make -C src autoconf</pre>
16 </li>
17 <li>
18 edit and build as usual<br />
19 <pre>vim; make; make install</pre>
20 </li>
21 <li>
22 get updates from the repository<br />
23 <pre>git pull</pre>
24 </li>
25 </ul>
27 <table>
28 <tr>
29 <th>Branch</th>
30 <th>Description</th>
31 </tr>
32 <tr>
33 <td><em>master</em></td>
34 <td>
35 Extended Vim<br />
36 Merges <em>vim</em> and all the other feature branches.<br />
37 The only modification is the --with-modified-by configure option.
38 </td>
39 </tr>
40 <tr>
41 <td><em>vim</em></td>
42 <td>
43 Official Vim<br />
44 Based on <em>https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.2</em><br />
45 The only modification is .gitignore and deletion of src/auto/config.{h,mk}
46 </td>
47 </tr>
48 <tr>
49 <td style="border-top:1px black solid;">feature branches</td>
50 <td style="border-top:1px black solid;">
51 Extensions, features, external patches<br />
52 Based on <em>vim</em>
53 </td>
54 </tr>
55 <tr>
56 <td><em>relativenumber</em></td>
57 <td>
58 'relativenumber' option to display relative line numbers
59 </td>
60 </tr>
61 <tr>
62 <td><em>floating_point</em></td>
63 <td>
64 extended floating point functions
65 </td>
66 </tr>
67 <tr>
68 <td><em>lua_interface</em></td>
69 <td>
70 interface to the programming language Lua
71 </td>
72 </tr>
73 <tr>
74 <td><em>code_checking</em></td>
75 <td>
76 on-the-fly code checker
77 </td>
78 </tr>
79 </table>