From f1ea5520f66b1aa13118149131e990e19d1b87aa Mon Sep 17 00:00:00 2001 From: firai Date: Tue, 19 Nov 2024 01:13:59 +0800 Subject: [PATCH] Abbreviate `cmd`, revise "change cell type" binding description to follow JL and revise `Shift` description --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 64a8b62..75d4479 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ mamba install -c conda-forge jupyterlab_vim To learn how to modify key bindings see the [modify-keybinds.md](modify-keybinds.md) file. **Please note that all keys are lowercase unless Shift is explicitly indicated.** -For example, Y, Y is two lowercase ys, and Shift-Y, Y is one uppercase Y followed by a lowercase y. +For example, `Y, Y` means press lowercase y twice, while `Shift-Y, Y` means press Shift+y followed by a lowercase y. Shortcuts that this extension introduces: @@ -78,9 +78,9 @@ Shortcuts that this extension introduces: | Ctrl-Y | Move Cell Up | | Ctrl-O, Z, Z | Center Cell | | Ctrl-G | Show Tooltip | -| Command/Ctrl-1 | Code Cell Mode | -| Command/Ctrl-2 | Markdown Cell Mode | -| Command/Ctrl-3 | Raw Cell Mode | +| Cmd/Ctrl-1 | Change to Code Cell | +| Cmd/Ctrl-2 | Change to Markdown Cell | +| Cmd/Ctrl-3 | Change to Raw Cell | | Shift-Esc | Exit to Command Mode | | Esc or Ctrl-\[ | Exit Current Mode | @@ -114,8 +114,8 @@ Shortcuts that this extension introduces: - To leave Normal mode to Command mode, several options are available: - Shift+Esc - Esc or Ctrl+[, if the "Enable `Esc` and `Ctrl-[` leaving vim Normal mode to Jupyter Command mode" option is enabled (on by default). To disable the option, go to Settings menu → Settings Editor → Notebook Vim. - - To enter Insert mode from Normal mode, use one of the insert commmands, such as i, I, a, A, o, O, c, C, s or S. - - To enter Visual mode from Normal mode, use one of the visual commands, such as v, V or Ctrl+V. + - To enter Insert mode from Normal mode, use one of the insert commmands, such as i, Shift+i, a, Shift+a, o, Shift+o, c, Shift+c, s or Shift+s. + - To enter Visual mode from Normal mode, use one of the visual commands, such as v, Shift+v or Ctrl+v. - From Insert or Visual mode: - To leave Insert or Visual mode to Normal mode, press Esc or Ctrl+[. - To leave Insert or Visual mode to Command mode, press Shift+Esc.