VIM - Command-Line Text Editor Introduction When I was started programming I switch lots of text-editor like gedit, nano, notepad++, sublime text, vs code, etc. But I never found any other editor like vim it is very powerful, lightweight(small in size), highly customizable, fast, easy(not really for new user) and many more features in one editor and it also works on Android smartphones. What is VIM? Vim is a built-in Unix command line text editor. It is an improved version of VI (vee eye). It is not similar to any other text editors. A new user will definitely get some difficulty in interacting with vim. The earliest version of vim is now 27 years old (!) and was created by Bram Moolenaar. What makes vim different? Vim has several modes, using theses mode we can read, write, replace and perform many operations. These modes are listed below: Normal Mode Insert Mode Command Mode Visual Mode Replace Mode How to use vim? Normal mode Type vim ...
If you are curious about node.js want to run on Android then, you arrived at the right place. In this blog, we are going to learn how to built node.js server using the express framework. As you know our smart android phones can do pretty much everything as we want if we know the way how to do it? What we are going to do Installation and configuration Installing VIM code editor Installing and running Node.js 1. Termux The Termux CLI Termux combines terminal emulation with Linux package collection. It comes as a free app that can be installed directly from the play store . 2. Configuration When you open Termux, you are greeted by a Command Line Interface (CLI). Right after installing Termux, it is recommended to check for updates and upgrade if need be. So type the following commands at the prompt — that is, after the ‘$’ sign — and press <Enter>: $ apt update && apt upgrade 3. VIM Vim is a text editor that can be used right in th...