diff options
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index f8c5d480..b918256e 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -871,7 +871,7 @@ fn switch_to_lowercase(cx: &mut Context) { doc.append_changes_to_history(view.id); } -fn scroll(cx: &mut Context, offset: usize, direction: Direction) { +pub fn scroll(cx: &mut Context, offset: usize, direction: Direction) { use Direction::*; let (view, doc) = current!(cx.editor); let cursor = coords_at_pos( |