『Others』【Vim】The road to grasp VIM

来源:互联网 发布:上海程序员工资 编辑:程序博客网 时间:2024/05/27 00:32

Recently I have learnt a little VIM when committing my codes to github.
Vim is pretty hard to learn but you will benefit from it incrediblely.
I will write down some common vim command irregularly

How to go into Vim

Input “vim + name of text” to edit that text in Vim

How to quit Vim

(In the Vim)
two common command:

  1. :wq
    save and quit
  2. :q
    quit only

to be continued

0 0