In vim, I did too much undo. How do I undo this (i.e. redo)?

link|improve this question

15  
as I already collected 2 close votes, I think this belongs here as vim is a programmer's editor. Did your grandmother ever write you a letter with vim? – flybywire Oct 12 '09 at 17:17
2  
I agree, this is programming-related and it's a real question. – DigitalRoss Oct 12 '09 at 17:19
5  
"Did your grandmother ever write you a letter with vim?" <- hilarious – geowa4 Oct 12 '09 at 17:27
6  
I'm 100% sure my grandmother used vim before: vimcleaners.co.uk – rein Oct 12 '09 at 17:44
5  
Someone around here goes around and marks every Vim question as "belongs on SU" despite the community having long ago decided that Vim belongs on SO, it being a programming tool. – Brian Carper Oct 12 '09 at 19:45
show 3 more comments
feedback

5 Answers

up vote 58 down vote accepted

Ctrl+r

link|improve this answer
5  
Oh cool, thanks @Joachim -- didn't know about <kbd> – John Millikin Oct 12 '09 at 17:24
feedback

Also check out :undolist, which offers multiple paths through the undo history. This is useful if you accidentally type something after undoing too much.

link|improve this answer
1  
+1, really nice – LB . Oct 13 '09 at 12:36
feedback

Vim documentation

<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}
link|improve this answer
feedback

In command mode use u key to undo and Ctr-r key to redo

have a look at this

http://www.vim.org/htmldoc/undo.html

link|improve this answer
feedback

[ctrl]+r

The "r" is lower-case.

link|improve this answer
4  
Actually, it shouldn't matter -- traditional consoles have no distinction between ^r and ^R, and Vim follows that. – ephemient Oct 12 '09 at 19:43
@ephemient: agreed. In MS-DOS, you can't even type a lowercase ^X (where X can be any letter). – Nyuszika7H Jan 11 '11 at 18:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.