Vim Text Editor
Vim is a clone of the popular vi editor for Unix. It is a text editor designed for speed and increased productivity, and is ubiquitous in most UNIX-based systems. Vimtutor is an excellent application that teaches us how to use vim. It comes with the vim package during the installation. You can run “vimtutor” on the command line to open this tutor. Here is the look at the screen - Here are some popular and most used commands of vim vim <filename> # Open <filename> in vim :help <topic> # Open up built-in help docs about <topic> if any exists :q # Quit vim :w # Save current file :wq # Save file and quit vim ZZ # Save file and quit vim :q! # Quit vim without saving file # ! *forces* :q to execute, hence quiting vim without saving ZQ # Quit vim without saving file :x # Save file an...