summaryrefslogtreecommitdiffstats
path: root/pkg/gui
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui')
-rw-r--r--pkg/gui/editors.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/editors.go b/pkg/gui/editors.go
index 6cc6409cb..b94e6b5bd 100644
--- a/pkg/gui/editors.go
+++ b/pkg/gui/editors.go
@@ -37,9 +37,9 @@ func (gui *Gui) handleEditorKeypress(textArea *gocui.TextArea, key gocui.Key, ch
textArea.ToggleOverwrite()
case key == gocui.KeyCtrlU:
textArea.DeleteToStartOfLine()
- case key == gocui.KeyCtrlA:
+ case key == gocui.KeyCtrlA || key == gocui.KeyHome:
textArea.GoToStartOfLine()
- case key == gocui.KeyCtrlE:
+ case key == gocui.KeyCtrlE || key == gocui.KeyEnd:
textArea.GoToEndOfLine()
// TODO: see if we need all three of these conditions: maybe the final one is sufficient