Skip to main content

Text editor: vim

VIM is really powerful text editor. VIM stands for Vi IMproved. It is originally written by Bram Moolenaar.

Install vim

apt-get install vim
yum install vim
vimtutor

Display line number

Press Esc, then type :set number

:set number

Make it permanent by editting ~/.vimrc file

$ echo "set number" >> ~/.vimrc

Hide line number

Press Esc, then type :set nonumber

:set nonumber

Display new line character

Press Esc, then type :set list

:set list
:set list - Display new line character in vi editor

Set tab stop space

:set tabstop=4

Common settings in ~/.vimrc file

syntax on
set number
set tabstop=4

Open file and go to linne number

Open listfile.c and go to line 19

$ vim +19 listfile.c

Common commands

Command Action
gg Go to the beginning of file
G Go to the last line of file
GA Go to the end of file
:24 Go to the 24th line
x Delete current character
dw Delete current word
d0 Delete from current cursor to the begin of LINE
d$ Delete from current cursor to the end of LINE
dG Delete from current cursor to the end of FILE
r Replace current character
u Undo
ZZ Quit Vim

Free courses to learn VIM

Toolbox: Vim | TryHackMe

Popular posts from this blog

Powershell Core - pwsh

PowerShell Core is a cross-platform (Windows, Linux, and macOS) automation and configuration tool/framework that works well with your existing tools and is optimized for dealing with structured data (e.g. JSON, CSV, XML, etc.), REST APIs, and object models.

Entity Framework Core: Notes

Entity Framework is [WHAT] an object-relational mapper [WHY] enabling .NET developer to work with relational data using domain-specific object.