From 6422b399e73967f012c29b05c9a26fc9e852711a Mon Sep 17 00:00:00 2001 From: lkearn Date: Tue, 9 Aug 2022 17:58:43 +1000 Subject: [PATCH] Feat: Add emacs character navigation, because I'm weird like that :) --- pkg/gui/editors.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/gui/editors.go b/pkg/gui/editors.go index 6f40c6d58..777d897d8 100644 --- a/pkg/gui/editors.go +++ b/pkg/gui/editors.go @@ -22,9 +22,9 @@ func (gui *Gui) handleEditorKeypress(textArea *gocui.TextArea, key gocui.Key, ch textArea.MoveCursorDown() case key == gocui.KeyArrowUp: textArea.MoveCursorUp() - case key == gocui.KeyArrowLeft: + case key == gocui.KeyArrowLeft || key == gocui.KeyCtrlB: textArea.MoveCursorLeft() - case key == gocui.KeyArrowRight: + case key == gocui.KeyArrowRight || key == gocui.KeyCtrlF: textArea.MoveCursorRight() case key == newlineKey: if allowMultiline {