zoukankan      html  css  js  c++  java
  • 非正常关闭vim编辑器后提示错误的解决方法

    使用vim,错误出现原因一般为以下两种情况:

    (1)    当你用多个程序编辑同一个文件时。

    (2)    非常规退出时。

    会提示以下信息:

    E325: ATTENTION
    Found a swap file by the name".test.txt.swp"
             owned by: root   dated: Tue Mar 2813:27:34 2017
            file name: /tmp/test.txt
             modified: YES
            user name: root   host name:test
           process ID: 6855
    While opening file "test.txt"
                 dated: Tue Mar 28 13:27:10 2017
     
    (1) Another program may be editing thesame 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 filecrashed.
       If this is the case, use ":recover" or "vim -rtest.txt"
       to recover the changes (see ":help recovery").
       If you did this already, delete the swap file ".test.txt.swp"
       to avoid this message.
    Swap file ".test.txt.swp"already exists!
    [O]penRead-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:

    (1)(2)为官方给出的解决方法:

    (1)    为了避免同一个文件产生两个不同的版本,还是建议选择"(Q)uit"或者继续谨慎修改选择"(E)dit anyway"。

    (2)    也可以选择"(R)ecover"或"vim -r filename"恢复到未修改之前,然后再把swp文件删除(这个时候要确保你的swp文件没有用处了)。

    最下面选项的意思:

    • O:  只读,不能改

    • E:  可以改,从前的修改都丢失

    • R:  恢复(从前的修改)

    • D:  删去(删去.swp文件,文件恢复到未修改前)

    • Q:  退出

    • A:  放弃

     具体解决方案:

    (1)    不想保留原先修改的内容直接选D就可以。

    (2)    想保留原先修改的内容选R把修改的内容复制出来保存,再退出文件删除awp文件。(awp文件默认为隐藏文件,用ls -a命令查看,用rm命令删除。)

  • 相关阅读:
    Netty3实现服务端和客户端
    Nio实现服务端
    python学习笔记8-邮件模块
    python学习笔记8-异常处理
    python学习笔记8--面向对象编程
    python番外篇--sql注入
    python学习笔记7-网络编程
    python学习笔记7-excel操作
    python学习笔记6--双色球需求实现
    python学习笔记6--操作redis
  • 原文地址:https://www.cnblogs.com/hellhappy/p/6888852.html
Copyright © 2011-2022 走看看