Skip to content

vi editor and its command

The vi editor is a powerful, widely-used text editor in Unix and Linux environments. It is highly efficient for editing text and code, especially for those who are proficient with its command mode and shortcuts. The vi editor operates in different modes, which makes it unique compared to other text editors. Here’s a comprehensive overview of vi and its commands:

1. Overview of vi Modes

vi operates in three primary modes:

  • Normal Mode: The default mode when you open vi. In this mode, you can navigate and manipulate the text but not insert or delete text directly.
  • Insert Mode: Used for inserting text into the document. You switch to this mode by pressing i, I, a, A, o, or O.
  • Command Mode: Used for executing commands such as saving, quitting, and searching. You access this mode from normal mode by pressing :.

2. Basic vi Commands

Starting and Exiting vi

  • Start vi with a file:

vi filename.txt

  • Save and exit:
    • :wq – Save the changes and quit.
    • ZZ – Save and quit (in Normal mode).
  • Exit without saving:
    • :q! – Quit without saving changes.
  • Save only:
    • :w – Save changes without quitting.
  • Quit only (if there are no changes):
    • :q – Quit.

Navigating Text in vi

  • Move the cursor:
    • h – Left
    • j – Down
    • k – Up
    • l – Right
  • Word navigation:
    • w – Move to the beginning of the next word.
    • b – Move to the beginning of the previous word.
    • e – Move to the end of the current word.
  • Line navigation:
    • 0 – Move to the beginning of the current line.
    • ^ – Move to the first non-blank character of the line.
    • $ – Move to the end of the current line.
  • Page navigation:
    • Ctrl + f – Move forward one page.
    • Ctrl + b – Move backward one page.

Editing Text in vi

  • Insert mode:
    • i – Insert before the cursor.
    • I – Insert at the beginning of the line.
    • a – Append after the cursor.
    • A – Append at the end of the line.
    • o – Open a new line below the current line.
    • O – Open a new line above the current line.
  • Delete:
    • x – Delete the character under the cursor.
    • dd – Delete the current line.
    • D – Delete from the cursor to the end of the line.
    • d + motion (e.g., dw – delete a word).
  • Undo and Redo:
    • u – Undo the last change.
    • Ctrl + r – Redo the last undone change.
  • Copy, Cut, and Paste:
    • yy – Copy (yank) the current line.
    • y + motion (e.g., yw – copy a word).
    • p – Paste after the cursor.
    • P – Paste before the cursor.
    • dd – Cut (delete) the current line.
  • Replace:
    • r + character – Replace the character under the cursor with the given character.
    • R – Enter replace mode and replace characters until Esc is pressed.

Searching in vi

  • Search forward:
    • /pattern – Search for pattern forward in the file.
    • n – Repeat the search in the same direction.
    • N – Repeat the search in the opposite direction.
  • Search backward:
    • ?pattern – Search for pattern backward in the file.
  • Search and replace:
    • :%s/old/new/g – Replace old with new throughout the entire file.
    • :s/old/new/g – Replace old with new on the current line.

Advanced Commands

  • Line numbers:
    • :set number – Display line numbers.
    • :set nonumber – Hide line numbers.
  • Jump to a specific line:
    • :line_number – Go to a specific line (e.g., :20).
  • Show file information:
    • :e – Edit a file.
    • :w – Save changes to the current file.
  • Split the window:
    • :split – Split the window horizontally.
    • :vsplit – Split the window vertically.
  • Save and open new files:
    • :e filename – Open a new file.

3. Tips for Using vi

  • Practice mode: To get comfortable with vi, consider using a practice file to experiment with commands without the fear of losing data.
  • Keyboard shortcuts: Learning and memorizing key commands will greatly improve efficiency.
  • Custom configurations: You can customize vi by creating or editing a .vimrc file to adjust its behavior and appearance.

Conclusion vi is a robust text editor that offers powerful capabilities for text and code editing. While it has a steep learning curve, mastering its commands can greatly increase your productivity. Once you’re comfortable navigating between its modes and using its commands, vi becomes an invaluable tool for developers and system administrators.