We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1210a64 commit 65e822bCopy full SHA for 65e822b
pkg/gui/editors.go
@@ -8,6 +8,8 @@ import (
8
9
func (gui *Gui) handleEditorKeypress(textArea *gocui.TextArea, key gocui.Key, ch rune, mod gocui.Modifier, allowMultiline bool) bool {
10
switch {
11
+ case (key == gocui.KeyBackspace || key == gocui.KeyBackspace2) && (mod&gocui.ModAlt) != 0:
12
+ textArea.BackSpaceWord()
13
case key == gocui.KeyBackspace || key == gocui.KeyBackspace2:
14
textArea.BackSpaceChar()
15
case key == gocui.KeyCtrlD || key == gocui.KeyDelete:
0 commit comments