You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
Saving a read-only file in Atom is not possible, it results in an error (Atom Issue #9056). I looked into implementing such a feature, text-buffer seems to be a good place. Please take a look at my implementation. My question is:
Is text-buffer an appropriate place for this functionality?
I would like to avoid checking the read-only attribute prior to every save operation, which is why my implementation does this when a save fails. This works quite well, the only problem being that the error message in Atom is still visible. I don't see any obvious/clean way of suppressing this error message. If anyone has an idea, please let me know.
The text was updated successfully, but these errors were encountered:
I'm assuming if you don't re-throw the error it won't get displayed. In the catch block check that it's the error you're looking for then eat it IFF the user returns yes on the dialog.
I hope you're still planning on checking this in (once you fix that) It's a feature I know a TON of people want.
fs.stat() returns the result in a callback function, so I would have to save the exception, and wait for the result of fs.stat. Then, if the user did not confirm overwrite I could rethrow the exception from that callback. For some reason this did not seem to work, I was getting unhandled promise rejection errors.
This would be really nice. Since I work with Perforce all files are readonly and it's quite burdensome to have to keep switching to the Perforce interface or command line tools to unlock them.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Saving a read-only file in Atom is not possible, it results in an error (Atom Issue #9056). I looked into implementing such a feature, text-buffer seems to be a good place. Please take a look at my implementation. My question is:
The text was updated successfully, but these errors were encountered: