VIM: show all lines edited in session

vim

Is there a command or plugin that I can use to show all the lines I have edited in a Vim session? I would like to be able to have all the changes I have made highlighted when working in co-workers projects and lost in lines of code.

Best Answer

The changesPlugin seems to work just fine for this type of thing.

http://www.vim.org/scripts/script.php?script_id=3052

Once installed, just run :EC after making changes to a file.

Related Question