From 2e756a93487802498dd4ff314dc9586df8a3c132 Mon Sep 17 00:00:00 2001 From: Nik Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Wed, 19 Mar 2025 12:51:13 +0000 Subject: [PATCH] feat: [editor.vcs] -> [editor.version-control] --- book/src/editor.md | 6 ++---- helix-term/src/handlers/blame.rs | 2 +- helix-term/src/ui/editor.rs | 2 +- helix-view/src/editor.rs | 5 ++--- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/book/src/editor.md b/book/src/editor.md index a4b409d1..393a7b76 100644 --- a/book/src/editor.md +++ b/book/src/editor.md @@ -4,7 +4,7 @@ - [`[editor.clipboard-provider]` Section](#editorclipboard-provider-section) - [`[editor.statusline]` Section](#editorstatusline-section) - [`[editor.lsp]` Section](#editorlsp-section) -- [`[editor.vcs]` Section](#editorvcs-section) +- [`[editor.version-control]` Section](#editorversioncontrol-section) - [`[editor.cursor-shape]` Section](#editorcursor-shape-section) - [`[editor.file-picker]` Section](#editorfile-picker-section) - [`[editor.auto-pairs]` Section](#editorauto-pairs-section) @@ -160,9 +160,7 @@ The following statusline elements can be configured: [^2]: You may also have to activate them in the language server config for them to appear, not just in Helix. Inlay hints in Helix are still being improved on and may be a little bit laggy/janky under some circumstances. Please report any bugs you see so we can fix them! -### `[editor.vcs]` Section - -Version control config. +### `[editor.version-control]` Section | Key | Description | Default | | ------- | ------------------------------------------ | ------- | diff --git a/helix-term/src/handlers/blame.rs b/helix-term/src/handlers/blame.rs index 866ed466..c4f80d0b 100644 --- a/helix-term/src/handlers/blame.rs +++ b/helix-term/src/handlers/blame.rs @@ -64,7 +64,7 @@ impl helix_event::AsyncHook for BlameHandler { pub(super) fn register_hooks(handlers: &Handlers) { let tx = handlers.blame.clone(); register_hook!(move |event: &mut PostCommand<'_, '_>| { - if !event.cx.editor.config().vcs.blame { + if !event.cx.editor.config().version_control.blame { return Ok(()); } diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 107dbce7..41225bbc 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -201,7 +201,7 @@ impl EditorView { inline_diagnostic_config, config.end_of_line_diagnostics, )); - if config.vcs.blame { + if config.version_control.blame { if let Some(blame) = &doc.blame { decorations.add_decoration(text_decorations::blame::EolBlame::new( doc, diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 62000910..89e87e68 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -373,8 +373,7 @@ pub struct Config { pub end_of_line_diagnostics: DiagnosticFilter, // Set to override the default clipboard provider pub clipboard_provider: ClipboardProvider, - /// Version control - pub vcs: VersionControlConfig, + pub version_control: VersionControlConfig, } #[derive(Debug, Clone, PartialEq, Deserialize, Serialize, Eq, PartialOrd, Ord)] @@ -1018,7 +1017,7 @@ impl Default for Config { inline_diagnostics: InlineDiagnosticsConfig::default(), end_of_line_diagnostics: DiagnosticFilter::Disable, clipboard_provider: ClipboardProvider::default(), - vcs: VersionControlConfig::default(), + version_control: VersionControlConfig::default(), } } }