It often occurs that a file buffer is modified (duh!). Before exiting, emacs asks whether to save the changes. Now it would be interesting to know what actually changed. Is there a way to find out?
|
|
As of Emacs 22.1 (at least), From the help documentation:
If you look at the prompt, it should say something like:
Typing C-h gives you a little more verbose description (but d is what you are asking for):
|
||||
|
|
|
I use diff-buffer-with-file, and select the file that the buffer came from (which is the default anyway for the command... just hit enter). You can also use highlight-changes-mode, though this won't track changes until you turn it on, so not so useful if you want to see what changed when you're closing a file that has not been in this mode :-) |
|||
|
|
|
You can have |
|||
|
|
|
In this case I type undo to see the last change (usually some stray character which got typed in the wrong window, since I save early and often). It would be nice if there were some other indication of the current changes, e.g. in the border like quick diff in Eclipse text editors. |
|||
|
|
I use goto-chg for things like that. It's not perfect, but it always is enough to jog my memory about what change I made and promptly forgot about. |
|||
|
|
|
I found this post about tracking changes by djcb most helpful regarding tracking changes in Emacs. The trick is to add the following to your .emacs:
and then toggle highlight-changes-visible-mode when you want to see what has changed. |
|||
|
|