Add default bindings for CtrlHome and CtrlEnd

Fixes #280
This commit is contained in:
Zachary Yedidia
2016-09-03 13:37:16 -04:00
parent c4d6f5e584
commit b905400892
3 changed files with 115 additions and 111 deletions

View File

@@ -394,6 +394,8 @@ func DefaultBindings() map[string]string {
"CtrlBackslash": "NextTab",
"Home": "StartOfLine",
"End": "EndOfLine",
"CtrlHome": "CursorStart",
"CtrlEnd": "CursorEnd",
"PageUp": "CursorPageUp",
"PageDown": "CursorPageDown",
"CtrlG": "ToggleHelp",

File diff suppressed because one or more lines are too long

View File

@@ -50,6 +50,8 @@ you can rebind them to your liking.
"CtrlBackslash": "NextTab",
"Home": "Start",
"End": "End",
"CtrlHome": "CursorStart",
"CtrlEnd": "CursorEnd",
"PageUp": "CursorPageUp",
"PageDown": "CursorPageDown",
"CtrlG": "ToggleHelp",