How do I scroll a full page up or down in Vim?
<C-f> to scroll forward, <C-b> to scroll backward
How it works Vim provides two commands for scrolling by an entire screen (page) at a time: Ctrl-F (Forward) scrolls the view one full page down through the file
category:
navigation
tags:
#navigation
#motions
#normal-mode
How do I change the case of selected text in visual mode?
U, u, or ~ in visual mode
How it works When you have text selected in visual mode, you can change its case with three simple keys: U - Convert the entire selection to UPPERCASE u - Conve
category:
visual-mode
tags:
#visual-mode
#editing
#formatting
How do I redo an undone change in Vim?
The (Ctrl+r) command redoes the last change that was undone with u.
category:
editing
tags:
#editing
#undo-redo
#normal-mode
How do I scroll up half a page in Vim?
The (Ctrl+u) command scrolls the window up by half a screen, moving the cursor along with it.
category:
navigation
tags:
#navigation
#motions
#normal-mode
How do I insert a Unicode character by its code point in Vim?
In insert mode, followed by u and a 4-digit hex code inserts the Unicode character with that code point.
category:
editing
tags:
#editing
#unicode
#insert-mode
#special-characters
How do I filter a visual selection through an external shell command?
How it works Vim can pipe selected text through any external shell command, replacing the selection with the command's output.
category:
visual-mode
tags:
#visual-mode
#ex-commands
#editing
#formatting
How do I indent or unindent the current line while staying in Insert mode?
While in Insert mode, you can adjust indentation without switching back to Normal mode.
category:
editing
tags:
#editing
#insert-mode
#indentation
How do I insert special characters like arrows, math symbols, or accented letters in Vim?
Vim has a built-in digraph system that lets you type special characters using short two-character codes.
category:
editing
tags:
#editing
#insert-mode
#unicode
#special-characters
How do I scroll down half a page in Vim?
The (Ctrl+d) command scrolls the window down by half a screen, moving both the viewport and the cursor.
category:
navigation
tags:
#navigation
#motions
#normal-mode