Linux – How to Get the User Manual for Vim

bashlinuxvivim

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 ?

Best Answer

: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'