The first thing every Vim user has to unlearn
You don't Cmd+S in Vim. You don't File → Save As…. You drop into Command-line mode with :, type a one- or two-letter command, and hit Enter. It feels archaic for a day, then it feels like a remote control: a tiny number of buttons that cover everything.
Opening files
From the shell, point Vim at a path. From inside Vim, use :e (edit) to switch to a different file in the current window.
Quitting — the part everyone gets stuck on
Two letters, two ideas: w writes (saves), q quits. Combine them. Add ! to force past warnings. ZZ and ZQ are Normal-mode shortcuts that skip the colon entirely.
Multiple files at once
Vim opens many files into buffers — files held in memory. :bn / :bp cycle. :qa quits all buffers; :wqa writes and quits all. We'll go deeper on buffers in Track 3 — for now, know that vim file1 file2 file3 is a normal thing to do.
ZZ is your fastest exit. Two keystrokes in Normal mode, no colon, no Enter. Pair it with ZQ (quit without saving) and you'll never type :wq again.Vim refuses to quit — what now?
If :q says "E37: No write since last change," Vim is protecting unsaved work. Decide: :w to save then :q, or :q! to discard and quit. The error message is useful, not rude.