问题 如何撤消最后写入vim?


让我以这种方式提出问题。我在vim中打开一个新文件,(版本1)

#include<stdio.h>
main()
{
...blah
}

然后使用 <Esc>:w<Enter> 写文件。然后进行了更改(版本2)

#include<stdio.h>
main()
{
...blah
... edit1
... edit2 //and large number of changes here and there in code
}

然后我使用保存更改 <Esc>:w<Enter>

有没有办法直接撤消对版本1的更改(因为它是最后一次保存),即没有经常按下 u 对于 undoING


6237
2017-08-29 00:15


起源

退出浪费你的时间并获得gundo插件 - Andy Ray
Gundo 或使用版本控制软件 - FDinoff
@FDinoff实际上,我使用svn。但问题是,我从服务器提取更新并进行大量本地编辑(不提交,因为提交会影响其他用户)并最终在很长一段时间后提交! - Sathish Sanjeevi
@SathishKrishnan我太习惯了git,在你推送之前,提交不会影响其他用户 - FDinoff
@SathishKrishnan git自带 git svn 它允许你在本地使用git和远程使用svn。 - Dean


答案:


来自Vim的帮助:

:earlier {N}f   Go to older text state {N} file writes before.
                When changes were made since the last write
                ":earlier 1f" will revert the text to the state when
                it was written.  Otherwise it will go to the write
                before that.
                When at the state of the first file write, or when
                the file was not written, ":earlier 1f" will go to
                before the first change.

因此,如果您在第二次保存后没有进行更改,则可以执行以下操作:

:earlier 1f

另一方面,如果在第二次保存后进行了未保存的更改,则:

:earlier 2f

会解决你的问题。

看到 :help :earlier:help :undolist


15
2017-08-29 00:32



如果您计划大量使用它,请确保打开持久性撤消。 (:h persistent-undo) - FDinoff


当您第一次轻松打开文件时,您可以回到原点。只需输入一个数字 u

10000u,将撤消 10000 倍。如果那还不够尝试 1000000u :)

如果你想逐位撤消,你可以在任何增量中进行,尝试 5u

如果您只想从磁盘使用重新加载文件 :e


1
2017-08-29 00:18



谢谢。之后,我做 :e 是否可以使用<Ctrl-r>恢复到版本2?我会同时试一试.. - Sathish Sanjeevi
@SathishKrishnan不,我不认为这是可能的。也许如果您开始使用多个缓冲区来编辑一个文件,但这可能会让您感到非常困惑,您最终可能会失去我们的更改。 - Paulpro
这仅在您不使用持久性撤消时才有效。 (在我看来这是一个非常好的功能) - FDinoff