summaryrefslogtreecommitdiff
path: root/public/articals/neovim/2exitingnvim
diff options
context:
space:
mode:
authorShipwreckt <shipwreckt@mailfence.com>2024-08-11 20:43:11 +0100
committerShipwreckt <shipwreckt@mailfence.com>2024-08-11 20:43:11 +0100
commit1bc849c105a93f9830b72d8b67fb9bbbf5d60593 (patch)
tree813c475194b1abe0138f217c52946216812c367a /public/articals/neovim/2exitingnvim
parent742c940abe843d0002ac57c57175a3d34744757b (diff)
Neovim bits !
Diffstat (limited to 'public/articals/neovim/2exitingnvim')
-rw-r--r--public/articals/neovim/2exitingnvim36
1 files changed, 36 insertions, 0 deletions
diff --git a/public/articals/neovim/2exitingnvim b/public/articals/neovim/2exitingnvim
new file mode 100644
index 0000000..4b3cbd4
--- /dev/null
+++ b/public/articals/neovim/2exitingnvim
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <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 class="description">
+ <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 text-align=center><a href="../neovimlist">Back</a>
+ </main>
+</body>
+</html>