让我这样提出问题。我在 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
for undo
ing