In the vi editor, which command allows you to save the current file without exiting the editor?
Explanation
The command ':w' writes (saves) the changes to the file but keeps you in the vi editor. ':q' exits the editor, ':q!' quits without saving, ':x' saves and exits, and ':wq' also saves and quits.