让我以这种方式提出问题。我在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
对于 undo
ING
来自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
。
当您第一次轻松打开文件时,您可以回到原点。只需输入一个数字 u
。
10000u
,将撤消 10000
倍。如果那还不够尝试 1000000u
:)
如果你想逐位撤消,你可以在任何增量中进行,尝试 5u
。
如果您只想从磁盘使用重新加载文件 :e
。