Merge pull request #74 from harishnavnit/master

Move the cursor to the start and end of line using "Home" and "End"
This commit is contained in:
Zachary Yedidia
2016-04-25 07:25:13 -04:00

View File

@@ -230,8 +230,8 @@ func DefaultBindings() map[string]string {
"CtrlK": "CutLine",
"CtrlV": "Paste",
"CtrlA": "SelectAll",
"Home": "Beginning",
"End": "End",
"Home": "StartOfLine",
"End": "EndOfLine",
"PgUp": "PageUp",
"PgDn": "PageDown",
"CtrlU": "HalfPageUp",