Make the Home and End key presses point the cursor to the start and end of a line, respectively

This commit is contained in:
R. Harish Navnit
2016-04-25 14:30:52 +05:30
parent 0ee6be3d0f
commit 94b71931bc

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",