Home>Article>Operation and Maintenance> Does centos come with vim?
centos does not come with vim. The vi editor is installed by default in centos. You can use the "rpm -qa|grep vim" command to check whether vim is installed. If the system is not installed, you can use " Use the yum -y install vim*” command to install vim.
The operating environment of this article: centos 7 system, Dell G3 computer.
After we installed Centos, it installed the VI editor by default, but VIM was not installed.
Let’s take a look at how to install vim in Centos:
First use the command to check whether vim is installed: as follows:
[root@localhost conf]# rpm -qa|grep vim
If vim is not installed, use The following command can install vim:
[root@localhost conf]# yum -y install vim*
Using vim
It is divided into three modes, namely command mode (Command mode) and input mode (Insert mode) ) and bottom line command mode (Last line mode)
Command mode:
The user has just started vi/vim and entered the command mode.
In this state, keystrokes will be recognized by Vim as commands instead of character input. For example, if we press i at this time, we will not enter a character. i is treated as a command.
The following are some commonly used commands:
i Switch to input mode to enter characters.
x Delete the character at the current cursor position.
: Switch to bottom line command mode to enter commands on the bottom line.
If you want to edit text: Start Vim, enter command mode, press i to switch to input mode.
The command mode only has some of the most basic commands, so you still have to rely on the bottom line command mode to enter more commands.
Input mode
Press i in command mode to enter input mode.
In the input mode, you can use the following keys:
character keys and Shift combination to enter the characters
ENTER, Enter key, line feed
BACK SPACE, backspace key, delete the character before the cursor
DEL, delete key, delete the character after the cursor Character
arrow keys, move the cursor in the text
HOME/END, move the cursor to the beginning/end of the line
Page Up/Page Down, page up/down
Insert, switch the cursor to input/replace mode, the cursor will become a vertical line/underline
ESC, exit input mode and switch to command mode
Bottom line command mode
In command mode Press: (English colon) to enter the bottom line command mode.
Bottom line command mode allows you to enter single or multiple character commands, and there are many available commands.
In the bottom line command mode, the basic commands are (the colon has been omitted):
q Exit the program
w Save the file
Press the ESC key to exit the bottom line command mode at any time.
Recommended tutorial: "centos tutorial"
The above is the detailed content of Does centos come with vim?. For more information, please follow other related articles on the PHP Chinese website!