forked from neovim/neovim.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc_index.html
76 lines (65 loc) · 2.66 KB
/
doc_index.html
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
---
layout: default
title: Documentation
canonical_url: /doc/
---
{% include nav.html active='Documentation' %}
<section class="front-section">
<div class="container">
<div class="col-wide">
<h1>Documentation</h1>
<p>
The following resources are available for users and developers.
</p>
<h2>User</h2>
<p>The user manual is available <a href="http://neovim.io/doc/user">online</a>
and in Neovim with the <code>:help</code> command.
</p>
<ul>
<li>
<a href="https://github.com/neovim/neovim/wiki/Installing-Neovim"><em>Install</em></a>
</li>
<li>For a list of Neovim-specific features see
<a href="https://neovim.io/doc/user/vim_diff.html#nvim-features"><code>:help nvim-features</code></a></li>
<li>To use python plugins (such as YouCompleteMe) see
<a href="http://neovim.io/doc/user/provider.html#provider-python"><code>:help provider-python</code></a></li>
<li><a href="http://neovim.io/doc/user/quickref.html"><code>:help quickref</code></a>
is a dense reference for regular users</li>
<li>
<a href="http://vimhelp.appspot.com/vim_faq.txt.html">Vim FAQ</a>
is an extensive collection of "how to" answers.
</li>
<li>Check the <b><a href="https://github.com/neovim/neovim/wiki/FAQ">FAQ</a></b>
for solutions to common issues.</li>
<li>Breaking changes are documented at
<b><a href="https://github.com/neovim/neovim/wiki/Following-HEAD">Following HEAD</a></b>.</li>
</ul>
<h2>Developer</h2>
<h3>Code</h3>
<ul>
<li>
<a href="https://neovim.io/doc/user/develop.html#dev"><code>:help dev</code></a>
and the <a href="https://github.com/neovim/neovim/wiki">wiki</a>
are the primary sources of developer information.
</li>
<li><a href="/doc/dev/files.html">Source code documentation</a> generated by Doxygen</li>
</ul>
<h3>Static Analysis</h3>
<ul>
<li>
<a href="https://neovim.io/doc/reports/pvs/">PVS-studio analysis</a>
runs daily.
</li>
<li>
<a href="/doc/reports/clang">Clang-scan analysis</a> runs on every commit.
</li>
<li>
<a href="https://scan.coverity.com/projects/2227">Coverity static analysis</a>
runs daily. To get access, see the
<a href="https://github.com/neovim/neovim/blob/master/CONTRIBUTING.md#coverity">contribution guidelines</a>.
</li>
<li><a href="/doc/reports/translations">Translation report page</a></li>
</ul>
</div>
</div>
</section>