How to Delete all Text in a File Using Vi/Vim Editor

Channel: Linux Commands Linux
Abstract: assuming it is not already there. Then type dG to delete all the lines or text in it. Delete Complete Text in Vi Editor If Vim is in another modeclear

Vim is a great tool for editing text or configuration files in Linux. One of the lesser-known Vim tricks is clearing or deleting all text or lines in a file. Although, this is not a frequently used operation, its a good practice to know or learn it.

In this article, we will describe steps on how to delete, remove or clear all text in a file using a Vim editor in different vim modes.

Read Also: 5 Ways to Empty or Delete a Large File Content in Linux

The first option is to remove, clear or delete the all lines in a file in the normal mode (note that Vim starts in 「normal」 mode by default). Immediately after opening a file, type 「gg」 to move the cursor to the first line of the file, assuming it is not already there. Then type dG to delete all the lines or text in it.

Delete Complete Text in Vi Editor

If Vim is in another mode, for example, insert mode, you can access normal mode by pressing Esc or <C-[>.

Alternatively, you can also clear all lines or text in Vi/Vim in command mode by running the following command.

:1,$d 
Delete Text in Vi Editor

Last but not least, here is a list of Vim articles that you will find useful:

  1. 10 Reasons Why You Should Use Vi/Vim Text Editor in Linux
  2. Learn Useful ‘Vi/Vim’ Editor Tips and Tricks to Enhance Your Skills
  3. How to Enable Syntax Highlighting in Vi/Vim Editor
  4. How to Password Protect a Vim File in Linux
  5. 6 Best Vi/Vim-Inspired Code Editors for Linux
  6. PacVim – A Game That Teaches You Vim Commands

In this article, we have explained how to clear or delete all lines or text in a file using Vi/Vim editor. Remember to share your thoughts with us or ask questions using the comment form below.

Ref From: tecmint
Channels: Vim Tips

Related articles