feat: add backend flags for rename events

This commit is contained in:
CJ van den Berg 2026-03-29 14:59:14 +02:00
parent 99dec3f689
commit f6158c8240
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
7 changed files with 64 additions and 5 deletions

View file

@ -7,6 +7,8 @@ const ObjectType = types.ObjectType;
pub const watches_recursively = true; // ReadDirectoryChangesW with bWatchSubtree=1
pub const detects_file_modifications = true;
pub const emits_close_events = false;
pub const emits_rename_for_files = true;
pub const emits_rename_for_dirs = true;
const windows = std.os.windows;