如何使用 Emacs 更改文件的读/写模式?

如果一个文件被设置为只读模式,那么如何将其更改为写模式,反之亦然?

82355 次浏览

M-x 只读模式

在非常古老的 Emacs 版本中,命令是:

M-x 只读切换

在我的 Windows 框中,这相当于打开元提示符的 Alt-x,并键入“ read-only-mode”来调用正确的 elisp 函数。

如果使用默认键盘绑定,

C-x C-q

(大声读出“ Control-X Control-Q”)也会产生同样的效果。然而,请记住,考虑到 emacs 本质上是无限可重新配置的,您的成本可能会有所不同。

接下来的注释: 应该注意,缓冲区的可写状态不会改变文件的可写权限。如果您尝试写出只读 文件,您将看到一条确认消息。但是,如果您拥有该文件,则可以写出更改 没有以更改对该文件的权限。

如果您想对文件进行快速更改,而不必经过添加写权限、写出更改、删除写权限等多个步骤,那么这非常方便。我往往会忘记最后一步,留下潜在的关键文件,以便稍后进行意外更改。

CTRL + X + CTRL + Q

确保你没有混淆“文件”和“缓冲区”。可以使用 C-x C-q(toggle-read-only)将缓冲区设置为只读,然后再次返回。如果您有读取文件的权限,但是没有写入文件的权限,那么当您访问该文件时所获得的缓冲区(C-x C-ffind-file)将自动处于只读模式。如果希望更改文件系统中文件的权限,可以从包含该文件的目录上的 dired开始。可怕的文件可以在信息中找到; C-h i (emacs)dired RET

如果只有缓冲区(而不是文件)是只读的,您可以使用 toggle-read-only,它通常绑定到 C-x C-q

但是,如果文件本身是只读的,您可能会发现以下函数非常有用:

(defun set-buffer-file-writable ()
"Make the file shown in the current buffer writable.
Make the buffer writable as well."
(interactive)
(unix-output "chmod" "+w" (buffer-file-name))
(toggle-read-only nil)
(message (trim-right '(?\n) (unix-output "ls" "-l" (buffer-file-name)))))

函数取决于 unix-outputtrim-right:

(defun unix-output (command &rest args)
"Run a unix command and, if it returns 0, return the output as a string.
Otherwise, signal an error.  The error message is the first line of the output."
(let ((output-buffer (generate-new-buffer "*stdout*")))
(unwind-protect
(let ((return-value (apply 'call-process command nil
output-buffer nil args)))
(set-buffer output-buffer)
(save-excursion
(unless (= return-value 0)
(goto-char (point-min))
(end-of-line)
(if (= (point-min) (point))
(error "Command failed: %s%s" command
(with-output-to-string
(dolist (arg args)
(princ " ")
(princ arg))))
(error "%s" (buffer-substring-no-properties (point-min)
(point)))))
(buffer-substring-no-properties (point-min) (point-max))))
(kill-buffer output-buffer))))


(defun trim-right (bag string &optional start end)
(setq bag (if (eq bag t) '(?\  ?\n ?\t ?\v ?\r ?\f) bag)
start (or start 0)
end (or end (length string)))
(while (and (> end 0)
(member (aref string (1- end)) bag))
(decf end))
(substring string start end))

将函数放在 ~/.emacs.el中,计算它们(或重新启动 emacs)。然后,可以用 M-x set-buffer-file-writable使当前缓冲区中的文件可写。

我尝试了 Vebjorn Ljosa 的解决方案,结果发现至少在我的 Emacs (22.3.1)中没有类似于“ trim-right”的函数,这个函数用于删除 chmod 输出末尾的无用换行符。

删除对“右倾”的调用有所帮助,但是由于额外的换行,使状态行“弹出”。

我找到的是 M-x set-file-modes filename mode

在我的 Windows Vista 机顶盒上也能用。 例如: M-x set-file-modes <RET> ReadOnlyFile.txt <RET> 0666

如果您正在查看一个文件目录(dired) ,那么您可以对一个文件名使用 Shift + M并输入 modespec,这与 chmod命令中使用的属性相同。
M modespec <RET>

查看目录中文件的其他有用命令,请参见 Http://www.gnu.org/s/libtool/manual/emacs/operating-on-files.html

正如上面有人提到的: M-x 只读切换会起作用。

但是,现在不推荐使用这种方法,当前使用的方法是 M-x 只读模式,即将其设置为 C-x C-q键绑定。

C-x C-q是无用的。因为您还需要保存文件的权限。

我使用 航天器。它给我一个方便的函数来解决这个问题。代码如下。

(defun spacemacs/sudo-edit (&optional arg)
(interactive "p")
(if (or arg (not buffer-file-name))
(find-file (concat "/sudo:root@localhost:" (ido-read-file-name "File: ")))
(find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))

我调用 spacemacs/sudo-edit在 emacs 中打开一个文件并输入我的密码,我可以在不使用只读模式的情况下更改文件。

您可以编写一个类似 spacemacs/sudo-edit的新函数。