You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
Currently, if you edit prefs.json using an external app...
Brackets doesn't reflect the changes until the next restart
If you change any preferences within Brackets after doing the external edit, but before restarting, they will be lost
We could fix both of these by listening for prefs.json changes with a file watcher.
Implementing this involves two wrinkles:
It means having two watch roots active at once (one for the user's project, one for the prefs storage location). The code supports this but it hasn't been heavily tested yet.
Overlapping watch roots aren't supported currently, so to handle the case where the user's project contains the prefs folder we'd have to do extra work -- either add support for overlapping roots, or remove the prefs watchers when opening such projects and reinstate it when closing them.
So this may be MTB.
The text was updated successfully, but these errors were encountered:
Currently, if you edit prefs.json using an external app...
We could fix both of these by listening for prefs.json changes with a file watcher.
Implementing this involves two wrinkles:
So this may be MTB.
The text was updated successfully, but these errors were encountered: