Try it here
Subscribe
Unix vi editor shortcuts

Copy, Cut and Paste in Vim / Vi

copy,_cut_and_paste_in_vim_/_vi

Vim has its own terminology for copying, cutting, and pasting. Copy is called yank (y), cut is called delete (d), and paste is called put (p).

Copying (Yanking)

To copy text, place the cursor in the desired location and press the y key followed by the movement command. Below are some helpful yanking commands:

  • yy - Yank (copy) the current line, including the newline character.
  • 3yy - Yank (copy) three lines, starting from the line where the cursor is positioned.
  • y$ - Yank (copy) everything from the cursor to the end of the line.
  • y^ - Yank (copy) everything from the cursor to the start of the line.
  • yw - Yank (copy) to the start of the next word.
  • yiw – Yank (copy) the current word.
  • y% - Yank (copy) to the matching character. By default supported pairs are (), {}, and []. Useful to copy text between matching brackets.

Cutting (Deleting)

In normal mode, d is the key for cutting (deleting) text. Move the cursor to the desired position and press the d key, followed by the movement command. Here are some helpful deleting commands:

  • dd - Delete (cut) the current line, including the newline character.
  • 3dd - Delete (cut) three lines, starting from the line where the cursor is positioned,
  • d$ - Delete (cut) everything from the cursor to the end of the line.

The movement commands that apply for yanking are also valid for deleting. For example dw, deletes to the start of the next word and d^ deletes everything from the cursor to the start of the line.

Pasting (Putting)

To put the yanked or deleted text, move the cursor to the desired location and press p to put (paste) the text after the cursor or P to put (paste) before the cursor.

Copy, Cut and Paste in Visual Mode

Vim’s visual mode allows you to select and manipulate text.

  1. Place the cursor to the line you want to begin copping or cutting.

  2. The visual mode has three subtypes.

    • Press v to enter the visual mode.
    • Press V to enter visual line mode, where the text is selected by line.
    • Press Ctrl+v to enter visual block mode. In this mode, the text is selected by rectangle blocks.

    Entering the visual mode also marks a starting selection point.

  3. Move the cursor to the end of the text you want to copy or cut. You can use a movement command or up, down, right, and left arrow keys.

  4. Press y to copy, or d to cut the selection.

  5. Move the cursor to the location where you want to paste the contents.

  6. Press P to paste the contents before the cursor, or p to paste it after the cursor.

Writer profile pic

Uk01 on Jun 09, 2020 at 01:06 am


If you like dEexams.com and would like to contribute, you can write your article here or mail your article to admin@deexams.com . See your article appearing on the dEexams.com main page and help others to learn.



Post Comment

Comments( 0)

×

Forgot Password

Please enter your email address below and we will send you information to change your password.