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

Microsoft Windows Server 2012 R2 Standard Evaluation Product Key

Microsoft Windows Server 2012 R2 Standard Evaluation D2N9P-3P6X9-2R39C-7RTCD-MDVJX DBGBW-NPF86-BJVTX-K3WKJ-MTB6V

ManageEngine ServiceDesk Plus - Reset password

Let's reset the default administrator's password to 'admin'

hmailserver: Notes from the field

hmailserver is one of free open source mail servers running on Microsoft Windows operating system.