-
Notifications
You must be signed in to change notification settings - Fork 614
[REVIEW-ONLY] Implement node-module add-on for native Windows file watching #412
Conversation
@bchintx this pull request targets |
oh, hey! Good catch, @jasonsanjose . Yes, before merging, I'll re-submit this to |
Closing this pull request to re-submit against the |
It would be easy and helpful to also set the Node process title back to something unique from within
|
FYI...submitted Pull Request #413 to replace this one. |
@iwehrman Good observation. Actually @JeffryBooher tried that suggestion but it doesn't work on Windows, which is where we're having the issue. Even with that change, TaskManager continues to show the actual filename. |
Yes, but it helps differentiate the process on Mac and Linux at least. It's just a convenience for when you |
(Plus it seems like the kind of thing that Node will get around to fixing on Windows eventually.) |
I agree with Ian. We should do this anyway. It doesn't do any harm and helps at least on 2 out of 3 supported platforms. |
You know what they say: two outta three ain't bad! |
@iwehrman @ingorichter |
Fixes brackets issue #6551- "[File Watchers] Can not externally rename a directory with subfolders on Windows"
Requires associated pull request #6673 from brackets repo.
Calling a native node-module add-on in Windows requires that the node process be named "node.exe", rather than our renamed "Brackets-node.exe". This change reverts our previous renaming so that we ship with "node.exe" instead.