Go to the first, previous, next, last section, table of contents.


設定例

インストール時に同時に設定された辞書を検索する場合は、次のような設定を `~/.emacs' に追加すれば十分です。

(autoload 'sdic-describe-word "sdic" "単語の意味を調べる" t nil)
(global-set-key "\C-cw" 'sdic-describe-word)
(autoload 'sdic-describe-word-at-point "sdic" "カーソルの位置の単語の意味を調べる" t nil)
(global-set-key "\C-cW" 'sdic-describe-word-at-point)


Go to the first, previous, next, last section, table of contents.