I looked through the vim manual, and I could only find the commands for "write and quit" and "write (if edited) and quit". Is there a command for "write out without quitting", similar to ^o in nano?
Tell me more
×
Unix & Linux Stack Exchange is a question and answer site for
users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.
|
Use the
Which can be abbreviated:
If you want to write to another file without changing the current file, supply a different filename to the
If you want to write to another file and change to that file, use the
Which can be abbreviated:
|
||||


:help writeand:help writingget you straight to the solution. – Stephane Chazelas Jan 15 at 15:21