Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+3 -3
View File
@@ -29,7 +29,7 @@ use lsp_types::{
use serde_json::Value;
#[cfg(not(target_arch = "wasm32"))]
use simple_logger::SimpleLogger;
use warp_util::on_cancel::OnCancelFutureExt;
use galaxy_util::on_cancel::OnCancelFutureExt;
/// Tracks the sync state for an open document.
#[derive(Debug, Clone)]
@@ -360,7 +360,7 @@ impl WatchedFilesRegistry {
return false;
};
let path_relative = warp_util::path::normalize_relative_path_for_glob(path_relative);
let path_relative = galaxy_util::path::normalize_relative_path_for_glob(path_relative);
self.registrations
.values()
@@ -418,7 +418,7 @@ impl WatchedFilesRegistry {
};
// Normalize to forward slashes so glob patterns and event paths are comparable across platforms (esp. Windows).
let prefix = warp_util::path::normalize_relative_path_for_glob(base_relative);
let prefix = galaxy_util::path::normalize_relative_path_for_glob(base_relative);
if prefix.is_empty() {
Some(pattern)