Following is the vi/vim/gvim command to delete or remove empty blank lines:
:g/^$/d
Where :g executes a command in the generic operation :g/regex/command.
/^$ will match any empty line and its the regex portion in the generic operation.
/d is the command to delete the regex.
Alternate method,
:v/./d
How to Remove highlights or color from text file? Simply do :nohls
How to Search in a text file ? Simply do /<search_pattern>
Anything after / will be search pattern to find in file.
How to set Ignore case in text file for search? :set ic
How to open multiple files in GVIM? Use :split <path_of_file>
How to switch between multiple files using only keyboard in GVIM editor?
When multiple files are open in gvim editor, use ctrl+w 2 times to jump in-between files.
How to merge the line with line below? Shift+j or capital J
How to change text to lowercase or uppercase?
gu{motion} - As you move the up/down arrows the lines will change to all lower case.
gU{motion} - As you move the up/down arrows the line will change to all upper case.