Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Vim, I did too much undo. How do I undo this (that is, redo)?

share|improve this question
36  
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
3  
I agree, this is programming-related and it's a real question. – DigitalRoss Oct 12 '09 at 17:19
7  
"Did your grandmother ever write you a letter with vim?" <- hilarious – geowa4 Oct 12 '09 at 17:27
10  
I'm 100% sure my grandmother used vim before: vimcleaners.co.uk – rein Oct 12 '09 at 17:44
11  
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

6 Answers

up vote 152 down vote accepted

Ctrl+r

share|improve this answer
8  
Oh cool, thanks @Joachim -- didn't know about <kbd> – John Millikin Oct 12 '09 at 17:24
You wouldn't think that it is possible .. yet it is – bobobobo Apr 22 at 23:24

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

share|improve this answer
2  
+1, really nice – LB . Oct 13 '09 at 12:36
@Peter: Would be great if you show how to traverse the paths – amindfv Dec 5 '12 at 20:26
3  
@amindfv: take the number from :undolist and type :undo 178 (say) to rewind to step 178. – Peter Dec 5 '12 at 22:41

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

Strange nobody mentioned :earlier/:later. To redo everything you just need to do

later 9999999d

(assuming that you first edited the file at most 9999999 days ago), or, if you remember the difference between current undo state and needed one, use Nh, Nm or Ns for hours, minutes and seconds respectively. + :later N<CR> <=> Ng+ and :later Nf for file writes.

share|improve this answer

In command mode, use the u key to undo and Ctrl + R to redo. Have a look at http://www.vim.org/htmldoc/undo.html.

share|improve this answer

[ctrl]+r

The "r" is lower-case.

share|improve this answer
6  
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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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