mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 21:34:06 -06:00
18 lines
491 B
Markdown
18 lines
491 B
Markdown
---
|
|
title: "Vim - The Personal Man"
|
|
tags:
|
|
- vim
|
|
---
|
|
|
|
# Exiting 👻
|
|
|
|
| | |
|
|
| --------------- | ------------------------------------- |
|
|
| :q | to `quit` the file |
|
|
| :e! | to `trash` all changes and **reload** |
|
|
| :q! | to `trash` all changes and **quit** |
|
|
| :wq | to `save` the changes and **quit** |
|
|
| ZZ (Shift + zz) | to `save` the changes and **quit** |
|
|
|
|
|