Vim command quite a lot, the basis of the preservation, exit, insert, move, etc., trouble points of multi-line selection, split screen and so on.
Vim commands are also available in three modes, command mode, edit mode, and bottom line mode. There are all kinds of these three patterns, and I am accustomed to using these three names.
Command mode: This is the mode when Vim opens the file. Common commands such as Move up or down, page up and down.
Edit mode: Press i/i/a/a/o/o in command mode to enter edit mode. The code can be written in this mode.
Bottom line mode: In command mode, enter ":", "/", "?" to enter this mode. Commands commonly used in this mode, such as saving, exiting, switching files, etc.
Here are some common commands.
Multi-screen display
---bottom row mode (:), up/down split screen (SP), left and right split screen (VSP), CTRL + WW screen jump
Linux Vim Common commands