vote up 15 vote down star
14

I use Vim. I open a file. I edit it and I want to see what I've edited before I save it.

How can I do this in Vim?

flag

5 Answers

vote up 8 vote down check

http://vim.wikia.com/wiki/Diff_current_buffer_and_the_original_file

link|flag
This is state of the art for vim. Forget the other answers. – Luc Hermitte Apr 14 at 21:20
Might want to give RCSVers.vim a try: vim.org/scripts/script.php?script_id=563/… – JD Jun 5 at 5:25
vote up 0 vote down

from vimrc_example.vim:

" Convenient command to see the difference between the current buffer and the
" file it was loaded from, thus the changes you made.
if !exists(":DiffOrig")
  command DiffOrig vert new | set bt=nofile | r # | 0d_ | diffthis
          \ | wincmd p | diffthis
endif
link|flag
vote up 1 vote down

I've always likes diffchanges - nice, simple, works.

link|flag
vote up 0 vote down

Source the following and use :DIFF command

function! s:diff()
    let tmpa = tempname()
    let tmpb = tempname()
    earlier 100h
    exec 'w '.tmpa
    later 100h
    exec 'w '.tmpb
    update
    exec 'tabnew '.tmpa
    diffthis
    vert split
    exec 'edit '.tmpb
    diffthis
endfunction
command! -nargs=0 DIFF call <SID>diff()
link|flag
vote up 17 vote down
:w !diff % -
link|flag
That's pretty awesome. – sharth Apr 14 at 20:47

Your Answer

Get an OpenID
or

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