website

This is my amazing website!
git clone git://shipwreckt.co.uk/website
Log | Files | Refs | README | LICENSE

2exitingnvim.html (1476B)


      1 <!DOCTYPE html>
      2 <html lang="en-GB">
      3   <head>
      4     <meta charset="UTF-8">
      5     <meta name="author" content="Shipwreckt">
      6     <meta name="viewport" content="width=device-width, initial-scale=1.0">
      7     <title>Exiting Neovim</title>
      8     <link rel="stylesheet" href="../../styles.css">
      9     <link rel="icon" href="../../Images/favi.png" type="image/x-icon">
     10   </head>
     11   <body>
     12     <header>
     13       <nav>
     14         <ul>
     15           <li><a href="../../index.html">Home</a></li>
     16           <li><a href="../../links.html">Links</a></li>
     17           <li><a href="../../projects.html">Projects</a></li>
     18           <li><a href="../../contact.html">Contact</a></li>
     19         </ul>
     20       </nav>
     21     </header>
     22     <main>
     23       <h1>How to exit Neovim!</h1>
     24       <hr>
     25       <p>The clasic meme, how do I exit Vim?</p>
     26       <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>
     27       <ul>
     28         <li>Leave without saving - ZQ</li>
     29         <li>Leave with saving - ZZ</li>
     30       </ul>
     31       <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>
     32       <center>
     33         <hr>
     34         <pre><a href="../neovimlist.html">Back</a> <a href="3Basic.html">Next</a>
     35     </main>
     36 </body>
     37 </html>