Vim

vim(1) is a terminal text editor. It is closely related to a family of editors stretching from ed(1) to nvim(1), but vim(1) is both the most commonly available and most visible.


History

ed(1) is a line editor. Originally created by Bell Labs for Unix, GNU ed is a POSIX-compliant implementation.

ex(1) is the extended line editor written for the first Berkeley Software Distribution. It is POSIX-compliant implementation of ed(1).

vi(1) is a visual text editor built on ex(1). Type a colon (:) to enter ex mode.

vim(1) is vi improved.

nvim(1) is a fork of vim(1) with a significantly refactored codebase, including...


Installation

All Linux and BSD distributions will have a POSIX-compliant implementation of ed(1) and vi(1) installed. Many will also have vim(1) installed. Most offer vim and neovim packages.

For Windows, while GVim is an option, Neovim is strongly recommended. Chocolatey offers a neovim package.


Configuration

Vim uses a custom configuration langauge. See Vimscript and Vim9script.

See here for details on configuring this family of programs.


Tips

Regular Expressions

For help with writing regular expressions in vim(1), look here.

Searching for Non-ASCII Characters

Vim regular expressions can use hexadecimal to represent non-ASCII code points, but the syntax differs for literal characters and character classes. Try...

Similar syntax is available for Unicode code points, especially multibyte characters. Try...

Search and Replace Expressions

If a placeholder like "LINENO" should be replaced with the actual line number, try:

:%s/LINENO/\=printf("%d", line('.'))/

Arithmetic can also be done e.g. line('.') - 1.

Quoting Words

Affixes can be applied programmatically using word deletion and registers. For example, to quote the currently selected word, use ciw'Ctrl+r"'.

This method can be used to apply any affixes. To surround an SPSS string variable name with the trimming functions, use ciwrtrim(ltrim(Ctrl+r")).

System Clipboard

The system clipboard can be interacted with like any other register.

On Linux, generally...

Try using gg"*yG to yank the entire buffer.


See also

vim(1)

audiobook of the Neovim user manual


CategoryRicottone

Vim (last edited 2024-02-22 13:11:59 by DominicRicottone)