From 7fd859669ece40ec74fe9f1a2c6ccfac2c10ebbb Mon Sep 17 00:00:00 2001 From: Shawn Thuris Date: Wed, 25 Jan 2023 10:42:23 -0800 Subject: [PATCH] Update README.md Makes use of "state" vs "mode" consistent, and clarifies how to switch between states. --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b752355..1b4ed0f 100644 --- a/README.md +++ b/README.md @@ -48,9 +48,17 @@ You can also view the current state and mode on vscode's status bar. Oomotion supports a range of keymaps. You can view & edit most of them on [VS Code's Keyboard Shortcuts editor](https://code.visualstudio.com/docs/getstarted/keybindings). -## `INSERT` State +## From `NORMAL` State -* `j k` : enter `NORMAL` mode. +* `v` : enter `SELECT` state. + +## From `INSERT` State + +* `j k` : return to `NORMAL` state. + +## From `SELECT` State + +* `Esc` : return to `NORMAL` state. ## Switch Modes @@ -116,7 +124,7 @@ Add new cursors. ## Editing -Enter `INSERT` modes. +Enter `INSERT` state. * `i`: Insert at left of selection. * `a`: Insert at right of selection.