Skip to content

Commit 7634e2a

Browse files
1 parent e7eecd0 commit 7634e2a

30 files changed

Lines changed: 158 additions & 293 deletions

Source/AppState.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ use std::{
1313
};
1414

1515
use Common::{
16-
ConfigEffects::ConfigurationScope,
16+
ConfigEffect::ConfigurationScope,
1717
Errors::CommonError,
18-
LanguageFeatureEffects::{ProviderOptionsDto as LanguageProviderOptionsDto, ProviderType as LanguageProviderType},
18+
LanguageFeatureEffect::{ProviderOptionsDto as LanguageProviderOptionsDto, ProviderType as LanguageProviderType},
1919
};
2020
use log::{debug, error, info, trace, warn};
2121
use serde::{Deserialize, Serialize};

Source/Binary/Note.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Builder
6363
)
6464

6565
.visible_on_all_workspaces(true)
66-
.effects(tauri::utils::config::WindowEffectsConfig {
66+
.effects(tauri::utils::config::WindowEffectConfig {
6767
..Default::default()
6868
})
6969

Source/Common/CommandEffects.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Common/CommandEffects.rs
1+
// File: Common/CommandEffect.rs
22
// Defines the CommandExecutor trait and associated effects for command
33
// management. This provides a standardized way to execute, register, and query
44
// commands within the application's environment.

Source/Common/ConfigEffects.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Common/ConfigEffects.rs
1+
// File: Common/ConfigEffect.rs
22
// Defines traits and effects for interacting with application configuration.
33
// This includes getting, updating, and inspecting configuration values from
44
// various sources.

Source/Common/DiagnosticsEffects.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Common/DiagnosticsEffects.rs
1+
// File: Common/DiagnosticsEffect.rs
22
// Defines the DiagnosticsManager trait and associated effects for managing
33
// diagnostic markers (errors, warnings, etc.) within the application.
44

@@ -10,8 +10,8 @@ use async_trait::async_trait;
1010
use serde_json::Value;
1111

1212
// DTO for a diagnostic marker (re-exported for convenience if needed).
13-
// This assumes MarkerDataDto is defined elsewhere, like in LanguageFeatureEffects.
14-
pub use crate::LanguageFeatureEffects::MarkerDataDto;
13+
// This assumes MarkerDataDto is defined elsewhere, like in LanguageFeatureEffect.
14+
pub use crate::LanguageFeatureEffect::MarkerDataDto;
1515
use crate::{
1616
Effect::ActionEffect,
1717
Environment::{Environment, Requires},

Source/Common/DocumentDto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use serde_json::Value;
1010
use url::Url;
1111

1212
// This DTO seems to be for internal use or a very generic container.
13-
// Individual effects (in DocumentEffects.rs) use more specific parameters.
13+
// Individual effects (in DocumentEffect.rs) use more specific parameters.
1414
// This is kept for structural completeness based on the provided file list.
1515
#[derive(Clone, Debug)]
1616
#[allow(dead_code)]

Source/Common/DocumentEffects.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Common/DocumentEffects.rs
1+
// File: Common/DocumentEffect.rs
22
// Defines the DocumentProvider trait and associated effects for document
33
// management. This provides a standardized way to open, save, and modify
44
// documents within the application's environment.

Source/Common/IpcEffects.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Common/IpcEffects.rs
1+
// File: Common/IpcEffect.rs
22
// Defines the IpcProvider trait and associated effects for Inter-Process
33
// Communication. This provides a standardized way to send requests and
44
// notifications to sidecar processes.

Source/Common/LanguageFeatureDto/OptionsDto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use serde::{Deserialize, Serialize};
88

9-
use crate::LanguageFeatureEffects::SemanticTokensLegendDto;
9+
use crate::LanguageFeatureEffect::SemanticTokensLegendDto;
1010

1111
/// DTO for completion provider options.
1212
#[derive(Serialize, Deserialize, Debug, Clone)]

Source/Common/UiEffects.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Common/UiEffects.rs
1+
// File: Common/UiEffect.rs
22
// Defines the UiProvider trait and associated effects for interacting with the
33
// user interface. This provides a standardized way to show dialogs,
44
// notifications, quick picks, and input boxes.

0 commit comments

Comments
 (0)