If a file is set to read only mode, how do I change it to write mode and vice versa from within Emacs?
|
2
|
|
|
|
|
|
On my Windows box, that amounts to Alt-x to bring up the meta prompt and typing "toggle-read-only" to call the correct elisp function. If you are using the default keyboard bindings,
(which you read aloud as "Control-X Control-Q") will have the same effect. Remember, however, given that emacs is essentially infinitely re-configurable, your mileage may vary. |
||||||
|
|
|
I tried out Vebjorn Ljosa's solution, and it turned out that at least in my Emacs (22.3.1) there isn't such function as 'trim-right', which is used for removing an useless newline at the end of chmod output. Removing the call to 'trim-right' helped, but made the status row "bounce" because of the extra newline. |
||
|
|
|
If only the buffer (and not the file) is read-only, you can use If the file itself is read-only, however, you may find the following function useful:
The function depends on
Place the functions in your |
|||
|
|
|
|
Be sure you're not confusing 'file' with 'buffer'. You can set buffers to read-only and back again with |
||
|
|
|
|
OR CTRL X + CTRL Q. |
||
|
|
