7

To get the vim user-manual I am doing

vi test

and then, once the file is opened, I do

:help user-manual

This opens up a split window, which makes reading manual inconvenient to read. How do I only open the user-manual in the full window ?

2 Answers 2

12
:h user-manual | only


only : Make the current window the only one on the screen. All other windows are closed.

See: :h only


Open from terminal:

vi[m] -c 'h user-manual|only'
3

After opening the user manual, type :only to close all other windows.

Or, you can just read the manual online at VimDoc.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.