From 0f9c50d5b7b73b91fcfbded87996da48603b147f Mon Sep 17 00:00:00 2001 From: diegostafa Date: Sat, 4 May 2024 03:38:25 +0200 Subject: [PATCH] remove wrong statusbar check --- helix-term/src/ui/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 439e5f4b4..911080df1 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -1220,7 +1220,7 @@ impl EditorView { } let (view, doc) = current!(cxt.editor); - if modifiers == KeyModifiers::CONTROL || row == view.inner_area(doc).height { + if modifiers == KeyModifiers::CONTROL { return EventResult::Ignored(None); }