website

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

1modes.html (2527B)


      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>Modes in 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>Neovim modes</h1>
     24       <hr>
     25       <p>There are three main modes in Neovim that you really need to know about.</p>
     26       <h3>Normal mode</h3>
     27       <p>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 <b>ESC</b> key.</p>
     28 
     29       <h3>Insert mode</h3>
     30       <p>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!</p>
     31       <ul>
     32         <li>Switches into insert mode where you are - i</li>
     33         <li>Switches into insert mode on a new line below the current line - o</li>
     34         <li>Switches into insert mode on a new line above the current line - O</li>
     35         <li>Switches into insert mode on the next charicter - a</li>
     36         <li>Switches to insert mode at the start of the line - I</li>
     37         <li>Switches to insert mode at the end of the line - A</li>
     38       </ul>
     39       <font color="red">Remember to exit insert mode to normal mode press <b>ESC</b></font>
     40       <h3>Visual mode</h3>
     41       <p>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!</p>
     42       <ul>
     43         <li>To enter press - v</li>
     44       </ul>
     45       <hr>
     46       <p>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.</p>
     47 
     48       <center>
     49       <hr>
     50       <pre text-align=center><a href="../neovimlist.html">Back</a>   <a href="2exitingnvim.html">Next</a>
     51     </main>
     52 </body>
     53 </html>