From 8bbdcbb2d0711134a68bd80ae541edbfb4f472ad Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Fri, 21 Feb 2025 19:19:17 +0000 Subject: Changed all files to .html and new post! --- public/articals/neovim/1modes.html | 53 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 public/articals/neovim/1modes.html (limited to 'public/articals/neovim/1modes.html') diff --git a/public/articals/neovim/1modes.html b/public/articals/neovim/1modes.html new file mode 100644 index 0000000..9929761 --- /dev/null +++ b/public/articals/neovim/1modes.html @@ -0,0 +1,53 @@ + + + + + + + Modes in Neovim + + + + +
+ +
+
+

Neovim modes

+
+

There are three main modes in Neovim that you really need to know about.

+

Normal mode

+

Normal mode is the default mode in Neovim; it is the mode you start off in, and it allows you to enter other modes. You can also execute commands in this mode. If you are in another mode, all you need to do to enter normal mode is press the ESC key.

+ +

Insert mode

+

This is probably the second-most-used mode that every person who uses Neovim uses. In this mode, it allows you to type, and that is really it!

+ + Remember to exit insert mode to normal mode press ESC +

Visual mode

+

In this mode, you are allowed to select text, kind of like how you can click and drag and select this text on your web browser; this mode allows you to copy, paste, and delete the selected text!

+ +
+

That is all for modes. There are a few more modes, like replace mode, that just allows you to replace a character, but these modes are not really used, at least by me.

+ +
+
+
Back   Next
+    
+ + -- cgit v1.2.3