IF: Conditional execution of a single command.
syntax:
:IF condition
:command if true
:command
IF is used for testing and branching. If condition is false (zero), then the
command immediately following it is skipped. If condition is true (nonzero),
that command is executed. If instructions can be nested.