- Vim - Conclusion
- Vim - Personalization
- Vim - Tips & Tricks
- Vim - Remote File Editing
- Vim - Using Vim as IDE
- Vim - Plug-ins
- Vim - Diff
- Vim - Folding
- Vim - Registers
- Vim - Macros
- Vim - Markers
- Vim - Working With Multiple Things
- Vim - Searching
- Vim - Revisiting Editing
- Vim - Navigating
- Vim - Editing
- Vim - Getting help
- Vim - Getting familiar
- Vim - It’s friends
- Vim - Installation & Configuration
- Vim - Introduction
- Vim - Home
Vim Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Vim - Revisiting Editing
We have seen basic editing earper. Let us understand some other editing features of Vim. In this section, we will discuss following items −
Buffer
Swap files
Cut, copy, delete, paste actions
Undo and redo actions
Buffer
Buffer is temporary memory used by Vim. When we open a file in editor, Vim loads its contents from disk drive. These contents are stored in memory (RAM) whenever we edit a file we are actually editing file from buffer. Once we finish editing and save file that time only buffer contents are transferred to appropriate file.
Swap
Swap area is a file created by Vim to store buffer contents periodically. While editing file our changes may be lost because of any reasons and Vim provides swap files to provide data recovery.
To get actual name of swap file execute following command −
:swapname
For instance in my case name was message.txt.swp as show in below image −
Cut, Copy and paste actions
We often perform cut, copy and paste actions on text. Vim provides following commands to perform these actions (y stands for yank and p stands for paste action) −
Sr.No | Command & Description |
---|---|
1 | x
Delete character from cursor position |
2 | X
Delete previous character from cursor position |
3 | y
Copy single character from cursor position |
4 | p
Paste character after cursor position |
5 | P
Paste character before cursor position |
Multi-position command
We can use cut, copy and paste commands with words and sentences as well. Below table shows this −
Sr.No | Command & Description |
---|---|
1 | dw
Delete word from cursor position |
2 | D
Delete entire pne from cursor position |
3 | dd
Delete entire pne |
4 | Y
Copies entire pne |
5 | yy
Copies entire pne |
To perform multi-pne/multi-word actions just use numbers with command. You can use this syntax with other commands as well. For instance, to delete 3 words use −
3dw
Undo
We can undo single or multiple actions. To perform one time undo action execute −
u
To perform multiple undo action, use number with same command. For instance, below command will undo last 3 actions −
3u
In addition to this, to undo all execute following command −
U
Redo
Redo is apposite action of undo. Execute any of the command to perform redo action.
Ctrl + r OR : redAdvertisements