2

我在 Windows 7 上使用 GNU Emacs 24.2.1。我想使用这些dired+功能,但我无法正确加载它们。

文件 dired+.el 存在于我的 lisp 路径中。

我在 Emacs 启动期间加载的配置文件中添加了该行(require 'dired+)

但是当我输入时C-x d,在我看来,加载了“正常”的 dired,而不是 dired+。

  • 如何判断我使用的是 dired+ 还是 dired?
    它看起来像这样:
    在此处输入图像描述
  • 但是,我可以使用以diredp-例如(如 dired+ wiki 中所述:http ://www.emacswiki.org/emacs/DiredPlus )

我究竟做错了什么?

4

1 回答 1

2

从 dired+.el 标题中的注释来看,dired+ 不会增加通常的 dired 模式显示,而是您必须使用 dired+ 特定的入口点才能进入 dired+ 缓冲区。

;;  Additional suggested key bindings:
;;
;; (define-key ctl-x-map   "d" 'diredp-dired-files)
;; (define-key ctl-x-4-map "d" 'diredp-dired-files-other-window)

因此,您将使用一个 for 覆盖通常的C-x d键绑定 ( dired) diredp-dired-files

于 2013-03-13T10:04:30.153 回答