mirror of
https://github.com/Hopiu/micro.git
synced 2026-04-19 13:51:02 +00:00
Make the Home and End key presses point the cursor to the start and end of a line, respectively
This commit is contained in:
parent
0ee6be3d0f
commit
94b71931bc
1 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue