# Vim Shortcuts Guide π
## πΉ Entering Vim Mode
Use `Esc` to enter normal mode in Vim.
## πΉ Navigation Commands
- `k` β Move up β¬οΈ
- `j` β Move down β¬οΈ
- `h` β Move left β¬
οΈ
- `l` β Move right β‘οΈ
## πΉ Editing Commands
- `i` β Insert mode π
- `I` β Insert mode at the beginning of the line π
- `o` β Open a new line below π₯
- `O` β Open a new line above π€
- `a` β Append mode βοΈ
- `A` β Append mode at the end of the line β‘οΈβοΈ
- `x` β Delete a character β
- `dd` β Delete the current line ποΈ
- `yy` β Yank (copy) the current line π
- `p` β Paste after the cursor π
- `P` β Paste before the cursor π
## πΉ Undo & Redo
- `u` β Undo last action π
- `Ctrl + r` β Redo last undone action π
## πΉ Buffer & File Management
- `Ctrl + w` β Close current buffer π
- `Ctrl + s` β Save current buffer πΎ
- `Ctrl + q` β Quit Vim mode πͺEnjoy efficient editing with Vim! β¨