Skip to content

Instantly share code, notes, and snippets.

@mozbugbox
Last active April 25, 2023 09:03
Show Gist options
  • Save mozbugbox/6822007 to your computer and use it in GitHub Desktop.
Save mozbugbox/6822007 to your computer and use it in GitHub Desktop.
Vim 速成教学

Vim 速成教材:

快捷键:

按键 解释
h,j,k,l 上下左右移动(右手的相邻四个字母键)
i 进入编辑模式 (insert mode)
Esc 退出编辑模式 (normal mode)
v 选字 (visual select mode)
ctrl-v 选行
ctrl-shift-v 选列
y 复制选中的文字 (yank)
p 粘帖复制的文字 (paste)
x 删除选中的文字

命令行:

命令 解释
:w 存盘 (write)
:wq 存盘后退出 (write quit)
:q! 不存盘退出 (quit, ! == 强制)
:e filename 打开新文件 (edit)
:bd 关闭当前文件 (buffer delete)
:bn 切换到下一个文件 (buffer next)
/some-text 搜索文字
n 重复上一个搜索(按键n)

高级应用:

知道以上内容,足矣上手 需要更多功能,网上搜索

@mozbugbox
Copy link
Author

速成,教学,教材,课程,课件,学习,快速,入门,vi,vim,上手,简介,简洁,应用,掌握,使用,一学就会,手册,初学,指南

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment