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

View file

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