go-prompt/key_bind.go
2017-08-15 01:50:33 +09:00

63 lines
997 B
Go

package prompt
type KeyBindFunc func(*Buffer)
type KeyBind struct {
Key Key
Fn KeyBindFunc
}
type KeyBindMode string
const (
CommonKeyBind KeyBindMode = "common"
EmacsKeyBind KeyBindMode = "emacs"
)
var commonKeyBindings = []KeyBind{
// Go to the End of the line
{
Key: End,
Fn: func(buf *Buffer) {
x := []rune(buf.Document().TextAfterCursor())
buf.CursorRight(len(x))
},
},
// Go to the beginning of the line
{
Key: Home,
Fn: func(buf *Buffer) {
x := []rune(buf.Document().TextBeforeCursor())
buf.CursorLeft(len(x))
},
},
// Delete character under the cursor
{
Key: Delete,
Fn: func(buf *Buffer) {
buf.Delete(1)
},
},
// Backspace
{
Key: Backspace,
Fn: func(buf *Buffer) {
buf.DeleteBeforeCursor(1)
},
},
// Right allow: Forward one character
{
Key: Right,
Fn: func(buf *Buffer) {
buf.CursorRight(1)
},
},
// Left allow: Backward one character
{
Key: Left,
Fn: func(buf *Buffer) {
buf.CursorLeft(1)
},
},
}