Skip to main content

Posts

Showing posts from October, 2022

VIM Text Editor

Hi there, In this little article, I'll make some basic notes about the  VIM  text editor command and modes. Like  NANO , VIM is also a text editor. There's another text editor  VI , which stands for  Visual , but VIM stands for  Vi IMproved . In another way, VIM is the improved version of VI. VIM has improved with some of the features and preferences, especially with code highlighting and colored properties compared to VI. So, let's get started: Like the  NANO  command-line text editor, the VIM text editor is also used to open or create, edit, overwrite, and add the content of files. Compared to NANO, everything may look weird and complicated to you in VIM command, but don't worry, while a lot of practice you'll get to know how powerful text editor VIM is. Actually, VIM has many modes, but basic operational modes are Normal, Insert, Visual and Command-line modes, which I'll talk about. VIM text editor is not the same as NANO, because VIM acts or b...