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/0move | 65 ---------------------------- public/articals/neovim/0move.html | 65 ++++++++++++++++++++++++++++ public/articals/neovim/1modes | 53 ----------------------- public/articals/neovim/1modes.html | 53 +++++++++++++++++++++++ public/articals/neovim/2exitingnvim | 37 ---------------- public/articals/neovim/2exitingnvim.html | 37 ++++++++++++++++ public/articals/neovim/3Basic | 72 -------------------------------- public/articals/neovim/3Basic.html | 72 ++++++++++++++++++++++++++++++++ 8 files changed, 227 insertions(+), 227 deletions(-) delete mode 100644 public/articals/neovim/0move create mode 100644 public/articals/neovim/0move.html delete mode 100644 public/articals/neovim/1modes create mode 100644 public/articals/neovim/1modes.html delete mode 100644 public/articals/neovim/2exitingnvim create mode 100644 public/articals/neovim/2exitingnvim.html delete mode 100644 public/articals/neovim/3Basic create mode 100644 public/articals/neovim/3Basic.html (limited to 'public/articals/neovim') diff --git a/public/articals/neovim/0move b/public/articals/neovim/0move deleted file mode 100644 index 79a0e31..0000000 --- a/public/articals/neovim/0move +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - Neovim index - - - - -
- -
-
-

Moving around in Neovim

-
-

Basic movements

-

Moving around in Neovim is pretty easy so this will not be a long tutorial!

-

To move around in Neovim you need to be in the 'Normal mode' where you cannot type anything.

- -

Moving around in Neovim is not that hard as you can see! It might feel weird now but the more you use Neovim the more you get used to it. Now lets move onto some of the more advanced movements.

- Tip: You can press a number and a movement key to go to where you want, for example, 4k to move four spaces up or 4j to move four spaces down. -
-

Spesific movements on words

-

These are movements on individual sentances.

- - -
-

Spesific movements

-

To go to spesific parts of the file is pretty easy.

- -
-
-

That is all now you know how to move around in Neovim!

-
-
Back   Next
-    
- - diff --git a/public/articals/neovim/0move.html b/public/articals/neovim/0move.html new file mode 100644 index 0000000..f6810ea --- /dev/null +++ b/public/articals/neovim/0move.html @@ -0,0 +1,65 @@ + + + + + + + Neovim index + + + + +
+ +
+
+

Moving around in Neovim

+
+

Basic movements

+

Moving around in Neovim is pretty easy so this will not be a long tutorial!

+

To move around in Neovim you need to be in the 'Normal mode' where you cannot type anything.

+ +

Moving around in Neovim is not that hard as you can see! It might feel weird now but the more you use Neovim the more you get used to it. Now lets move onto some of the more advanced movements.

+ Tip: You can press a number and a movement key to go to where you want, for example, 4k to move four spaces up or 4j to move four spaces down. +
+

Spesific movements on words

+

These are movements on individual sentances.

+ + +
+

Spesific movements

+

To go to spesific parts of the file is pretty easy.

+ +
+
+

That is all now you know how to move around in Neovim!

+
+
Back   Next
+    
+ + diff --git a/public/articals/neovim/1modes b/public/articals/neovim/1modes deleted file mode 100644 index da70d37..0000000 --- a/public/articals/neovim/1modes +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - 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
-    
- - 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
+    
+ + diff --git a/public/articals/neovim/2exitingnvim b/public/articals/neovim/2exitingnvim deleted file mode 100644 index 5c9059b..0000000 --- a/public/articals/neovim/2exitingnvim +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - Exiting Neovim - - - - -
- -
-
-

How to exit Neovim!

-
-

The clasic meme, how do I exit Vim?

-

There are two ways to exit Neovim; both are easy to remember. The first way to leave Neovim is to leave without saving any of the changes, and the second way is to leave while saving the changes.

- -

To people who have used Vim-based text editors, this might look strange to you because you are used to using :q and :q! And whilst those do still work, using ZZ and ZQ is way more dynamic and just smoother in the long run.

-
-
-
Back Next
-    
- - diff --git a/public/articals/neovim/2exitingnvim.html b/public/articals/neovim/2exitingnvim.html new file mode 100644 index 0000000..af1ec51 --- /dev/null +++ b/public/articals/neovim/2exitingnvim.html @@ -0,0 +1,37 @@ + + + + + + + Exiting Neovim + + + + +
+ +
+
+

How to exit Neovim!

+
+

The clasic meme, how do I exit Vim?

+

There are two ways to exit Neovim; both are easy to remember. The first way to leave Neovim is to leave without saving any of the changes, and the second way is to leave while saving the changes.

+ +

To people who have used Vim-based text editors, this might look strange to you because you are used to using :q and :q! And whilst those do still work, using ZZ and ZQ is way more dynamic and just smoother in the long run.

+
+
+
Back Next
+    
+ + diff --git a/public/articals/neovim/3Basic b/public/articals/neovim/3Basic deleted file mode 100644 index 48da7fe..0000000 --- a/public/articals/neovim/3Basic +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - Basic commands - - - - -
- -
-
- -

Basic Commands


- -

There are over 100 commands in Neovim, and thankfully, you don't need to know all of them to use the text editor—just a few basic commands are enough.


- -

Copy and Paste in Neovim

-

Instead of using Ctrl + C and Ctrl + V, Neovim uses y and p for copying and pasting lines:

- -
- -

Deleting Lines

- -
- -

Undo and Redo

- -
- -

Saving and Quitting

- -
- -

Searching

- -
- -
Back
-
- - diff --git a/public/articals/neovim/3Basic.html b/public/articals/neovim/3Basic.html new file mode 100644 index 0000000..a185cb6 --- /dev/null +++ b/public/articals/neovim/3Basic.html @@ -0,0 +1,72 @@ + + + + + + + Basic commands + + + + +
+ +
+
+ +

Basic Commands


+ +

There are over 100 commands in Neovim, and thankfully, you don't need to know all of them to use the text editor—just a few basic commands are enough.


+ +

Copy and Paste in Neovim

+

Instead of using Ctrl + C and Ctrl + V, Neovim uses y and p for copying and pasting lines:

+ +
+ +

Deleting Lines

+ +
+ +

Undo and Redo

+ +
+ +

Saving and Quitting

+ +
+ +

Searching

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