在Vim中,我做了太多撤销操作。我如何撤销这个(即,重做)?


当前回答

参考Vim文档中的“撤消”和“重做”部分。

:red[o](重做一个已取消的更改)和{count} Ctrl+r(重做{count}已取消的更改)都是可以的。

同样,:early {count}(转到旧文本状态{count}次)总是可以替代撤销和重做。

其他回答

在命令模式下,使用U键撤销,使用Ctrl + r重做。看看http://www.vim.org/htmldoc/undo.html。

参考Vim文档中的“撤消”和“重做”部分。

:red[o](重做一个已取消的更改)和{count} Ctrl+r(重做{count}已取消的更改)都是可以的。

同样,:early {count}(转到旧文本状态{count}次)总是可以替代撤销和重做。

还可以查看:undolist,它提供了通过撤消历史的多条路径。如果你在撤消太多操作后不小心输入了一些东西,这是很有用的。

Vim文档

<Undo>      or                  *undo* *<Undo>* *u*
u           Undo [count] changes.  {Vi: only one level}

                            *:u* *:un* *:undo*
:u[ndo]         Undo one change.  {Vi: only one level}

                            *CTRL-R*
CTRL-R          Redo [count] changes which were undone.  {Vi: redraw screen}

                            *:red* *:redo* *redo*
:red[o]         Redo one change which was undone.  {Vi: no redo}

                            *U*
U           Undo all latest changes on one line.  {Vi: while not
            moved off of it}