vi is by far the most popular console-based Text Editor for UNIX/Linux Operating Systems. vi is pre-installed on nearly all UNIX flavors (includes macOS and centOS), you have to have a good hold of keyboard shortcuts and commands if you want to work with it, yes may seem old-school if you are new to the programming environment, but it is very popular among software engineers.
You can use the undo command to revert the text to how it was before each change. You can also apply the changes again (redo) or get back to the text before the changes you made. vi keeps a track of all the last changes you make.
How to undo changes in vi:
- If you are in INSERT mode, press the Escape - Esc key to get back to the COMMAND mode,
- Now type :u (colon and u) to undo the last changes.
- You can also use the long-form i.e: undo, but as :u is shorter so is more preferred.
How to redo changes in vi:
- Make sure you are not in INSERT mode, press Esc key to goto COMMAND mode,
- Now type Ctrl+R (press and hold Ctrl and then R key) to redo the last changes.
- You can also use the long-form i.e :undo, but as :u is shorter so is more preferred.
- You can also add a number to the redo command example: To redo the last two changes you can use 2Ctrl+R
If you want to undo multiple steps you can try syntax :u{n} where n -> number of steps you want to undo. Example: :2u or uu in vim will undo 2 previous changes,:3u will undo 3 changes. Note that there is a difference between the capital letter U (Shift + U) and the lower case letter 'u',
- :u undoes last change
- :U undoes all changes on line
Undo/Redo Examples:
- Open Terminal on your macOS/Linux (or Bash Shell if you are working on Windows 10)
- Open a file using vi command, example: vi sampleFile.txt
Step 1: Open file using vi
- Press i to enter insert mode
Step 2: Type i for insert mode
- Write some text,
Step 3: Write some text
- Press (Esc) Escape colon and u (:u),
Step 4: Press Ecsape colon uStep 5: Undo operation result
Revert changes using :earlier or :later commands:
Just like undo and redo, you can make use of :earlier command to undo changes, and :later to redo changes. If you add a number after this command example- :later 10 it will redo last 10 changes.
⚠️ Vi maintains a swap file while you are working on a text file, it is the undo/redo history buffer, this swap file gets deleted when you quit vi. If you exit vi then there is very less chance that you may finds undo/redo details, the possibility of recovering the changes is very less.
Undo up to a file write
If you had made a lot of changes to a file and you want to go back to the state in the past where you had last written the file, you can make use of the :earlier 1f command where "f" stands for "file". Similarly, you can user :later 1f to go forward.
Undo blocks
One undo command usually undoes a typed command, no matter how many changes that command makes. This sequence of undo-able changes forms an undo block. Therefore if the typed key calls a function, all the commands in the function are undone together.
If you want to write a function or script that doesn't create a new undoable change but joins in with the previous change use this command:
:undoj[oin]
⛏️ Tips:. (dot) can be used to repeat the same previous command, so if you use :u followed by . it will perform undo again.
✌️ Did you know? The name vi is derived from the shortest unambiguous abbreviation for the ex command visual, which switches the ex line editor to visual mode. - Wikipedia
Summary:- use :u to perfom undo operation.
- :u{Number} to perform mutliple undo operations.
- Use Ctrl+R to perform Redo operation.
- Location of eclipse.ini file on Mac OS X
- How to enable Do Not Disturb mode for Notification Center in Mac OS X 10.10 Yosemite
- Save webpage as pdf in Google Chrome for Mac OS X
- Spell check not working in Gmail : Mac OS X
- [Mac] To open Eclipse you need to install the legacy java se 6 runtime
- Mac OS X Error: Could not create the Java Virtual Machine
- Transfer files between Android and Mac OS X using usb cable
- Mac Studio Display Buzzing sound from the Monitor
- Kill or force quit stuck application or process in Mac OS X
- Take Screenshot on Mac OS X (Keyboard Shortcuts)
- vi undo redo command [Examples]
- Spotlight Search file path location on Mac OS X Mavericks or Yosemite
- Find Java JRE Installation location Mac OS X
- Take Screenshots on Mac OS without Keyboard
- How to See Hidden Folders and Files on macOS
- How to Setup maven on Mac (macOS)
- osascript wants to make changes while Android Studio Installation on Mac OS X
- Remove Applications from Startup Mac OS X
- Have you noticed MacOS Ventura About this Mac look like Mac OS X
- Find the location of Spotlight searched file
- Mac OS X Taking Screen Capture using Terminal
- Safari appends .html extension to files that are downloaded
- Open New tab using keyboard shortcut in Mac Terminal
- Mac OS X Stuck During Booting Gray Screen Logo and Spinner
- Disable Chrome Notification bell from Mac OS X menu bar
- How to Sync Microsoft Teams Calendar with Mac Calendar - Microsoft
- Android Emulator] ##KBD: Full queue, lose event Error Logs - Android
- How to Screenshot on Mac Ventura 13 - Step by Step Guide - MacOS
- How to use HashTags # correctly on Social Media Facebook Twitter - HowTos
- How to add duration to Android Toast makeText method - Android
- How to Stop Screen Recording on Mac - MacOS
- Android Studio : Connection Error : Failed to download patch file - Android-Studio
- How to copy file name and path to clipboard in Notepad++ - NotepadPlusPlus