append VIM Command

How to use append Command in Linux VIM editor?

Explanation


a stands for Append
This append command allows the user to insert the text at the current cursor position in the file.

Usage:

a

Example:

  • Open the file test.txt using the command
    $ vim test.txt
  • To make the editor into append mode
    Press a
  • Enter 'Hscripts'
  • To come out of append mode
    Press Esc
  • Save the file using the write command
    :w
    append Vim Command

Ask Questions

Ask Question