leaves some colors in my documents (even documents that weren’t involved in the compare! Yuck!)
Maybe the Compare plugin is using some “indicators” that you are using in some other way–so that there’s a conflict? Check other plugins, maybe, for overlap?
It seems like it would be fairly easy to write a Pythonscript to mimic the Compare plugin’s Diff since last save functionality, using Beyond Compare instead, something like this as the last lines of a script:
with open(unsaved_changes_file_path, 'w') as f: f.write(editor.getText()) subprocess.Popen([ beyond_compare_prog_path, unsaved_changes_file_path, notepad.getCurrentFilename() ])I think I remember that you are familiar with Pythonscript so I’ll leave completing the whole to you…
@MAPJe71 , I think the original request takes it to a level beyond what “change markers” can provide.