mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 13:24:05 -06:00
22 lines
1.3 KiB
Markdown
22 lines
1.3 KiB
Markdown
---
|
|
title: "Vim - Exiting"
|
|
tags:
|
|
- vim
|
|
- movements
|
|
---
|
|
|
|
| | |
|
|
| ---------------------------------- | -------------------------------------------- |
|
|
| h j k l | ⃪ ↓ ↑ → |
|
|
| 0 | to the `start` of the line |
|
|
| $ (Shit + 4) | to the `end` of the line |
|
|
| e | to `end` of word |
|
|
| w |`forward` one **word** |
|
|
| W |`forward` one **Word** |
|
|
| b |`backward` one **word** |
|
|
| B |`backword` one **Word** |
|
|
| *<`number`>* wW / e / bB / h j k l | Move *<`number`>* times *<`text objects`>* |
|
|
| *<`number`>* G | to **specific line** |
|
|
| % | to **matching parenthesis {} () []** |
|
|
| zz | re-center |
|