Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Visual Studio Project Template C#/NppPluginNETHelper.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -629,6 +629,15 @@ public enum NppMsg : uint
629629
DOCSTAUS_BUFFERDIRTY = 2,
630630

631631
NPPN_DOCORDERCHANGED = (NPPN_FIRST + 17), // To notify plugins that document order is changed
632+
NPPN_SNAPSHOTDIRTYFILELOADED = (NPPN_FIRST + 18), // To notify plugins that a snapshot dirty file is loaded on startup
633+
NPPN_BEFORESHUTDOWN = (NPPN_FIRST + 19), // To notify plugins that Npp shutdown has been triggered, files have not been closed yet
634+
NPPN_CANCELSHUTDOWN = (NPPN_FIRST + 20), // To notify plugins that Npp shutdown has been cancelled
635+
NPPN_FILEBEFORERENAME = (NPPN_FIRST + 21), // To notify plugins that file is to be renamed
636+
NPPN_FILERENAMECANCEL = (NPPN_FIRST + 22), // To notify plugins that file rename has been cancelled
637+
NPPN_FILERENAMED = (NPPN_FIRST + 23), // To notify plugins that file has been renamed
638+
NPPN_FILEBEFOREDELETE = (NPPN_FIRST + 24), // To notify plugins that file is to be deleted
639+
NPPN_FILEDELETEFAILED = (NPPN_FIRST + 25), // To notify plugins that file deletion has failed
640+
NPPN_FILEDELETED = (NPPN_FIRST + 26), // To notify plugins that file has been deleted
632641
}
633642

634643
public enum NppMenuCmd : uint

0 commit comments

Comments
 (0)