您的位置:首页 > 运维架构 > Linux

Linux运维细讲之vim的基础使用二

2016-02-26 22:54 232 查看
上一篇是讲了一部分最基础的使用~~下面继续讲解~~

有些时候你用vim打开一个文件你会发现有这么一大段话

E325: ATTENTION
Found a swap file by the name ".mm.swp"
owned by: ddddddd   dated: Fri Feb 26 22:35:21 2016
file name: ~dddddd/Documents/mm
modified: YES
user name: sddd   host name: localhost
process ID: 11775
While opening file "mm"
dated: Fri Feb 26 22:33:41 2016

(1) Another program may be editing the same file.
If this is the case, be careful not to end up with two
different instances of the same file when making changes.
Quit, or continue with caution.

(2) An edit session for this file crashed.
If this is the case, use ":recover" or "vim -r mm"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file ".mm.swp"
to avoid this message.

Swap file ".mm.swp" already exists!
[O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:


主要是因为你上次操作不当导致 意外中断的~~

直接在键盘上敲击 d则可删除临时文件。

其他命令

ctrl+f
翻下一页

ctrl+b
翻回上一页

$
跳到该行尾

^
跳到该行头

gg
跳到文件头
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: