When we refactored settings to not pass JSON blobs around, we ended up needing to write *a lot* of code that just merged things (like json merge used to do). Use a derive macro to prevent typos in this logic. Release Notes: - N/A
917 lines
33 KiB
Rust
917 lines
33 KiB
Rust
use std::{borrow::Cow, num::NonZeroU32};
|
|
|
|
use collections::{HashMap, HashSet};
|
|
use gpui::{Modifiers, SharedString};
|
|
use schemars::{JsonSchema, json_schema};
|
|
use serde::{
|
|
Deserialize, Deserializer, Serialize,
|
|
de::{self, IntoDeserializer, MapAccess, SeqAccess, Visitor},
|
|
};
|
|
use serde_with::skip_serializing_none;
|
|
use settings_macros::MergeFrom;
|
|
use std::sync::Arc;
|
|
|
|
use crate::{ExtendingVec, merge_from};
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
|
|
pub struct AllLanguageSettingsContent {
|
|
/// The settings for enabling/disabling features.
|
|
#[serde(default)]
|
|
pub features: Option<FeaturesContent>,
|
|
/// The edit prediction settings.
|
|
#[serde(default)]
|
|
pub edit_predictions: Option<EditPredictionSettingsContent>,
|
|
/// The default language settings.
|
|
#[serde(flatten)]
|
|
pub defaults: LanguageSettingsContent,
|
|
/// The settings for individual languages.
|
|
#[serde(default)]
|
|
pub languages: LanguageToSettingsMap,
|
|
/// Settings for associating file extensions and filenames
|
|
/// with languages.
|
|
#[serde(default)]
|
|
pub file_types: HashMap<Arc<str>, ExtendingVec<String>>,
|
|
}
|
|
|
|
fn merge_option<T: merge_from::MergeFrom + Clone>(this: &mut Option<T>, other: Option<&T>) {
|
|
let Some(other) = other else { return };
|
|
if let Some(this) = this {
|
|
this.merge_from(Some(other));
|
|
} else {
|
|
this.replace(other.clone());
|
|
}
|
|
}
|
|
|
|
impl merge_from::MergeFrom for AllLanguageSettingsContent {
|
|
fn merge_from(&mut self, other: Option<&Self>) {
|
|
let Some(other) = other else { return };
|
|
self.file_types.merge_from(Some(&other.file_types));
|
|
merge_option(&mut self.features, other.features.as_ref());
|
|
merge_option(&mut self.edit_predictions, other.edit_predictions.as_ref());
|
|
|
|
// A user's global settings override the default global settings and
|
|
// all default language-specific settings.
|
|
//
|
|
self.defaults.merge_from(Some(&other.defaults));
|
|
for language_settings in self.languages.0.values_mut() {
|
|
language_settings.merge_from(Some(&other.defaults));
|
|
}
|
|
|
|
// A user's language-specific settings override default language-specific settings.
|
|
for (language_name, user_language_settings) in &other.languages.0 {
|
|
if let Some(existing) = self.languages.0.get_mut(language_name) {
|
|
existing.merge_from(Some(&user_language_settings));
|
|
} else {
|
|
let mut new_settings = self.defaults.clone();
|
|
new_settings.merge_from(Some(&user_language_settings));
|
|
|
|
self.languages.0.insert(language_name.clone(), new_settings);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// The settings for enabling/disabling features.
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Clone, PartialEq, Default, Serialize, Deserialize, JsonSchema, MergeFrom)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub struct FeaturesContent {
|
|
/// Determines which edit prediction provider to use.
|
|
pub edit_prediction_provider: Option<EditPredictionProvider>,
|
|
}
|
|
|
|
/// The provider that supplies edit predictions.
|
|
#[derive(
|
|
Copy, Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize, JsonSchema, MergeFrom,
|
|
)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum EditPredictionProvider {
|
|
None,
|
|
#[default]
|
|
Copilot,
|
|
Supermaven,
|
|
Zed,
|
|
}
|
|
|
|
/// The contents of the edit prediction settings.
|
|
#[skip_serializing_none]
|
|
#[derive(Clone, Debug, Default, Serialize, Deserialize, JsonSchema, MergeFrom, PartialEq)]
|
|
pub struct EditPredictionSettingsContent {
|
|
/// A list of globs representing files that edit predictions should be disabled for.
|
|
/// This list adds to a pre-existing, sensible default set of globs.
|
|
/// Any additional ones you add are combined with them.
|
|
pub disabled_globs: Option<Vec<String>>,
|
|
/// The mode used to display edit predictions in the buffer.
|
|
/// Provider support required.
|
|
pub mode: Option<EditPredictionsMode>,
|
|
/// Settings specific to GitHub Copilot.
|
|
pub copilot: Option<CopilotSettingsContent>,
|
|
/// Whether edit predictions are enabled in the assistant prompt editor.
|
|
/// This has no effect if globally disabled.
|
|
pub enabled_in_text_threads: Option<bool>,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Clone, Debug, Default, Serialize, Deserialize, JsonSchema, MergeFrom, PartialEq)]
|
|
pub struct CopilotSettingsContent {
|
|
/// HTTP/HTTPS proxy to use for Copilot.
|
|
///
|
|
/// Default: none
|
|
pub proxy: Option<String>,
|
|
/// Disable certificate verification for the proxy (not recommended).
|
|
///
|
|
/// Default: false
|
|
pub proxy_no_verify: Option<bool>,
|
|
/// Enterprise URI for Copilot.
|
|
///
|
|
/// Default: none
|
|
pub enterprise_uri: Option<String>,
|
|
}
|
|
|
|
/// The mode in which edit predictions should be displayed.
|
|
#[derive(
|
|
Copy, Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize, JsonSchema, MergeFrom,
|
|
)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum EditPredictionsMode {
|
|
/// If provider supports it, display inline when holding modifier key (e.g., alt).
|
|
/// Otherwise, eager preview is used.
|
|
#[serde(alias = "auto")]
|
|
Subtle,
|
|
/// Display inline when there are no language server completions available.
|
|
#[default]
|
|
#[serde(alias = "eager_preview")]
|
|
Eager,
|
|
}
|
|
|
|
/// Controls the soft-wrapping behavior in the editor.
|
|
#[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, JsonSchema, MergeFrom)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum SoftWrap {
|
|
/// Prefer a single line generally, unless an overly long line is encountered.
|
|
None,
|
|
/// Deprecated: use None instead. Left to avoid breaking existing users' configs.
|
|
/// Prefer a single line generally, unless an overly long line is encountered.
|
|
PreferLine,
|
|
/// Soft wrap lines that exceed the editor width.
|
|
EditorWidth,
|
|
/// Soft wrap lines at the preferred line length.
|
|
PreferredLineLength,
|
|
/// Soft wrap line at the preferred line length or the editor width (whichever is smaller).
|
|
Bounded,
|
|
}
|
|
|
|
/// The settings for a particular language.
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema, MergeFrom)]
|
|
pub struct LanguageSettingsContent {
|
|
/// How many columns a tab should occupy.
|
|
///
|
|
/// Default: 4
|
|
pub tab_size: Option<NonZeroU32>,
|
|
/// Whether to indent lines using tab characters, as opposed to multiple
|
|
/// spaces.
|
|
///
|
|
/// Default: false
|
|
pub hard_tabs: Option<bool>,
|
|
/// How to soft-wrap long lines of text.
|
|
///
|
|
/// Default: none
|
|
pub soft_wrap: Option<SoftWrap>,
|
|
/// The column at which to soft-wrap lines, for buffers where soft-wrap
|
|
/// is enabled.
|
|
///
|
|
/// Default: 80
|
|
pub preferred_line_length: Option<u32>,
|
|
/// Whether to show wrap guides in the editor. Setting this to true will
|
|
/// show a guide at the 'preferred_line_length' value if softwrap is set to
|
|
/// 'preferred_line_length', and will show any additional guides as specified
|
|
/// by the 'wrap_guides' setting.
|
|
///
|
|
/// Default: true
|
|
pub show_wrap_guides: Option<bool>,
|
|
/// Character counts at which to show wrap guides in the editor.
|
|
///
|
|
/// Default: []
|
|
pub wrap_guides: Option<Vec<usize>>,
|
|
/// Indent guide related settings.
|
|
pub indent_guides: Option<IndentGuideSettingsContent>,
|
|
/// Whether or not to perform a buffer format before saving.
|
|
///
|
|
/// Default: on
|
|
pub format_on_save: Option<FormatOnSave>,
|
|
/// Whether or not to remove any trailing whitespace from lines of a buffer
|
|
/// before saving it.
|
|
///
|
|
/// Default: true
|
|
pub remove_trailing_whitespace_on_save: Option<bool>,
|
|
/// Whether or not to ensure there's a single newline at the end of a buffer
|
|
/// when saving it.
|
|
///
|
|
/// Default: true
|
|
pub ensure_final_newline_on_save: Option<bool>,
|
|
/// How to perform a buffer format.
|
|
///
|
|
/// Default: auto
|
|
pub formatter: Option<SelectedFormatter>,
|
|
/// Zed's Prettier integration settings.
|
|
/// Allows to enable/disable formatting with Prettier
|
|
/// and configure default Prettier, used when no project-level Prettier installation is found.
|
|
///
|
|
/// Default: off
|
|
pub prettier: Option<PrettierSettingsContent>,
|
|
/// Whether to automatically close JSX tags.
|
|
pub jsx_tag_auto_close: Option<JsxTagAutoCloseSettingsContent>,
|
|
/// Whether to use language servers to provide code intelligence.
|
|
///
|
|
/// Default: true
|
|
pub enable_language_server: Option<bool>,
|
|
/// The list of language servers to use (or disable) for this language.
|
|
///
|
|
/// This array should consist of language server IDs, as well as the following
|
|
/// special tokens:
|
|
/// - `"!<language_server_id>"` - A language server ID prefixed with a `!` will be disabled.
|
|
/// - `"..."` - A placeholder to refer to the **rest** of the registered language servers for this language.
|
|
///
|
|
/// Default: ["..."]
|
|
pub language_servers: Option<Vec<String>>,
|
|
/// Controls where the `editor::Rewrap` action is allowed for this language.
|
|
///
|
|
/// Note: This setting has no effect in Vim mode, as rewrap is already
|
|
/// allowed everywhere.
|
|
///
|
|
/// Default: "in_comments"
|
|
pub allow_rewrap: Option<RewrapBehavior>,
|
|
/// Controls whether edit predictions are shown immediately (true)
|
|
/// or manually by triggering `editor::ShowEditPrediction` (false).
|
|
///
|
|
/// Default: true
|
|
pub show_edit_predictions: Option<bool>,
|
|
/// Controls whether edit predictions are shown in the given language
|
|
/// scopes.
|
|
///
|
|
/// Example: ["string", "comment"]
|
|
///
|
|
/// Default: []
|
|
pub edit_predictions_disabled_in: Option<Vec<String>>,
|
|
/// Whether to show tabs and spaces in the editor.
|
|
pub show_whitespaces: Option<ShowWhitespaceSetting>,
|
|
/// Visible characters used to render whitespace when show_whitespaces is enabled.
|
|
///
|
|
/// Default: "•" for spaces, "→" for tabs.
|
|
pub whitespace_map: Option<WhitespaceMap>,
|
|
/// Whether to start a new line with a comment when a previous line is a comment as well.
|
|
///
|
|
/// Default: true
|
|
pub extend_comment_on_newline: Option<bool>,
|
|
/// Inlay hint related settings.
|
|
pub inlay_hints: Option<InlayHintSettingsContent>,
|
|
/// Whether to automatically type closing characters for you. For example,
|
|
/// when you type (, Zed will automatically add a closing ) at the correct position.
|
|
///
|
|
/// Default: true
|
|
pub use_autoclose: Option<bool>,
|
|
/// Whether to automatically surround text with characters for you. For example,
|
|
/// when you select text and type (, Zed will automatically surround text with ().
|
|
///
|
|
/// Default: true
|
|
pub use_auto_surround: Option<bool>,
|
|
/// Controls how the editor handles the autoclosed characters.
|
|
/// When set to `false`(default), skipping over and auto-removing of the closing characters
|
|
/// happen only for auto-inserted characters.
|
|
/// Otherwise(when `true`), the closing characters are always skipped over and auto-removed
|
|
/// no matter how they were inserted.
|
|
///
|
|
/// Default: false
|
|
pub always_treat_brackets_as_autoclosed: Option<bool>,
|
|
/// Whether to use additional LSP queries to format (and amend) the code after
|
|
/// every "trigger" symbol input, defined by LSP server capabilities.
|
|
///
|
|
/// Default: true
|
|
pub use_on_type_format: Option<bool>,
|
|
/// Which code actions to run on save after the formatter.
|
|
/// These are not run if formatting is off.
|
|
///
|
|
/// Default: {} (or {"source.organizeImports": true} for Go).
|
|
pub code_actions_on_format: Option<HashMap<String, bool>>,
|
|
/// Whether to perform linked edits of associated ranges, if the language server supports it.
|
|
/// For example, when editing opening <html> tag, the contents of the closing </html> tag will be edited as well.
|
|
///
|
|
/// Default: true
|
|
pub linked_edits: Option<bool>,
|
|
/// Whether indentation should be adjusted based on the context whilst typing.
|
|
///
|
|
/// Default: true
|
|
pub auto_indent: Option<bool>,
|
|
/// Whether indentation of pasted content should be adjusted based on the context.
|
|
///
|
|
/// Default: true
|
|
pub auto_indent_on_paste: Option<bool>,
|
|
/// Task configuration for this language.
|
|
///
|
|
/// Default: {}
|
|
pub tasks: Option<LanguageTaskSettingsContent>,
|
|
/// Whether to pop the completions menu while typing in an editor without
|
|
/// explicitly requesting it.
|
|
///
|
|
/// Default: true
|
|
pub show_completions_on_input: Option<bool>,
|
|
/// Whether to display inline and alongside documentation for items in the
|
|
/// completions menu.
|
|
///
|
|
/// Default: true
|
|
pub show_completion_documentation: Option<bool>,
|
|
/// Controls how completions are processed for this language.
|
|
pub completions: Option<CompletionSettingsContent>,
|
|
/// Preferred debuggers for this language.
|
|
///
|
|
/// Default: []
|
|
pub debuggers: Option<Vec<String>>,
|
|
}
|
|
|
|
/// Controls how whitespace should be displayedin the editor.
|
|
#[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, JsonSchema, MergeFrom)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum ShowWhitespaceSetting {
|
|
/// Draw whitespace only for the selected text.
|
|
Selection,
|
|
/// Do not draw any tabs or spaces.
|
|
None,
|
|
/// Draw all invisible symbols.
|
|
All,
|
|
/// Draw whitespaces at boundaries only.
|
|
///
|
|
/// For a whitespace to be on a boundary, any of the following conditions need to be met:
|
|
/// - It is a tab
|
|
/// - It is adjacent to an edge (start or end)
|
|
/// - It is adjacent to a whitespace (left or right)
|
|
Boundary,
|
|
/// Draw whitespaces only after non-whitespace characters.
|
|
Trailing,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Clone, Debug, Default, Serialize, Deserialize, JsonSchema, MergeFrom, PartialEq)]
|
|
pub struct WhitespaceMap {
|
|
pub space: Option<String>,
|
|
pub tab: Option<String>,
|
|
}
|
|
|
|
impl WhitespaceMap {
|
|
pub fn space(&self) -> SharedString {
|
|
self.space
|
|
.as_ref()
|
|
.map_or_else(|| SharedString::from("•"), |s| SharedString::from(s))
|
|
}
|
|
|
|
pub fn tab(&self) -> SharedString {
|
|
self.tab
|
|
.as_ref()
|
|
.map_or_else(|| SharedString::from("→"), |s| SharedString::from(s))
|
|
}
|
|
}
|
|
|
|
/// The behavior of `editor::Rewrap`.
|
|
#[derive(Debug, PartialEq, Clone, Copy, Default, Serialize, Deserialize, JsonSchema, MergeFrom)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum RewrapBehavior {
|
|
/// Only rewrap within comments.
|
|
#[default]
|
|
InComments,
|
|
/// Only rewrap within the current selection(s).
|
|
InSelections,
|
|
/// Allow rewrapping anywhere.
|
|
Anywhere,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema, MergeFrom)]
|
|
pub struct JsxTagAutoCloseSettingsContent {
|
|
/// Enables or disables auto-closing of JSX tags.
|
|
pub enabled: Option<bool>,
|
|
}
|
|
|
|
/// The settings for inlay hints.
|
|
#[skip_serializing_none]
|
|
#[derive(Clone, Default, Debug, Serialize, Deserialize, JsonSchema, MergeFrom, PartialEq, Eq)]
|
|
pub struct InlayHintSettingsContent {
|
|
/// Global switch to toggle hints on and off.
|
|
///
|
|
/// Default: false
|
|
pub enabled: Option<bool>,
|
|
/// Global switch to toggle inline values on and off when debugging.
|
|
///
|
|
/// Default: true
|
|
pub show_value_hints: Option<bool>,
|
|
/// Whether type hints should be shown.
|
|
///
|
|
/// Default: true
|
|
pub show_type_hints: Option<bool>,
|
|
/// Whether parameter hints should be shown.
|
|
///
|
|
/// Default: true
|
|
pub show_parameter_hints: Option<bool>,
|
|
/// Whether other hints should be shown.
|
|
///
|
|
/// Default: true
|
|
pub show_other_hints: Option<bool>,
|
|
/// Whether to show a background for inlay hints.
|
|
///
|
|
/// If set to `true`, the background will use the `hint.background` color
|
|
/// from the current theme.
|
|
///
|
|
/// Default: false
|
|
pub show_background: Option<bool>,
|
|
/// Whether or not to debounce inlay hints updates after buffer edits.
|
|
///
|
|
/// Set to 0 to disable debouncing.
|
|
///
|
|
/// Default: 700
|
|
pub edit_debounce_ms: Option<u64>,
|
|
/// Whether or not to debounce inlay hints updates after buffer scrolls.
|
|
///
|
|
/// Set to 0 to disable debouncing.
|
|
///
|
|
/// Default: 50
|
|
pub scroll_debounce_ms: Option<u64>,
|
|
/// Toggles inlay hints (hides or shows) when the user presses the modifiers specified.
|
|
/// If only a subset of the modifiers specified is pressed, hints are not toggled.
|
|
/// If no modifiers are specified, this is equivalent to `null`.
|
|
///
|
|
/// Default: null
|
|
pub toggle_on_modifiers_press: Option<Modifiers>,
|
|
}
|
|
|
|
/// The kind of an inlay hint.
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
pub enum InlayHintKind {
|
|
/// An inlay hint for a type.
|
|
Type,
|
|
/// An inlay hint for a parameter.
|
|
Parameter,
|
|
}
|
|
|
|
impl InlayHintKind {
|
|
/// Returns the [`InlayHintKind`]fromthe given name.
|
|
///
|
|
/// Returns `None` if `name` does not match any of the expected
|
|
/// string representations.
|
|
pub fn from_name(name: &str) -> Option<Self> {
|
|
match name {
|
|
"type" => Some(InlayHintKind::Type),
|
|
"parameter" => Some(InlayHintKind::Parameter),
|
|
_ => None,
|
|
}
|
|
}
|
|
|
|
/// Returns the name of this [`InlayHintKind`].
|
|
pub fn name(&self) -> &'static str {
|
|
match self {
|
|
InlayHintKind::Type => "type",
|
|
InlayHintKind::Parameter => "parameter",
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Controls how completions are processed for this language.
|
|
#[skip_serializing_none]
|
|
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, JsonSchema, MergeFrom, Default)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub struct CompletionSettingsContent {
|
|
/// Controls how words are completed.
|
|
/// For large documents, not all words may be fetched for completion.
|
|
///
|
|
/// Default: `fallback`
|
|
pub words: Option<WordsCompletionMode>,
|
|
/// How many characters has to be in the completions query to automatically show the words-based completions.
|
|
/// Before that value, it's still possible to trigger the words-based completion manually with the corresponding editor command.
|
|
///
|
|
/// Default: 3
|
|
pub words_min_length: Option<usize>,
|
|
/// Whether to fetch LSP completions or not.
|
|
///
|
|
/// Default: true
|
|
pub lsp: Option<bool>,
|
|
/// When fetching LSP completions, determines how long to wait for a response of a particular server.
|
|
/// When set to 0, waits indefinitely.
|
|
///
|
|
/// Default: 0
|
|
pub lsp_fetch_timeout_ms: Option<u64>,
|
|
/// Controls how LSP completions are inserted.
|
|
///
|
|
/// Default: "replace_suffix"
|
|
pub lsp_insert_mode: Option<LspInsertMode>,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, JsonSchema, MergeFrom)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum LspInsertMode {
|
|
/// Replaces text before the cursor, using the `insert` range described in the LSP specification.
|
|
Insert,
|
|
/// Replaces text before and after the cursor, using the `replace` range described in the LSP specification.
|
|
Replace,
|
|
/// Behaves like `"replace"` if the text that would be replaced is a subsequence of the completion text,
|
|
/// and like `"insert"` otherwise.
|
|
ReplaceSubsequence,
|
|
/// Behaves like `"replace"` if the text after the cursor is a suffix of the completion, and like
|
|
/// `"insert"` otherwise.
|
|
ReplaceSuffix,
|
|
}
|
|
|
|
/// Controls how document's words are completed.
|
|
#[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, JsonSchema, MergeFrom)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum WordsCompletionMode {
|
|
/// Always fetch document's words for completions along with LSP completions.
|
|
Enabled,
|
|
/// Only if LSP response errors or times out,
|
|
/// use document's words to show completions.
|
|
Fallback,
|
|
/// Never fetch or complete document's words for completions.
|
|
/// (Word-based completions can still be queried via a separate action)
|
|
Disabled,
|
|
}
|
|
|
|
/// Allows to enable/disable formatting with Prettier
|
|
/// and configure default Prettier, used when no project-level Prettier installation is found.
|
|
/// Prettier formatting is disabled by default.
|
|
#[skip_serializing_none]
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema, MergeFrom)]
|
|
pub struct PrettierSettingsContent {
|
|
/// Enables or disables formatting with Prettier for a given language.
|
|
pub allowed: Option<bool>,
|
|
|
|
/// Forces Prettier integration to use a specific parser name when formatting files with the language.
|
|
pub parser: Option<String>,
|
|
|
|
/// Forces Prettier integration to use specific plugins when formatting files with the language.
|
|
/// The default Prettier will be installed with these plugins.
|
|
#[serde(default)]
|
|
pub plugins: HashSet<String>,
|
|
|
|
/// Default Prettier options, in the format as in package.json section for Prettier.
|
|
/// If project installs Prettier via its package.json, these options will be ignored.
|
|
#[serde(flatten)]
|
|
pub options: HashMap<String, serde_json::Value>,
|
|
}
|
|
|
|
/// Controls the behavior of formatting files when they are saved.
|
|
#[derive(Debug, Clone, PartialEq, Eq, MergeFrom)]
|
|
pub enum FormatOnSave {
|
|
/// Files should be formatted on save.
|
|
On,
|
|
/// Files should not be formatted on save.
|
|
Off,
|
|
List(FormatterList),
|
|
}
|
|
|
|
impl JsonSchema for FormatOnSave {
|
|
fn schema_name() -> Cow<'static, str> {
|
|
"OnSaveFormatter".into()
|
|
}
|
|
|
|
fn json_schema(generator: &mut schemars::SchemaGenerator) -> schemars::Schema {
|
|
let formatter_schema = Formatter::json_schema(generator);
|
|
|
|
json_schema!({
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"items": formatter_schema
|
|
},
|
|
{
|
|
"type": "string",
|
|
"enum": ["on", "off", "language_server"]
|
|
},
|
|
formatter_schema
|
|
]
|
|
})
|
|
}
|
|
}
|
|
|
|
impl Serialize for FormatOnSave {
|
|
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
|
|
where
|
|
S: serde::Serializer,
|
|
{
|
|
match self {
|
|
Self::On => serializer.serialize_str("on"),
|
|
Self::Off => serializer.serialize_str("off"),
|
|
Self::List(list) => list.serialize(serializer),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'de> Deserialize<'de> for FormatOnSave {
|
|
fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
|
|
where
|
|
D: Deserializer<'de>,
|
|
{
|
|
struct FormatDeserializer;
|
|
|
|
impl<'d> Visitor<'d> for FormatDeserializer {
|
|
type Value = FormatOnSave;
|
|
|
|
fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
formatter.write_str("a valid on-save formatter kind")
|
|
}
|
|
fn visit_str<E>(self, v: &str) -> std::result::Result<Self::Value, E>
|
|
where
|
|
E: serde::de::Error,
|
|
{
|
|
if v == "on" {
|
|
Ok(Self::Value::On)
|
|
} else if v == "off" {
|
|
Ok(Self::Value::Off)
|
|
} else if v == "language_server" {
|
|
Ok(Self::Value::List(FormatterList::Single(
|
|
Formatter::LanguageServer { name: None },
|
|
)))
|
|
} else {
|
|
let ret: Result<FormatterList, _> =
|
|
Deserialize::deserialize(v.into_deserializer());
|
|
ret.map(Self::Value::List)
|
|
}
|
|
}
|
|
fn visit_map<A>(self, map: A) -> Result<Self::Value, A::Error>
|
|
where
|
|
A: MapAccess<'d>,
|
|
{
|
|
let ret: Result<FormatterList, _> =
|
|
Deserialize::deserialize(de::value::MapAccessDeserializer::new(map));
|
|
ret.map(Self::Value::List)
|
|
}
|
|
fn visit_seq<A>(self, map: A) -> Result<Self::Value, A::Error>
|
|
where
|
|
A: SeqAccess<'d>,
|
|
{
|
|
let ret: Result<FormatterList, _> =
|
|
Deserialize::deserialize(de::value::SeqAccessDeserializer::new(map));
|
|
ret.map(Self::Value::List)
|
|
}
|
|
}
|
|
deserializer.deserialize_any(FormatDeserializer)
|
|
}
|
|
}
|
|
|
|
/// Controls which formatter should be used when formatting code.
|
|
#[derive(Clone, Debug, Default, PartialEq, Eq, MergeFrom)]
|
|
pub enum SelectedFormatter {
|
|
/// Format files using Zed's Prettier integration (if applicable),
|
|
/// or falling back to formatting via language server.
|
|
#[default]
|
|
Auto,
|
|
List(FormatterList),
|
|
}
|
|
|
|
impl JsonSchema for SelectedFormatter {
|
|
fn schema_name() -> Cow<'static, str> {
|
|
"Formatter".into()
|
|
}
|
|
|
|
fn json_schema(generator: &mut schemars::SchemaGenerator) -> schemars::Schema {
|
|
let formatter_schema = Formatter::json_schema(generator);
|
|
|
|
json_schema!({
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"items": formatter_schema
|
|
},
|
|
{
|
|
"type": "string",
|
|
"enum": ["auto", "language_server"]
|
|
},
|
|
formatter_schema
|
|
]
|
|
})
|
|
}
|
|
}
|
|
|
|
impl Serialize for SelectedFormatter {
|
|
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
|
|
where
|
|
S: serde::Serializer,
|
|
{
|
|
match self {
|
|
SelectedFormatter::Auto => serializer.serialize_str("auto"),
|
|
SelectedFormatter::List(list) => list.serialize(serializer),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'de> Deserialize<'de> for SelectedFormatter {
|
|
fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
|
|
where
|
|
D: Deserializer<'de>,
|
|
{
|
|
struct FormatDeserializer;
|
|
|
|
impl<'d> Visitor<'d> for FormatDeserializer {
|
|
type Value = SelectedFormatter;
|
|
|
|
fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
formatter.write_str("a valid formatter kind")
|
|
}
|
|
fn visit_str<E>(self, v: &str) -> std::result::Result<Self::Value, E>
|
|
where
|
|
E: serde::de::Error,
|
|
{
|
|
if v == "auto" {
|
|
Ok(Self::Value::Auto)
|
|
} else if v == "language_server" {
|
|
Ok(Self::Value::List(FormatterList::Single(
|
|
Formatter::LanguageServer { name: None },
|
|
)))
|
|
} else {
|
|
let ret: Result<FormatterList, _> =
|
|
Deserialize::deserialize(v.into_deserializer());
|
|
ret.map(SelectedFormatter::List)
|
|
}
|
|
}
|
|
fn visit_map<A>(self, map: A) -> Result<Self::Value, A::Error>
|
|
where
|
|
A: MapAccess<'d>,
|
|
{
|
|
let ret: Result<FormatterList, _> =
|
|
Deserialize::deserialize(de::value::MapAccessDeserializer::new(map));
|
|
ret.map(SelectedFormatter::List)
|
|
}
|
|
fn visit_seq<A>(self, map: A) -> Result<Self::Value, A::Error>
|
|
where
|
|
A: SeqAccess<'d>,
|
|
{
|
|
let ret: Result<FormatterList, _> =
|
|
Deserialize::deserialize(de::value::SeqAccessDeserializer::new(map));
|
|
ret.map(SelectedFormatter::List)
|
|
}
|
|
}
|
|
deserializer.deserialize_any(FormatDeserializer)
|
|
}
|
|
}
|
|
|
|
/// Controls which formatters should be used when formatting code.
|
|
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, JsonSchema, MergeFrom)]
|
|
#[serde(untagged)]
|
|
pub enum FormatterList {
|
|
Single(Formatter),
|
|
Vec(Vec<Formatter>),
|
|
}
|
|
|
|
impl Default for FormatterList {
|
|
fn default() -> Self {
|
|
Self::Single(Formatter::default())
|
|
}
|
|
}
|
|
|
|
impl AsRef<[Formatter]> for FormatterList {
|
|
fn as_ref(&self) -> &[Formatter] {
|
|
match &self {
|
|
Self::Single(single) => std::slice::from_ref(single),
|
|
Self::Vec(v) => v,
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Controls which formatter should be used when formatting code. If there are multiple formatters, they are executed in the order of declaration.
|
|
#[derive(Clone, Default, Debug, Serialize, Deserialize, PartialEq, Eq, JsonSchema, MergeFrom)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum Formatter {
|
|
/// Format code using the current language server.
|
|
LanguageServer { name: Option<String> },
|
|
/// Format code using Zed's Prettier integration.
|
|
#[default]
|
|
Prettier,
|
|
/// Format code using an external command.
|
|
External {
|
|
/// The external program to run.
|
|
command: Arc<str>,
|
|
/// The arguments to pass to the program.
|
|
arguments: Option<Arc<[String]>>,
|
|
},
|
|
/// Files should be formatted using code actions executed by language servers.
|
|
CodeActions(HashMap<String, bool>),
|
|
}
|
|
|
|
/// The settings for indent guides.
|
|
#[skip_serializing_none]
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema, MergeFrom)]
|
|
pub struct IndentGuideSettingsContent {
|
|
/// Whether to display indent guides in the editor.
|
|
///
|
|
/// Default: true
|
|
pub enabled: Option<bool>,
|
|
/// The width of the indent guides in pixels, between 1 and 10.
|
|
///
|
|
/// Default: 1
|
|
pub line_width: Option<u32>,
|
|
/// The width of the active indent guide in pixels, between 1 and 10.
|
|
///
|
|
/// Default: 1
|
|
pub active_line_width: Option<u32>,
|
|
/// Determines how indent guides are colored.
|
|
///
|
|
/// Default: Fixed
|
|
pub coloring: Option<IndentGuideColoring>,
|
|
/// Determines how indent guide backgrounds are colored.
|
|
///
|
|
/// Default: Disabled
|
|
pub background_coloring: Option<IndentGuideBackgroundColoring>,
|
|
}
|
|
|
|
/// The task settings for a particular language.
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Clone, Deserialize, PartialEq, Serialize, JsonSchema, MergeFrom)]
|
|
pub struct LanguageTaskSettingsContent {
|
|
/// Extra task variables to set for a particular language.
|
|
#[serde(default)]
|
|
pub variables: HashMap<String, String>,
|
|
pub enabled: Option<bool>,
|
|
/// Use LSP tasks over Zed language extension ones.
|
|
/// If no LSP tasks are returned due to error/timeout or regular execution,
|
|
/// Zed language extension tasks will be used instead.
|
|
///
|
|
/// Other Zed tasks will still be shown:
|
|
/// * Zed task from either of the task config file
|
|
/// * Zed task from history (e.g. one-off task was spawned before)
|
|
pub prefer_lsp: Option<bool>,
|
|
}
|
|
|
|
/// Map from language name to settings.
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema, MergeFrom)]
|
|
pub struct LanguageToSettingsMap(pub HashMap<SharedString, LanguageSettingsContent>);
|
|
|
|
/// Determines how indent guides are colored.
|
|
#[derive(
|
|
Default, Debug, Copy, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema, MergeFrom,
|
|
)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum IndentGuideColoring {
|
|
/// Do not render any lines for indent guides.
|
|
Disabled,
|
|
/// Use the same color for all indentation levels.
|
|
#[default]
|
|
Fixed,
|
|
/// Use a different color for each indentation level.
|
|
IndentAware,
|
|
}
|
|
|
|
/// Determines how indent guide backgrounds are colored.
|
|
#[derive(
|
|
Default, Debug, Copy, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema, MergeFrom,
|
|
)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum IndentGuideBackgroundColoring {
|
|
/// Do not render any background for indent guides.
|
|
#[default]
|
|
Disabled,
|
|
/// Use a different color for each indentation level.
|
|
IndentAware,
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_formatter_deserialization() {
|
|
let raw_auto = "{\"formatter\": \"auto\"}";
|
|
let settings: LanguageSettingsContent = serde_json::from_str(raw_auto).unwrap();
|
|
assert_eq!(settings.formatter, Some(SelectedFormatter::Auto));
|
|
let raw = "{\"formatter\": \"language_server\"}";
|
|
let settings: LanguageSettingsContent = serde_json::from_str(raw).unwrap();
|
|
assert_eq!(
|
|
settings.formatter,
|
|
Some(SelectedFormatter::List(FormatterList::Single(
|
|
Formatter::LanguageServer { name: None }
|
|
)))
|
|
);
|
|
let raw = "{\"formatter\": [{\"language_server\": {\"name\": null}}]}";
|
|
let settings: LanguageSettingsContent = serde_json::from_str(raw).unwrap();
|
|
assert_eq!(
|
|
settings.formatter,
|
|
Some(SelectedFormatter::List(FormatterList::Vec(vec![
|
|
Formatter::LanguageServer { name: None }
|
|
])))
|
|
);
|
|
let raw = "{\"formatter\": [{\"language_server\": {\"name\": null}}, \"prettier\"]}";
|
|
let settings: LanguageSettingsContent = serde_json::from_str(raw).unwrap();
|
|
assert_eq!(
|
|
settings.formatter,
|
|
Some(SelectedFormatter::List(FormatterList::Vec(vec![
|
|
Formatter::LanguageServer { name: None },
|
|
Formatter::Prettier
|
|
])))
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_formatter_deserialization_invalid() {
|
|
let raw_auto = "{\"formatter\": {}}";
|
|
let result: Result<LanguageSettingsContent, _> = serde_json::from_str(raw_auto);
|
|
assert!(result.is_err());
|
|
}
|
|
}
|