Learning Neovim > 3: Insert & Visual Modes
Neovim is a modal editor - every mode has a distinct purpose. This article covers the three modes you’ll use alongside Normal mode: Insert, Visual, and Command. Insert Mode Variants Entering Insert mode is intentional; there are several entry points depending on where you want the cursor: Key Action i Insert before current character a Insert after current character A Append at end of line o Open new line below + enter Insert mode O Open new line above + enter Insert mode Esc Return to Normal mode Visual Mode Visual mode lets you select text before applying an operator. ...