VimTutor+
About
Install Vim
Exercises
Copy and Paste
/** * COPYING AND PASTING * * When in Command Mode, pressing 'yy' will copy the current line to the clip board. * To paste that line, use the 'puts command,' by pressing 'p' at the desired line. * * To copy a word, hover over the word and press 'yw' * * To copy to the end of the line press 'y$' * * In the 'Deletion Commands' exercise, you learned how to remove text. * All text removed by those commands gets copied to the clipboard so you * can think of the delete commands as the 'cut' feature. Anything you delete * can be pasted with the puts command. * **/
Previous: Undo Command
Next: Change Operator