How can you have vimdiff show the entire contents of the files being differenced? I'd like the color highlights of the differences, but would still like to see the entire files, i.e. the parts that are identical as well.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

vimdiff sets foldmethod diff so all unchanged lines are folded. From inside vimdiff you can open all folds by pressing zR.

If you would like to always show the full context you could increase the number of unfolded context lines shown to some large number. In your ~/.vimrc:

if &diff                             " only for diff mode/vimdiff
  set diffopt=filler,context:1000000 " filler is default and inserts empty lines for sync
endif
link|improve this answer
1  
Yes, zR is the way to go. Note: za will recreate the folds. – sleske Oct 12 '10 at 21:07
feedback

Placing the cursor on the line you want to expand and hitting the space bar works for me!

It seems like I've had to use the arrow keys sometimes too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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