Fix cursor focus and selection in input box, add AWS env var warning box, and remove AWS Bedrock login banner

This commit is contained in:
2026-07-02 14:54:15 -05:00
parent 4770ac06b5
commit 3769646ca6
1194 changed files with 5312 additions and 8032 deletions
+3 -5
View File
@@ -22,7 +22,7 @@ pub mod types;
pub use config::{default_init_params, LanguageId, LspServerConfig};
pub use jsonrpc::{JsonRpcService, ServerNotificationEvent, Transport};
pub use lsp_types::notification::{self};
pub use lsp_types::{Position, Range};
pub use lsp_types::{CompletionItem, Position, Range};
pub use manager::{LspManagerModel, LspManagerModelEvent};
pub use model::{
BackgroundTaskInfo, DocumentDiagnostics, LanguageServerId, LspEvent, LspServerModel, LspState,
@@ -57,12 +57,10 @@ impl std::fmt::Display for LspServerLogLevel {
use std::sync::Arc;
use anyhow::Result;
use galaxyui::r#async::executor::Background;
use galaxyui::AppContext;
#[cfg(not(target_arch = "wasm32"))]
use simple_logger::SimpleLogger;
use galaxyui_core::r#async::executor::Background;
use galaxyui_core::AppContext;
#[cfg(not(target_arch = "wasm32"))]
use simple_logger::SimpleLogger;
pub struct LspServiceInitializationResult {
pub service: LspService,