Arc-mode到底有没有拷贝文件到某个地址的功能?

File Archives (GNU Emacs Manual) 所说:

  C copies a file from the archive to disk

但是我的emacs的arc-mode里面C键没有绑定任何函数,使用 emacs -Q 打开的纯净版里面也没有。我用C-h C-f也没有找到类似的函数。

而且在Stack Exchange上也有人在讨论这个功能。所以emacs到底有没有自带这个功能啊_(:зゝ∠)_

难道是windows版里面没有吗

应该叫 Tar mode 吧,手册里是这么讲的,这个 Mode 显然需要 tar(1),GNU/Linux 跟 Mac OS 下默认都预装了,所以都能用 Tar mode。不清楚 Windows,要是有装的话,估计也能用。

The key bindings of Archive mode are similar to those in Tar mode

貌似除了tar之外的其他压缩包都是用 archive-mode 打开的,源文件是 arc-mode.el

说的是相似,并不是一样。arc-mode.el 有这么一行注释;

;;(define-key map "c" 'archive-copy)

可能没有实现或者有问题被删掉了吧。

原来没有这个功能啊_(:зゝ∠)_