Unverified Commit 3cd07728 authored by Kevin Cao's avatar Kevin Cao Committed by GitHub
Browse files

Make alt+backspace delete word (#1223)

parent ecf8b793
......@@ -145,6 +145,8 @@ func (i *Instance) Readline() (string, error) {
buf.MoveLeftWord()
case 'f':
buf.MoveRightWord()
case CharBackspace:
buf.DeleteWord()
case CharEscapeEx:
escex = true
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment