This topic is based on website creation using 100% free, we will cover free domain registration, free webhosting, free ssl certification and upload and access web content. I hope and I'm sure it will be very helpful for you If you want to create your per…
Continue ReadingVim Comment multiple lines - Vim comment out multiple lines In this topic we will comment the multiple line with the help of visual mode. it will be helpful where we want to comment multiple lines doing this topic we can save time by comment multiple line ins…
Find and Replace in Vim Editor We can easily find and replace match word in vim text editor, it is very useful if we have multiple same value and we want to change/replace with other value, below are the steps Open a file which you want to find and replace t…
08 Vim Tutorial - Find Word and Character | Vim Search Text in File
How to search text or word in vim editor To find the character in a line We will go the default mode and first press f/F from the keyboard then press character which we want to find like we want to find w , below example Find Character in Next fw Find Ch…
Continue Reading07 - Vim Text Editor - How to Undo and Redo in Vim Editor | Vim Editor #linuxtopic
How to Undo in Vim, How to Redo in vim In this topic we will learn how to undo in vim and how to redo in vim with vim shortcuts key. We can easily undo single and multiple changes same we can redo. for this action we will use default mode of vim by pressing …
Continue Reading06 - VI Text Editor - Editing shortcuts Like Copy Cut Paste and Delete | #linuxtopic
Vim editor - Copy text in vim, delete line in vim VI Text Editor - Editing shortcuts In this topic we use vim command which will provide a powerful editing for example we have to edit text before the cursor, append text at the end of the line, add new line …
Continue ReadingCursor Navigation in vim editor, set number in file Before we start to navigate in vi first we will set the number in vim to better understating. To set number in vi 1 - Press Key 2 - Press Colon ( : ) and type :set number To unset …
Vi Editor - Vim Cursor Movement, Vi editor Tutorial VI Text Editor - Cursor Movements We can move the cursor with the help of keyboard Arrow key and h,j,k,l key OR h = Left j = Down k = Up l = Right Fo…