Refresh windows when settings file changes

Max Brunsfeld created

Change summary

crates/settings/src/settings.rs      | 3 +--
crates/settings/src/settings_file.rs | 1 +
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

crates/settings/src/settings.rs 🔗

@@ -2,12 +2,11 @@ mod keymap_file;
 mod settings_file;
 mod settings_store;
 
-use std::{borrow::Cow, str};
-
 use gpui::AssetSource;
 pub use keymap_file::{keymap_file_json_schema, KeymapFileContent};
 pub use settings_file::*;
 pub use settings_store::{Setting, SettingsJsonSchemaParams, SettingsStore};
+use std::{borrow::Cow, str};
 
 pub const DEFAULT_SETTINGS_ASSET_PATH: &str = "settings/default.json";
 pub const INITIAL_USER_SETTINGS_ASSET_PATH: &str = "settings/initial_user_settings.json";