💾 Archived View for bbs.geminispace.org › s › vim › 3170 captured on 2024-07-09 at 05:05:09. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2024-06-16)

🚧 View Differences

-=-=-=-=-=-=-

Quitting VIM

Nothing new, but a quick review:

:q!   force quit, abandon edits
:wq   save and quit
:x    save and quit
<SHIFT>ZZ   save and quit 

Posted in: s/vim

🚀 stack [mod]

2023-07-16 · 1 year ago · 👍 Addison, ResetReboot, Slondr2, byte

3 Comments ↓

🍀 gritty · 2023-07-16 at 23:38:

didn't know the last two. thanks

📡 byte · 2023-11-03 at 15:01:

also you can do this:

:!ps axuw | grep vim | grep -v grep | awk '{print $2}' | xargs kill -9

🤪

🚀 stack [OP/mod] · 2023-11-03 at 16:51:

you can also reboot, I suppose