Vim

Every sysadmin's favorite default text editor. Is being familiar to Vim a path to productivity? No. But being good at it can make for a difference in the day-to-day life of a sysadmin for there are advanced capabilities of this editor.

The keybindings of Vim

One of the things that make Vim popular is the keybindings.

KeybindingDescription
[mGo to the previous method.
g~wToggle letter casing.
2guWConvert two words into lowercase.
10d)Delete 10 sentences.
39zzPlace the cursor in the middle in line 39.
3d10wDelete 10 words and repeat 3 times.

Most of the time, Vim keybindings is made of mainly two things:

There's a certain pattern to it when you use it, too.

[count][operator][motion]

Tips and tricks