Feature Request: Auto Reload in Text Editor

In every modern text editor, if we edit file in external editor and then switch back to it, this file will be automatically reloaded. Sharp Develop supports this feature out of the box. In vvvv, if i edit shader or plugin in Sublime Text, i need to restart vvvv to apply my changes. This makes vvvv’s beautiful dynamic compiling unusable for my workflow.

P.S. I can code this feature by myself, if this part of vvvv is open and you describe, what i need to change.

maybe start here: https://github.com/vvvv/vvvv-sdk/tree/develop/vvvv45/src/nodes/editors/CodeEditor

the editor will subscribe to the ContentChanged event of the text document.
see https://github.com/vvvv/vvvv-sdk/blob/develop/common/src/core/Core/Model/TextDocument.cs
that’s also the place where the text is loaded from disk.

See https://discourse.vvvv.org/