From 2ae915448489a904705f299a22e02e4adc01ba68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominique=20K=C3=B6stler?= Date: Mon, 17 Oct 2022 06:16:41 +0200 Subject: [PATCH] nvim: update page (#9039) --- pages/common/nvim.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/nvim.md b/pages/common/nvim.md index c9e7a0fa6e..3d632ad4e9 100644 --- a/pages/common/nvim.md +++ b/pages/common/nvim.md @@ -1,7 +1,7 @@ # nvim > Neovim, a programmer's text editor based on Vim, provides several modes for different kinds of text manipulation. -> Pressing `i` enters edit mode. `` goes back to normal mode, which doesn't allow regular text insertion. +> Pressing `i` in normal mode enters insert mode. `` goes back to normal mode, which doesn't allow regular text insertion. > More information: . - Open a file: @@ -16,7 +16,7 @@ `{{yy|dd}}` -- Undo the last operation: +- Enter normal mode and undo the last operation: `u` @@ -28,7 +28,7 @@ `:%s/{{regular_expression}}/{{replacement}}/g` -- Save (write) the file, and quit: +- Enter normal mode and save (write) the file, and quit: `:wq`