Skip to content

Files

Latest commit

6ab5dc3 · Feb 2, 2024

History

History
11 lines (8 loc) · 573 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 573 Bytes

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.