From 1671a252dbe6c94e356f1c1fdc40cffcdb6b4839 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Thu, 7 Jul 2022 15:14:40 -0700 Subject: [PATCH] Add missing [Shift] in key binding (#557) --- TerminalDocs/selection.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TerminalDocs/selection.md b/TerminalDocs/selection.md index 33b21249..3032f0c5 100644 --- a/TerminalDocs/selection.md +++ b/TerminalDocs/selection.md @@ -45,8 +45,8 @@ Regardless of being in mark mode, you can expand an existing selection using the | Key binding | Result | | ----------- | ------ | | Shift + Arrow keys | Expand by character in the specified direction | -| Ctrl + Left | Expand to the beginning of the previous or existing word | -| Ctrl + Right | Expand to the end of the next or existing word | +| Ctrl + Shift + Left | Expand to the beginning of the previous or existing word | +| Ctrl + Shift + Right | Expand to the end of the next or existing word | | Shift + Home | Expand to the beginning of the line | | Shift + End | Expand to the end of the line | | Shift + Pgup | Expand up by a page (viewport) |