
Windows XP 시스템에 조직 모드 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)
이맥스를 다시 시작했습니다. 이제 Org 7.5가 설치되었습니다.
ELISP> org-version
"7.5"
그러나 수행된 단계에서는 정보 파일을 생성하거나 설치하지 않으므로 사용할 때 M-x org-info
6.33x 대신 Org 버전 7.5에 대한 설명서를 얻을 수 있습니다.
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 info
또는 C-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
또한 조직 모드를 한 번 이상 사용할 때까지는 사용할 수 없다는 것을 알았습니다 . 항상 사용할 수 있도록 다음 줄을 추가했습니다.
(require 'org-info)
메모:그만큼InfoPath의 emacs wiki 항목Windows가 아닌 컴퓨터 INFOPATH
대신 환경 변수를 사용하는 것이 좋습니다 .Info-default-directory-list