当前位置:网站首页>Three modes of vim
Three modes of vim
2022-08-05 06:08:00 【Magic star】
Three modes of vim:
The relationship between the three modes of vim

Command mode: the mode entered at the beginning
Move the cursor (up, down, left and right)
1, Jump between lines: the beginning goes directly to the end (end or $), and the end goes directly to the beginning(^ or 0)
2, Jump between multiple lines: last line (G), first line (gg), 10th line (10G)
Copy whole line (yy), copy multiple lines (number yy), copy one word (yw)
Paste: p (paste to the next line where the cursor is), (big) P (the previous line where the cursor is)
Cut the whole line (dd), cut the number of lines (#dd)
Delete
1. Delete a single letter: x del
2. Delete the cursor to the beginning:d^
3. Delete the cursor to the end: d$
4. Delete a word: dwUndo once (u), undo all (big U)
Replacement mode (r): one character can be replaced, no additional characters can only be replaced
Big R: the fourth mode, the replacement mode (whatever you type will always replace the characters you type)
Exit: zzsave exit
Find content (/the character you want), n (down), N (up)
Display line number: set nu
Understand:
Jump to the current page:
H: Top of page
M: Middle line of page
L: Bottom of page
zt: Move the current line where the cursor is located to the top of the screen
zz: move the current line where the cursor is located to the middle of the screen
zb: move the current line where the cursor is located to the bottom of the screen
Input Mode
- i: insert, type where the cursor is
- I: Type at the beginning of the line where the current cursor is located
- a: append, enter after the cursor position
- A: Type at the end of the line where the current cursor is located
- o: Opens a new line below the current cursor line
- O: open a new line above the current cursor line
Last line mode
| Options | Action |
|---|---|
| set all | Show all command options |
| set nu | Show line numbers |
| set noun | Close line numbers |
| set cul | Show underline |
| set nocul | Turn off underline |
| set list | Show hidden characters |
| set key=the secret you set | Encryption |
| set key=Nothing to lose | Release Password |
| set ai | Auto-indent |
| w | Save |
| q | Exit |
| ! | Mandatory |
| w +path | Save As |
| r + file path | Add another file to the current file editor |
| . ! Command | Read the command result and write it to the current file |
Find Replace in Last Line Mode
Range s/old characters/new characters/modifiers
Scope
- Do not write, the default cursor current line
- #, # a certain line to a certain line (# represents the number 2, 20: 2 to 20 lines)
- %, representing the full text
s
Command search (search)
/ , #, @
Separator
Old characters
What you are looking for or what you are replacing (you can use *^)
New character
The character you want to replace the old character with (* cannot be used)
Modifier
i: case insensitive
g: all hits in the entire line are replaced (if not g, only the first hit in the entire line is replaced)
In the configuration file, the behavior comments beginning with # do not take effect
Begin all lines with #(:%s/^/#/g)
The delimiter can be / # @ can be used (% s#/sbin/nologin#/zz/#g)
边栏推荐
猜你喜欢
随机推荐
云游戏未来展望
电子产品量产工具(2)- 输入系统实现
dsf5.0新建页面访问时重定向到首页的问题
入门文档11 自动添加版本号
【Day8】磁盘及磁盘的分区有关知识
海外服务器的优势
添加新硬盘为什么扫描不上?如何解决?
spark算子-repartition算子
Leetcode刷题——对链表进行插入排序
电子产品量产工具(4)-UI系统实现
spark源码-任务提交流程之-1-sparkSubmit
dsf5.0 弹框点确定没有返回值的问题
framebuffer应用编程及文字显示(1)
【UiPath2022+C#】UiPath 练习-数据操作
虚幻引擎5都有哪些重要新功能?
成功的独立开发者应对失败&冒名顶替综
【机器学习】1单变量线性回归
图片压缩失效问题
Unity常用模块设计 : Unity游戏排行榜的制作与优化
CIPU,对云计算产业有什么影响









