如何在 Windows XP 上安装 Org-mode 7.5 版本的信息文件?

如何在 Windows XP 上安装 Org-mode 7.5 版本的信息文件?

我试图在 Windows XP 机器上安装 Org-mode 7.5,但M-x org-info弹出的是 Emacs 23.3.1 附带的 Org 版本 6.33x 的文档

我下载了 zip 文件并将其解压到“~/.emacs.d/org-7.5/”:

c:/Documents and Settings/myusername/Application Data/.emacs.d/org-7.5:
total used in directory 16 available 279614668
drwxrwxrwx  1 myusername Domain Users     0 04-08 09:50 .
drwxrwxrwx  1 myusername Domain Users     0 04-08 09:58 ..
-rw-rw-rw-  1 myusername Domain Users 14168 03-07 13:29 Makefile
-rw-rw-rw-  1 myusername Domain Users  1051 03-07 13:29 README
drwxrwxrwx  1 myusername Domain Users     0 04-08 09:50 contrib
drwxrwxrwx  1 myusername Domain Users     0 04-08 09:50 doc
drwxrwxrwx  1 myusername Domain Users     0 04-08 10:10 lisp
-rw-rw-rw-  1 myusername Domain Users  1007 03-07 13:29 request-assign-future.txt

1.2 安装组织手册说明说要编辑附带的 Makefile,然后运行make。由于是 Windows 机器,所以这行不通。

C:\Documents and Settings\myusername\Application Data\.emacs.d\org-7.5>make
make
'make' is not recognized as an internal or external command,
operable program or batch file.

~/.emacs.d/init.el那么在我的文件中添加了以下行是什么呢:

(setq load-path (cons "~/.emacs.d/org-7.5/lisp" load-path))

重新启动 emacs,然后对 Org 7.5 lisp 目录进行字节编译:

ELISP> (version)
"GNU Emacs 23.3.1 (i386-mingw-nt5.1.2600)\n of 2011-03-10 on 3249CTO"
ELISP> load-path

("~/.emacs.d/org-7.5/lisp" "~/.emacs.d" <snip>)

ELISP> (byte-recompile-directory "~/.emacs.d/org-7.5/lisp/" 0 t)
"Done (Total of 99 files compiled)"

然后在init.el中添加以下几行:

(require 'org-install)
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(global-set-key "\C-col" 'org-store-link)
(global-set-key "\C-coc" 'org-capture)
(global-set-key "\C-coa" 'org-agenda)
(global-set-key "\C-cob" 'org-iswitchb)
(setq org-log-done t)

再次重启 emacs,现在 Org 7.5 已经安装完毕:

ELISP> org-version
"7.5"

但是执行的步骤不会创建或安装信息文件,因此当我使用时,M-x org-info我得到的是 Org 版本 7.5 而不是 6.33x 的手册:

File: org,  Node: Top,  Next: Introduction,  Prev: (dir),  Up: (dir)

Org Mode Manual
***************

This manual is for Org version 6.33x.

答案1

根据需要在 .emacs 或 .emacs.d/init.el 中添加一行,其中包含 Org 7.5 附带的文档 Info-default-directory-list

; Find the Org documentation
(setq Info-default-directory-list 
  (cons "~/.emacs.d/org-7.5/doc/" Info-default-directory-list)) 

这确实导致了一个奇怪的现象,即当启动信息模式时(例如使用M-x infoC-h i),Org 模式现在位于菜单中的顶行,位于主 Emacs 帮助之前。

File: dir,  Node: Top   This is the top of the INFO tree

  <snip>

* Menu:

Emacs
* Org Mode: (org).      Outline-based notes management and organizer

* Info: (info).                 How to use the documentation browsing system.
* Emacs: (emacs).               The extensible self-documenting text editor.
* Emacs FAQ: (efaq).            Frequently Asked Questions about Emacs.
* <snip>

另外,我发现org-info直到至少使用过一次 org-mode 后才可用,因此我添加了以下行以使其始终可用:

(require 'org-info)

笔记:emacs wiki 中关于 InfoPath 的条目建议使用INFOPATH环境变量,而不是Info-default-directory-list在非 Windows 机器上。

相关内容