From d03982ee432bb418e1e74d490ae66371e201cee2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= <blaz@mxxn.io>
Date: Thu, 12 Aug 2021 10:18:37 +0900
Subject: [PATCH] cargo fmt

---
 helix-term/src/commands.rs | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 7994c26e..0acb57e2 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -451,14 +451,11 @@ fn goto_window(cx: &mut Context, align: Align) {
     let (view, doc) = current!(cx.editor);
 
     let height = view.area.height.saturating_sub(1) as usize; // -1 for statusline
+
     // - 1 so we have at least one gap in the middle.
     // a height of 6 with padding of 3 on each side will keep shifting the view back and forth
     // as we type
-    let scrolloff = cx
-        .editor
-        .config
-        .scrolloff
-        .min(height.saturating_sub(1) / 2);
+    let scrolloff = cx.editor.config.scrolloff.min(height.saturating_sub(1) / 2);
 
     let last_line = view.last_line(doc);