diff --git a/pages/common/nvim.md b/pages/common/nvim.md index c9e7a0fa6..3d632ad4e 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`