From 749c16b9e9f62e30e3ad7fc6147c826f81db1ea8 Mon Sep 17 00:00:00 2001 From: Taylor Plewe Date: Sun, 18 May 2025 19:10:13 -0600 Subject: [PATCH] fix brace styling --- helix-term/src/commands/typed.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index 0ac55ce72..2cf6259e8 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -330,8 +330,7 @@ fn buffer_reopen( return Ok(()); } - if let Some(last_closed_doc_path) = cx.editor.closed_document_paths.pop() - { + if let Some(last_closed_doc_path) = cx.editor.closed_document_paths.pop() { cx.editor.open(&last_closed_doc_path, Action::Replace)?; } Ok(())