From 596f3d5c12da2c1a61d067c1641eccc8fa55f5ad Mon Sep 17 00:00:00 2001 From: alice pellerin Date: Sat, 2 May 2026 02:11:25 -0500 Subject: [PATCH] add gn/gp next/previous buffer keybinds --- src/config/default.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/config/default.rs b/src/config/default.rs index 0b1a5a3..3f9d5a3 100644 --- a/src/config/default.rs +++ b/src/config/default.rs @@ -98,6 +98,9 @@ impl Default for Config { (keypress("l"), GotoLineEnd.into()), (keypress("g"), GotoFileStart.into()), + + (keypress("p"), PreviousBuffer.into()), + (keypress("n"), NextBuffer.into()), ].into()), (Some(PartialAction::View), [ (keypress("z"), AlignViewCenter.into()), @@ -230,6 +233,9 @@ impl Default for Config { (keypress("l"), ExtendLineEnd.into()), (keypress("g"), ExtendFileStart.into()), + + (keypress("p"), PreviousBuffer.into()), + (keypress("n"), NextBuffer.into()), ].into()), (Some(PartialAction::View), [ (keypress("z"), AlignViewCenter.into()),