From 0d0753b2f0a59a999ba52a194f7b69ec0b3d414d Mon Sep 17 00:00:00 2001 From: t-taylor Date: Wed, 5 Jul 2023 10:22:18 +0100 Subject: [PATCH] Run rustfmt --- helix-view/src/editor.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 0c84492183bfe..f5ed7b8f66329 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -611,7 +611,9 @@ impl std::str::FromStr for GutterType { "spacer" => Ok(Self::Spacer), "line-numbers" => Ok(Self::LineNumbers), "diff" => Ok(Self::Diff), - _ => anyhow::bail!("Gutter type can only be `diagnostics`, `spacer`, `line-numbers` or `diff`."), + _ => anyhow::bail!( + "Gutter type can only be `diagnostics`, `spacer`, `line-numbers` or `diff`." + ), } } }