Test your skills on our all Hosting services and get 15% off!

Use code at checkout:

Skills
08.10.2024

How to Use Vi/VIM Editor On Ubuntu Operating System

Vi and Vim (Vi Improved) are powerful text editors that come pre-installed on many Unix-based systems, including Ubuntu. Vim is an enhanced version of Vi, offering additional features such as syntax highlighting, better navigation, and more advanced functionality. If you’re working with Ubuntu and need to use Vi or Vim, this guide will help you get started with the basics.

1. Installing Vim on Ubuntu

Vi is usually pre-installed on most Ubuntu installations. If you want to use Vim, which has more features, you can install it using

apt
:

sudo apt update
sudo apt install vim -y

Once the installation is complete, you can open files using the

vim
command.

2. Opening and Creating Files

  • To open a file with Vim, use:
    vim filename.txt

    If the file doesn’t exist, Vim will create a new file with the specified name.

3. Vim Modes

Vim operates in different modes, and understanding them is crucial for effective editing:

  • Normal Mode: This is the default mode for navigation, copying, pasting, and deleting text. Press
    Esc
    to return to Normal mode.
  • Insert Mode: Allows you to insert or edit text. To enter Insert mode from Normal mode, press
    i
    .
  • Visual Mode: Used for selecting text. Press
    v
    to enter Visual mode.
  • Command-Line Mode: Allows you to execute commands like saving, quitting, and searching. Press
    :
    to enter Command-line mode.

4. Basic Commands in Vim

Here are some essential commands to get started:

4.1. Navigating in Normal Mode

  • h: Move left
  • j: Move down
  • k: Move up
  • l: Move right
  • w: Move to the beginning of the next word
  • b: Move to the beginning of the previous word
  • gg: Move to the beginning of the file
  • G: Move to the end of the file
  • Ctrl + f: Move one page down
  • Ctrl + b: Move one page up

4.2. Inserting Text

  • i: Enter Insert mode before the cursor.
  • a: Enter Insert mode after the cursor.
  • o: Insert a new line below the current line and enter Insert mode.
  • O: Insert a new line above the current line and enter Insert mode.

4.3. Saving and Exiting

  • : Save the current file without exiting.
  • : Quit Vim (only if no changes have been made).
  • !: Quit without saving changes.
  • or
    : Save and quit Vim.
  • ZZ: Save the file and exit Vim (in Normal mode).

4.4. Editing Text

  • x: Delete the character under the cursor.
  • dd: Delete the current line.
  • yy: Copy (yank) the current line.
  • p: Paste the copied or deleted text after the cursor.
  • u: Undo the last change.
  • Ctrl + r: Redo the last undone change.

4.5. Visual Mode

  • Press
    v
    in Normal mode to enter Visual mode, then use arrow keys or
    h
    ,
    j
    ,
    k
    ,
    l
    to select text.
  • After selecting text, you can use
    d
    to delete or
    y
    to copy the selected text.

4.6. Search and Replace

  • /pattern: Search forward for a pattern. Press
    n
    to find the next occurrence.
  • ?pattern: Search backward for a pattern.
  • :%s/old/new/g: Replace all occurrences of “old” with “new” in the file.
  • :%s/old/new/gc: Replace all occurrences with confirmation for each.

5. Working with Multiple Files

Vim allows you to work with multiple files in the same session:

  • filename: Open a new file in the same Vim session.
  • : Go to the next file.
  • : Go to the previous file.
  • filename: Split the window and open a new file.

6. Customizing Vim

You can customize Vim’s behavior by editing the

.vimrc
file in your home directory:

vim ~/.vimrc

Here are a few common configurations you can add:

  • Enable line numbers:
    set number
  • Enable syntax highlighting:
    syntax on
  • Set auto-indentation:
    set autoindent
  • Enable mouse support:
    set mouse=a

After adding these lines, save the

.vimrc
file and restart Vim to apply the changes.

7. Advanced Tips

  • Multiple Undos: Vim supports multiple undos. Use
    u
    to undo and
    Ctrl + r
    to redo.
  • Jumping to Line: Use
    :number
    to jump to a specific line. For example,
    :10
    takes you to line 10.
  • Using Buffers: Vim uses buffers to manage files. You can switch between buffers using
    :bnext
    and
    :bprev
    .
  • Use Vim Help: Vim has built-in documentation. Type
    :help
    in Command-line mode to access it.

Conclusion

Vim is a versatile and efficient editor that can greatly enhance your productivity once you learn its commands and features. With this guide, you should have a good understanding of how to use Vim for basic editing tasks on Ubuntu. The key to mastering Vim is practice, so don’t hesitate to explore its functionality and become comfortable with its commands. Happy editing!

Test your skills on our all Hosting services and get 15% off!

Use code at checkout:

Skills