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

来源:互联网 发布:jdk windows x86 编辑:程序博客网 时间:2024/06/04 19:41

上一篇是讲了一部分最基础的使用~~下面继续讲解~~


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

E325: ATTENTIONFound 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: 11775While 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 跳到文件头


0 0
原创粉丝点击