first pass of merging in warp (doesn't build)

This commit is contained in:
Ryan Ward
2026-07-01 16:08:58 -05:00
parent 2f64909469
commit 4770ac06b5
3662 changed files with 414574 additions and 89772 deletions
+9 -6
View File
@@ -1,15 +1,18 @@
use std::{future::Future, path::PathBuf, pin::Pin};
use std::future::Future;
use std::path::PathBuf;
use std::pin::Pin;
use async_channel::Sender;
use galaxy_util::standardized_path::StandardizedPath;
use galaxyui::{ModelContext, SingletonEntity, WeakModelHandle};
use lsp_types::FileChangeType;
use repo_metadata::{
repository::{RepositorySubscriber, SubscriberId},
DirectoryWatcher, Repository, RepositoryUpdate,
};
use repo_metadata::repository::{RepositorySubscriber, SubscriberId};
use repo_metadata::{DirectoryWatcher, Repository, RepositoryUpdate};
use galaxyui_core::{ModelContext, SingletonEntity, WeakModelHandle};
use crate::{model::LspServerModel, types::WatchedFileChangeEvent, LspServerConfig};
use crate::model::LspServerModel;
use crate::types::WatchedFileChangeEvent;
use crate::LspServerConfig;
enum RepoWatchState {
NotWatching,