Added more default bindings:

- Shift+Home for selecting to start of line
- Shift+End for selecting to end of line
These already exist as Ctrl+Shift+Left/Right-arrow
This commit is contained in:
Nichlas Severinsen
2017-04-16 14:39:39 +02:00
parent 88c712b848
commit 5afda4e76c

View File

@@ -388,7 +388,9 @@ func DefaultBindings() map[string]string {
"CtrlLeft": "StartOfLine",
"CtrlRight": "EndOfLine",
"CtrlShiftLeft": "SelectToStartOfLine",
"ShiftHome": "SelectToStartOfLine",
"CtrlShiftRight": "SelectToEndOfLine",
"ShiftEnd": "SelectToEndOfLine",
"CtrlUp": "CursorStart",
"CtrlDown": "CursorEnd",
"CtrlShiftUp": "SelectToStart",