Skip to content

Commit

Permalink
Add default value for Config::indent.
Browse files Browse the repository at this point in the history
  • Loading branch information
nnym committed Nov 11, 2023
1 parent d9fa1fe commit 6066c83
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 22 deletions.
38 changes: 32 additions & 6 deletions helix-core/src/syntax.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,21 @@ where
})
}

fn deserialize_tab_width_option<'de, D>(deserializer: D) -> Result<Option<usize>, D::Error>
where
D: serde::Deserializer<'de>,
{
usize::deserialize(deserializer).and_then(|n| {
if n > 0 && n <= 16 {
Ok(Some(n))
} else {
Err(serde::de::Error::custom(
"tab width must be a value from 1 to 16 inclusive",
))
}
})
}

pub fn deserialize_auto_pairs<'de, D>(deserializer: D) -> Result<Option<AutoPairs>, D::Error>
where
D: serde::Deserializer<'de>,
Expand Down Expand Up @@ -436,18 +451,20 @@ pub struct DebuggerQuirks {
pub absolute_paths: bool,
}

#[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub struct IndentationConfiguration {
#[serde(deserialize_with = "deserialize_tab_width")]
pub tab_width: usize,
pub unit: String,
#[serde(deserialize_with = "deserialize_tab_width_option")]
pub tab_width: Option<usize>,
pub unit: Option<String>,
}

#[derive(Debug, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub struct LanguageIndentationConfiguration {
#[serde(flatten)]
pub indent: IndentationConfiguration,
#[serde(deserialize_with = "deserialize_tab_width")]
pub tab_width: usize,
pub unit: String,
#[serde(default)]
pub required: bool,
}
Expand Down Expand Up @@ -495,6 +512,15 @@ impl FromStr for AutoPairConfig {
}
}

impl Default for IndentationConfiguration {
fn default() -> Self {
IndentationConfiguration {
tab_width: None,
unit: None,
}
}
}

#[derive(Debug)]
pub struct TextObjectQuery {
pub query: Query,
Expand Down
23 changes: 10 additions & 13 deletions helix-view/src/document.rs
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ impl Document {
/// is likewise auto-detected, and will remain unchanged if no line endings were detected.
pub fn detect_indent_and_line_ending(&mut self) {
self.indent_style = auto_detect_indent_style(&self.text).unwrap_or_else(|| {
self.indent_config(DEFAULT_INDENT, |config| IndentStyle::from_str(&config.unit))
self.indent_config(DEFAULT_INDENT, |config| config.unit.as_ref().map(|unit| IndentStyle::from_str(unit)))
});
if let Some(line_ending) = auto_detect_line_ending(&self.text) {
self.line_ending = line_ending;
Expand Down Expand Up @@ -999,18 +999,15 @@ impl Document {
};
}

fn indent_config<T, F: Fn(&IndentationConfiguration) -> T>(&self, default: T, mapper: F) -> T {
self.language_config()
.and_then(|config| config.indent.as_ref())
.filter(|config| config.required)
.map(|config| mapper(&config.indent))
.or_else(|| self.config.load().indent.as_ref().map(&mapper))
.or_else(|| {
self.language_config()
.and_then(|config| config.indent.as_ref())
.map(|config| mapper(&config.indent))
})
.unwrap_or(default)
fn indent_config<T, F: Fn(IndentationConfiguration) -> Option<T>>(&self, default: T, mapper: F) -> T {
let mut indent = self.config.load().indent.clone();

if let Some(c) = self.language_config().and_then(|config| config.indent.as_ref()) {
indent.tab_width = indent.tab_width.filter(|_| !c.required).or(Some(c.tab_width));
indent.unit = indent.unit.filter(|_| !c.required).or(Some(c.unit.clone()));
}

mapper(indent).unwrap_or(default)
}

/// Reload the document from its path.
Expand Down
5 changes: 2 additions & 3 deletions helix-view/src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,7 @@ pub struct Config {
pub rulers: Vec<u16>,
#[serde(default)]
pub whitespace: WhitespaceConfig,
#[serde(skip_serializing_if = "Option::is_none")]
pub indent: Option<IndentationConfiguration>,
pub indent: IndentationConfiguration,
/// Persistently display open buffers along the top
pub bufferline: BufferLine,
/// Vertical indent width guides.
Expand Down Expand Up @@ -835,7 +834,7 @@ impl Default for Config {
terminal: get_terminal_provider(),
rulers: Vec::new(),
whitespace: WhitespaceConfig::default(),
indent: None,
indent: IndentationConfiguration::default(),
bufferline: BufferLine::default(),
indent_guides: IndentGuidesConfig::default(),
color_modes: false,
Expand Down

0 comments on commit 6066c83

Please sign in to comment.