diff options
author | Alex | 2023-06-16 17:02:15 +0000 |
---|---|---|
committer | GitHub | 2023-06-16 17:02:15 +0000 |
commit | 3fb9fafb2a366d004a04aa3d45d52e3ecfb57241 (patch) | |
tree | 170c649b6ef245fae3e530188014b26ab65d7ac4 /helix-view | |
parent | df094909d17469ded9782bd3fa714a7c34f20cd6 (diff) |
Add config for default line ending (#5621)
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/document.rs | 22 | ||||
-rw-r--r-- | helix-view/src/editor.rs | 52 |
2 files changed, 63 insertions, 11 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs index bd3c465d..6ec9ab97 100644 --- a/helix-view/src/document.rs +++ b/helix-view/src/document.rs @@ -8,7 +8,6 @@ use helix_core::doc_formatter::TextFormat; use helix_core::encoding::Encoding; use helix_core::syntax::{Highlight, LanguageServerFeature}; use helix_core::text_annotations::{InlineAnnotation, TextAnnotations}; -use helix_core::Range; use helix_vcs::{DiffHandle, DiffProviderRegistry}; use ::parking_lot::Mutex; @@ -31,8 +30,8 @@ use helix_core::{ indent::{auto_detect_indent_style, IndentStyle}, line_ending::auto_detect_line_ending, syntax::{self, LanguageConfiguration}, - ChangeSet, Diagnostic, LineEnding, Rope, RopeBuilder, Selection, Syntax, Transaction, - DEFAULT_LINE_ENDING, + ChangeSet, Diagnostic, LineEnding, Range, Rope, RopeBuilder, Selection, Syntax, Transaction, + NATIVE_LINE_ENDING, }; use crate::editor::{Config, RedrawHandle}; @@ -590,6 +589,7 @@ impl Document { config: Arc<dyn DynAccess<Config>>, ) -> Self { let (encoding, has_bom) = encoding_with_bom_info.unwrap_or((encoding::UTF_8, false)); + let line_ending = config.load().default_line_ending.into(); let changes = ChangeSet::new(&text); let old_state = None; @@ -603,7 +603,7 @@ impl Document { inlay_hints: HashMap::default(), inlay_hints_oudated: false, indent_style: DEFAULT_INDENT, - line_ending: DEFAULT_LINE_ENDING, + line_ending, restore_cursor: false, syntax: None, language: None, @@ -623,10 +623,12 @@ impl Document { focused_at: std::time::Instant::now(), } } + pub fn default(config: Arc<dyn DynAccess<Config>>) -> Self { - let text = Rope::from(DEFAULT_LINE_ENDING.as_str()); + let text = Rope::from(NATIVE_LINE_ENDING.as_str()); Self::from(text, None, config) } + // TODO: async fn? /// Create a new document from `path`. Encoding is auto-detected, but it can be manually /// overwritten with the `encoding` parameter. @@ -643,7 +645,7 @@ impl Document { from_reader(&mut file, encoding)? } else { let encoding = encoding.unwrap_or(encoding::UTF_8); - (Rope::from(DEFAULT_LINE_ENDING.as_str()), encoding, false) + (Rope::from(NATIVE_LINE_ENDING.as_str()), encoding, false) }; let mut doc = Self::from(rope, Some((encoding, has_bom)), config); @@ -887,14 +889,16 @@ impl Document { /// Detect the indentation used in the file, or otherwise defaults to the language indentation /// configured in `languages.toml`, with a fallback to tabs if it isn't specified. Line ending - /// is likewise auto-detected, and will fallback to the default OS line ending. + /// 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.language_config() .and_then(|config| config.indent.as_ref()) .map_or(DEFAULT_INDENT, |config| IndentStyle::from_str(&config.unit)) }); - self.line_ending = auto_detect_line_ending(&self.text).unwrap_or(DEFAULT_LINE_ENDING); + if let Some(line_ending) = auto_detect_line_ending(&self.text) { + self.line_ending = line_ending; + } } /// Reload the document from its path. @@ -1921,7 +1925,7 @@ mod test { Document::default(Arc::new(ArcSwap::new(Arc::new(Config::default())))) .text() .to_string(), - DEFAULT_LINE_ENDING.as_str() + NATIVE_LINE_ENDING.as_str() ); } diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index b2e07c73..1a884c32 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -44,7 +44,7 @@ pub use helix_core::register::Registers; use helix_core::{ auto_pairs::AutoPairs, syntax::{self, AutoPairConfig, SoftWrap}, - Change, + Change, LineEnding, NATIVE_LINE_ENDING, }; use helix_core::{Position, Selection}; use helix_dap as dap; @@ -273,7 +273,7 @@ pub struct Config { pub search: SearchConfig, pub lsp: LspConfig, pub terminal: Option<TerminalConfig>, - /// Column numbers at which to draw the rulers. Default to `[]`, meaning no rulers. + /// Column numbers at which to draw the rulers. Defaults to `[]`, meaning no rulers. pub rulers: Vec<u16>, #[serde(default)] pub whitespace: WhitespaceConfig, @@ -286,6 +286,8 @@ pub struct Config { pub soft_wrap: SoftWrap, /// Workspace specific lsp ceiling dirs pub workspace_lsp_roots: Vec<PathBuf>, + /// Which line ending to choose for new documents. Defaults to `native`. i.e. `crlf` on Windows, otherwise `lf`. + pub default_line_ending: LineEndingConfig, } #[derive(Debug, Default, Clone, PartialEq, Eq, Serialize, Deserialize)] @@ -727,6 +729,51 @@ impl Default for IndentGuidesConfig { } } +/// Line ending configuration. +#[derive(Debug, Copy, Clone, PartialEq, Eq, Serialize, Deserialize)] +#[serde(rename_all = "lowercase")] +pub enum LineEndingConfig { + /// The platform's native line ending. + /// + /// `crlf` on Windows, otherwise `lf`. + Native, + /// Line feed. + LF, + /// Carriage return followed by line feed. + Crlf, + /// Form feed. + #[cfg(feature = "unicode-lines")] + FF, + /// Carriage return. + #[cfg(feature = "unicode-lines")] + CR, + /// Next line. + #[cfg(feature = "unicode-lines")] + Nel, +} + +impl Default for LineEndingConfig { + fn default() -> Self { + LineEndingConfig::Native + } +} + +impl From<LineEndingConfig> for LineEnding { + fn from(line_ending: LineEndingConfig) -> Self { + match line_ending { + LineEndingConfig::Native => NATIVE_LINE_ENDING, + LineEndingConfig::LF => LineEnding::LF, + LineEndingConfig::Crlf => LineEnding::Crlf, + #[cfg(feature = "unicode-lines")] + LineEndingConfig::FF => LineEnding::FF, + #[cfg(feature = "unicode-lines")] + LineEndingConfig::CR => LineEnding::CR, + #[cfg(feature = "unicode-lines")] + LineEndingConfig::Nel => LineEnding::Nel, + } + } +} + impl Default for Config { fn default() -> Self { Self { @@ -771,6 +818,7 @@ impl Default for Config { text_width: 80, completion_replace: false, workspace_lsp_roots: Vec::new(), + default_line_ending: LineEndingConfig::default(), } } } |