From be4b35ba75eabc06b010801eada689b17aff675a Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Wed, 27 May 2020 17:14:58 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Josh Soref --- doc/specs/Keyboard-Selection.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/specs/Keyboard-Selection.md b/doc/specs/Keyboard-Selection.md index 43ef53c6eed3..463f71e82333 100644 --- a/doc/specs/Keyboard-Selection.md +++ b/doc/specs/Keyboard-Selection.md @@ -80,7 +80,7 @@ If a selection is active, `markMode` leaves the selection untouched, all subsequ Pressing `markMode` again, will then anchor "start". Subsequent `moveSelectionPoint` calls move the "end" selection point. -Pressing `markMode` essentially cycles between which selection point is targetted. +Pressing `markMode` essentially cycles between which selection point is targeted. #### Block Selection A user can normally create a block selection by holding alt then creating a selection. @@ -131,7 +131,7 @@ Thanks to Keybinding Args, there will only be 2 new commands that need to be add | | `Enum direction { up, down, left, right}` | The direction the selection will be moved in. | | | `Enum expansionMode { cell, word, line, viewport, buffer }` | The context for which to move the selection anchor to. (defaults to `cell`) | `selectEntireBuffer` | | Select the entire text buffer. -| `markMode` | | Cycle the selection point targetted by `moveSelectionPoint`. If no selection exists, a selection is created at the cursor. | +| `markMode` | | Cycle the selection point targeted by `moveSelectionPoint`. If no selection exists, a selection is created at the cursor. | | `toggleBlockSelection` | | Transform the existing selection between a block selection and a line selection. |