summaryrefslogtreecommitdiff
path: root/public/articals/neovim/2exitingnvim
diff options
context:
space:
mode:
authorShipwreckt <shipwreckt@mailfence.com>2025-02-21 19:19:17 +0000
committerShipwreckt <shipwreckt@mailfence.com>2025-02-21 19:19:17 +0000
commit8bbdcbb2d0711134a68bd80ae541edbfb4f472ad (patch)
tree22f61dfa3335fbc7b96a11f06a6d0b7eb9988fa9 /public/articals/neovim/2exitingnvim
parent7ef03c449fc051b5fdf91f2d203af7b8696ea3cf (diff)
Changed all files to .html and new post!
Diffstat (limited to 'public/articals/neovim/2exitingnvim')
-rw-r--r--public/articals/neovim/2exitingnvim37
1 files changed, 0 insertions, 37 deletions
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 @@
-<!DOCTYPE html>
-<html lang="en-GB">
- <head>
- <meta charset="UTF-8">
- <meta name="author" content="Shipwreckt">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Exiting Neovim</title>
- <link rel="stylesheet" href="../../styles.css">
- <link rel="icon" href="../../Images/favi.png" type="image/x-icon">
- </head>
- <body>
- <header>
- <nav>
- <ul>
- <li><a href="../../index.html">Home</a></li>
- <li><a href="../../links.html">Links</a></li>
- <li><a href="../../projects.html">Projects</a></li>
- <li><a href="../../contact.html">Contact</a></li>
- </ul>
- </nav>
- </header>
- <main>
- <h1>How to exit Neovim!</h1>
- <hr>
- <p>The clasic meme, how do I exit Vim?</p>
- <p>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.</p>
- <ul>
- <li>Leave without saving - ZQ</li>
- <li>Leave with saving - ZZ</li>
- </ul>
- <p>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.</p>
- <center>
- <hr>
- <pre><a href="../neovimlist">Back</a> <a href="3Basic">Next</a>
- </main>
-</body>
-</html>