-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4e5d31
commit 6ab5dc3
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Quick Vim Tips | ||
|
||
Welcome to Quick Vim Tips! Below are some handy tips to boost your productivity in Vim: | ||
|
||
1. **Navigate Efficiently**: Use `h`, `j`, `k`, and `l` for left, down, up, and right navigation respectively. | ||
2. **Delete a Word**: Press `dw` to delete the word under the cursor. | ||
3. **Undo**: Press `u` to undo your last action. | ||
4. **Redo**: Press `Ctrl + r` to redo your last undone action. | ||
5. **Search and Replace**: Use `:%s/old/new/g` to search and replace "old" with "new" in the entire file. | ||
|
||
That's it! Start using these tips to enhance your Vim experience. |