In Sublime Text’s sidebar, the current opened folder(s) are shown. Is there any way to listen to the event that a file-tree change was just applied in the opened folder(s)?
For example,
- dir1
- file11
- file12
- dir2
- file21
Is there any way for sublime_plugin
to receive notification that file12
was just removed, or that dir2
was just renamed? Note that the modification of contents of file12
itself does not qualify for such events. Only New
or Remove
or Move (Rename)
will qualify.
If a detailed notification ("file12
was just removed") does not exist, a general notification (“a file-tree change just happened”) is also good.
Thanks!