mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 02:37:21 +00:00
29 lines
731 B
Rust
29 lines
731 B
Rust
|
use anyhow;
|
||
|
use schemars::JsonSchema;
|
||
|
use serde::{Deserialize, Serialize};
|
||
|
use settings::Settings;
|
||
|
|
||
|
#[derive(Deserialize, Debug)]
|
||
|
pub struct SemanticIndexSettings {
|
||
|
pub enabled: bool,
|
||
|
}
|
||
|
|
||
|
#[derive(Clone, Default, Serialize, Deserialize, JsonSchema, Debug)]
|
||
|
pub struct SemanticIndexSettingsContent {
|
||
|
pub enabled: Option<bool>,
|
||
|
}
|
||
|
|
||
|
impl Settings for SemanticIndexSettings {
|
||
|
const KEY: Option<&'static str> = Some("semantic_index");
|
||
|
|
||
|
type FileContent = SemanticIndexSettingsContent;
|
||
|
|
||
|
fn load(
|
||
|
default_value: &Self::FileContent,
|
||
|
user_values: &[&Self::FileContent],
|
||
|
_: &mut gpui::AppContext,
|
||
|
) -> anyhow::Result<Self> {
|
||
|
Self::load_via_json_merge(default_value, user_values)
|
||
|
}
|
||
|
}
|