Home Explore Blog CI



neovim

1st chunk of `runtime/doc/usr_01.txt`
493d29be4832f8901f9c614214ee57b3c456eabfac3baec400000001000007e5
*usr_01.txt*	Nvim

		     VIM USER MANUAL - by Bram Moolenaar

			      About the manuals


This chapter introduces the manuals available with Vim.  Read this to know the
conditions under which the commands are explained.

|01.1|	Two manuals
|01.2|	Vim installed
|01.3|	Using the Vim tutor
|01.4|	Copyright

     Next chapter: |usr_02.txt|  The first steps in Vim
Table of contents: |usr_toc.txt|

==============================================================================
*01.1*	Two manuals

The Vim documentation consists of two parts:

1. The User manual
   Task oriented explanations, from simple to complex.  Reads from start to
   end like a book.

2. The Reference manual
   Precise description of how everything in Vim works.

The notation used in these manuals is explained here: |notation|


JUMPING AROUND

The text contains hyperlinks between the two parts, allowing you to quickly
jump between the description of an editing task and a precise explanation of
the commands and options used for it.  Use these two commands:

	Press  CTRL-]  to jump to a subject under the cursor.
	Press  CTRL-O  to jump back (repeat to go further back).

Many links are in vertical bars, like this: |bars|.  The bars themselves may
be hidden or invisible; see below.  An option name, like 'number', a command
in double quotes like ":write" and any other word can also be used as a link.
Try it out: Move the cursor to  CTRL-]  and press CTRL-] on it.

Other subjects can be found with the ":help" command; see |help.txt|.

The bars and stars are usually hidden with the |conceal| feature.  They also
use |hl-Ignore|, using the same color for the text as the background.  You can
make them visible with: >
	:set conceallevel=0
	:hi link HelpBar Normal
	:hi link HelpStar Normal

==============================================================================
*01.2*	Vim installed					   *setup-vimrc_example*

To create an empty vimrc: >

	:call mkdir(stdpath('config'),'p')
	:exe 'edit' stdpath('config').'/init.vim'
	:write

Title: Introduction to Vim Manuals
Summary
This section introduces the Vim user and reference manuals, explaining their purpose and how to navigate them using hyperlinks with CTRL-] and CTRL-O. It also covers how to access other help topics using the ":help" command and how to make hidden bars and stars in the manual visible by adjusting the 'conceallevel' option.