I'm trying to set up a file on my ubuntu machine, but when I try to change the contents before saving the file I've just created, vim returns the error: No write since last change.
I've created the file with the user, who is trying to change the contents and sudo vim file.ext
doesn't solve the problem eiter.
Has anyone an idea?
Best regards, Lenny
EDIT:
Basically, my workflow looks like this:
touch file.js
vim file.js
In the file:
console.log('Hello_world');
Afterwards, I'm entering :q [Enter]
and then the error message appears.
Type 'q! ' in place of 'q' and press Enter. 'q! '
To save a file in Vim / vi, press Esc key, type :w and hit Enter key. One can save a file and quit vim / Vi by pressing Esc key, type :x and hit Enter key.
Press Esc key and type :w to save a file in vim. One can press Esc and type :wq to save changes to a file and exit from vim. Another option is to press :x.
Try this, after editing your file, quit with this command: wq!
. the ! means force the process, and when you combine it with wq that means force to save and quit.
The error message "No write since last change" that you encounter basically means that
you have not save
to your file since the last editing, the write here have the same meaning as save.
If you want to save and then quit VIM, type the following
:wq Enter
or
you can also type the following
:w Enter <-------- This command is to save the file
:q Enter <-------- This command quit VIM
If you want to quit without saving any changes, type the following
:q! Enter
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With