Skip to content

Commit

Permalink
【05】操作系统
Browse files Browse the repository at this point in the history
  • Loading branch information
loveincode committed Oct 10, 2018
1 parent 4a92ade commit b46952e
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions 05 - OS (linux)/vi-vim/me.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
### 移动光标
h j k l
左 下 上 右

Expand All @@ -18,8 +19,31 @@ gg 移动光标到文档首行.
G 移动光标到文档尾行.
:n 跳至第n行d

yy 表示拷贝光标所在行.
Ctrl + d/u 向下/向下 翻半屏
Ctrl + f/b 向下/向下 翻一屏

### 删除命令
dd 表示删除光标所在行.
ndd
D
d0
dw

### 撤销命令
u 撤销上次操作 undo
U 撤销当前行所有操作 事情闹大了,得有个更大的UNDO才能恢复
Crtl + r 反撤销

### 复制命令
yy 表示拷贝光标所在行.

### 替换操作
r 替换当前字符
R 替换当前光标后的字符

### 文本行移动
>> 右移
<< 左移

u 撤销上次操作 undo
U 撤销当前行所有操作 事情闹大了,得有个更大的UNDO才能恢复
### 重复命令
.

0 comments on commit b46952e

Please sign in to comment.