Merge branch 'fix_defaultkeys_help' of https://github.com/neutralinsomniac/micro into neutralinsomniac-fix_defaultkeys_help

This commit is contained in:
Zachary Yedidia 2020-02-07 20:09:44 -05:00
commit 3ac30343b8
2 changed files with 14 additions and 14 deletions

View file

@ -21,10 +21,10 @@ can change it!
|--------------------------- |------------------------------------------------------------------------------------------ |
| Arrows | Move the cursor around |
| Shift+arrows | Move and select text |
| Home or Ctrl+LeftArrow | Move to the beginning of the current line |
| End or Ctrl+RightArrow | Move to the end of the current line |
| Alt+LeftArrow | Move cursor one word left |
| Alt+RightArrow | Move cursor one word right |
| Home or Alt+LeftArrow | Move to the beginning of the current line |
| End or Alt+RightArrow | Move to the end of the current line |
| Ctrl+LeftArrow | Move cursor one word left |
| Ctrl+RightArrow | Move cursor one word right |
| Alt+{ | Move cursor to previous empty line, or beginning of document |
| Alt+} | Move cursor to next empty line, or end of document |
| PageUp | Move cursor up one page |
@ -62,10 +62,10 @@ can change it!
| Key | Description of function |
|------------------------------------ |------------------------------------------ |
| Alt+Shift+RightArrow | Select word right |
| Alt+Shift+LeftArrow | Select word left |
| Shift+Home or Ctrl+Shift+LeftArrow | Select to start of current line |
| Shift+End or Ctrl+Shift+RightArrow | Select to end of current line |
| Ctrl+Shift+RightArrow | Select word right |
| Ctrl+Shift+LeftArrow | Select word left |
| Shift+Home or Alt+Shift+LeftArrow | Select to start of current line |
| Shift+End or Alt+Shift+RightArrow | Select to end of current line |
| Ctrl+Shift+UpArrow | Select to start of file |
| Ctrl+Shift+DownArrow | Select to end of file |
| Ctrl+X | Cut selected text |

View file

@ -406,13 +406,13 @@ MouseWheelRight
"AltRight": "WordRight",
"AltUp": "MoveLinesUp",
"AltDown": "MoveLinesDown",
"AltShiftRight": "SelectWordRight",
"AltShiftLeft": "SelectWordLeft",
"CtrlLeft": "StartOfLine",
"CtrlRight": "EndOfLine",
"CtrlShiftLeft": "SelectToStartOfLine",
"CtrlShiftRight": "SelectWordRight",
"CtrlShiftLeft": "SelectWordLeft",
"AltLeft": "StartOfLine",
"AltRight": "EndOfLine",
"AltShiftLeft": "SelectToStartOfLine",
"ShiftHome": "SelectToStartOfLine",
"CtrlShiftRight": "SelectToEndOfLine",
"AltShiftRight": "SelectToEndOfLine",
"ShiftEnd": "SelectToEndOfLine",
"CtrlUp": "CursorStart",
"CtrlDown": "CursorEnd",