Is there any way to edit read-only file on GVim?
If you use vim on console, sudo vim /path/to/file
enables you to edit the read-only file. How can I edit it on already-opened MacVim window?
If you open :tabnew /path/to/file
then edit it, and try to save it, then the error occurs saying xx is read-only (add ! to override)
. However, when you try to save it by :w!
, the error still occurs saying xx Can't open file for reading
.
I know, if you first change the permission of the file and edit it, and then reverts its permission, then you can edit it successfully... But I don't want to bother doing such a tedious thing...
Thanks.