Linux CentOS 下安装跟使用vim笔记

安装命令,登陆后在控制台输入以下命令

yum -y install vim*

使用常用命令

cd 到对应的目录,例如我在var/www/html 目录下有一个index.html 文件,操作的代码如下:

[root@*** /]# cd /var/www/html
[root@*** html]# ll
总用量 32
drwx------ 2 nobody root 4096 1月   4 20:22 client_body_temp
drwxr-xr-x 2 root   root 4096 1月   4 20:08 conf
drwx------ 2 nobody root 4096 1月   4 20:22 fastcgi_temp
-rw-r--r-- 1 root   root  331 1月   5 07:50 index.html
drwxr-xr-x 2 root   root 4096 1月   4 20:22 logs
drwx------ 2 nobody root 4096 1月   4 20:22 proxy_temp
drwx------ 2 nobody root 4096 1月   4 20:22 scgi_temp
drwx------ 2 nobody root 4096 1月   4 20:22 uwsgi_temp
[root@*** html]#

从上面的代码中,可以看到第四行为 index.html 的文件,接下来使用vim index.html 进入文件,具体操作如下:

[root@*** html]# vim index.html

1、接着在进入的页面中,按下 i 进入编辑模式
2、编辑完成之后按esc键退出编辑模式
3、在输入:wq 回车返回到目录

当前是我花了几分钟入门常用的几个命令,当然还有更多的快捷操作方式可 http://www.runoob.com/linux/linux-vim.html 点击链接进行查看,在里面有详细的说明。

下面是我的操作过程

执行了上面的命令之后,我们会看到如下的界面




        
        
        OpenResty 练习
        
        


        

OpenResty练习

这里是通过vi进行编写的内容

此时是还不能进行编辑状态,需要在键盘上按下 i 键 ,此时在底部会有一个 “插入” 的字样,此时就可以对内容进行编辑了。




        
        
        OpenResty 练习
        
        


        

OpenResty练习

这里是通过vi进行编写的内容

~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ -- 插入 -- 1,1 全部

编辑完成之后按 esc 键退出编辑,此时回到刚刚进入时的状态,如果需要回到目录,则输入:wq 然后回车即可,具体代码如下:




        
        
        OpenResty 练习
        
        


        

OpenResty练习

这里是通过vi进行编写的内容

~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ :wq

回车后的结果,从新回到了html文件目录

[root@*** html]#

vim的入门使用笔记,就到这里了,算初步能使用,如果需要更加熟悉的话,就需要多练习。

你可能感兴趣的:(Linux CentOS 下安装跟使用vim笔记)