Simple Vim Usage and Examples

Vim is a powerful and highly configurable text editor that is popular among developers and system administrators. In this guide, we will cover the basics of Vim usage and provide some examples to help you get started.

Step 1: Opening and Closing Vim

To open a file in Vim, use the following command:

vim filename

To exit Vim:

To save changes and exit:

:wq

Step 2: Basic Modes in Vim

Vim has three primary modes:

  1. Normal Mode: This is the default mode for navigation and commands.
  2. Insert Mode: Used for editing text. Enter this mode by pressing i.
  3. Command Mode: Used for executing commands like saving or quitting. Enter this mode by typing :.

Step 3: Basic Navigation

Step 4: Editing Text

Step 5: Searching and Replacing

To search for a word:

/<word>

Press n to go to the next occurrence and N to go to the previous occurrence.

To replace a word:

:%s/old_word/new_word/g

Step 6: Undo and Redo

Examples

  1. Open a file, edit, and save:

    • Open the file: vim example.txt
    • Enter insert mode: Press i and edit the text.
    • Save and exit: Press Esc, then type :wq.
  2. Delete multiple lines:

    • Navigate to the first line to delete.
    • Type 5dd to delete the next 5 lines.
  3. Search and replace:

    • Replace all occurrences of “foo” with “bar”: :%s/foo/bar/g.

Vim is a versatile tool, and mastering it can greatly improve your productivity. Practice these commands to get comfortable with Vim!