+13
Display/highlight/indicate changed parts of file in gutter
This is a feature in many IDEs such as Eclipse and Visual Studio, which I believe can be quite useful in a general purpose text editor.
Along the gutter (next to the line numbers) a colored line is displayed across the lines which have been modified (and unsaved). Often there are multiple levels of this that show different "levels" of modification (unsaved changes, saved but not committed to VCS).
This is very easy to implement in a basic way by using features already present in the editor (indicators), so this can be done as a plugin also. But it's not quite ideal because we don't want to use a circle (the circle would also conflict with other plugins I have like sublimeclang) we want a space-saving 1 or 2 pixel colored line for this.
Customer support service by UserEcho
Only problem is with pasting multiple lines but well, can't have everything I guess. I probably won't need it anyway, I like the "Show Unsafed Changes..." command.
And the interfering with other plugin's marks (other regions with a gutter mark) is also unavoidable.
This is as far as you can reasonably get with a plugin, the rest would require changes on the side of ST itself.
I for once don't need such a functionality but maybe there are others.