目次
個人用Infoディレクトリを作成
mkdir ~/info
dirファイルを作成
以下の内容のファイルを作成します.
これは,”~/info”に入れているInfoファイルの構成を
記録しておくためのものです.
今回はskkのInfoファイルを入れておきます.
This is the file …/info/dir, which contains the
topmost node of the Info hierarchy, called (dir)Top.
The first time you invoke Info you start off looking at this node.
File: dir, Node: Top This is the top of the INFO treeThis (the Directory node) gives a menu of major topics.
Typing “q” exits, “?” lists all Info commands, “d” returns here,
“h” gives a primer for first-timers,
“mEmacs” visits the Emacs manual, etc.In Emacs, you can click mouse button 2 on a menu item or cross reference
to select it.Menu:
Emacs
SKK: (skk). Simple Kana to Kanji conversion program.
“~/.emacs”の設定
システム全体のInfoよりも個人用のInfoを優先したい場合
(setq Info-directory-list
(cons (expand-file-name "~/info") Info-directory-list ))
個人用のInfoよりもシステム全体のInfoを優先したい場合
(setq Info-directory-list
(append Info-directory-list (list (expand-file-name "~/info"))))