From 6ab5dc3b7880b392314a1302aa751ff4c2586d92 Mon Sep 17 00:00:00 2001 From: Apathetic <135201180+apatheticdamn@users.noreply.github.com> Date: Fri, 2 Feb 2024 08:35:13 +0530 Subject: [PATCH] Create README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3b0968f --- /dev/null +++ b/README.md @@ -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.