Cheatsheet

Neovim: yank, delete and pasting cheatsheet

A cheatsheet for common yank (copy), delete (cut), and paste commands in Neovim. Yanking is used to copy text without removing it, with commands like yy to copy a line or y$ to copy from the cursor to the end of a line. Deleting, which acts as a “cut” operation, removes text and stores it for pasting, with common commands like dd to cut a line or dG to cut from the current line to the end of the file.