From abcdeb01e9dc3d2b4e670ec407986b059980bd9c Mon Sep 17 00:00:00 2001 From: Jeremy O'Brien Date: Fri, 31 Jan 2020 11:05:40 -0500 Subject: [PATCH] Fix defaultkeys help doc to match reality --- runtime/help/defaultkeys.md | 16 ++++++++-------- runtime/help/keybindings.md | 12 ++++++------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/runtime/help/defaultkeys.md b/runtime/help/defaultkeys.md index b2d4790a..be20b711 100644 --- a/runtime/help/defaultkeys.md +++ b/runtime/help/defaultkeys.md @@ -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 | diff --git a/runtime/help/keybindings.md b/runtime/help/keybindings.md index 305e04a8..b81668c6 100644 --- a/runtime/help/keybindings.md +++ b/runtime/help/keybindings.md @@ -404,13 +404,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",