|
Revision 71, 1.5 kB
(checked in by naoya_t, 17 years ago)
|
|
|
| Line | |
|---|
| 1 | ;; pdicviewer.el - PDIC Viewer for Emacs |
|---|
| 2 | ;; |
|---|
| 3 | ;; Copyright (C) 2005-2009 naoya_t. All Rights Reserved. |
|---|
| 4 | ;; |
|---|
| 5 | ;; Author: naoya_t <naoya.t@aqua.plala.or.jp> |
|---|
| 6 | ;; Maintainer: naoya_t <naoya.t@aqua.plala.or.jp> |
|---|
| 7 | ;; Primary distribution site: |
|---|
| 8 | ;; http://lambdarepos.svnrepository.com/svn/share/lang/elisp/pdicv-mode/trunk |
|---|
| 9 | ;; |
|---|
| 10 | ;; Created: 14 Feb 2005 |
|---|
| 11 | ;; Last modified: 23 Dec 2005 |
|---|
| 12 | ;; Version: 0.9.2 |
|---|
| 13 | ;; Keywords: PDIC dictionary search eijiro |
|---|
| 14 | ;; |
|---|
| 15 | |
|---|
| 16 | ;;; Commentary: |
|---|
| 17 | ;; |
|---|
| 18 | ;; PDIC�ե����ޥåȤμ��鸡��ޤ��� |
|---|
| 19 | ;; ���ڤӺ��ۤκݤϡ�GNU ����������ʥС������˽��äƲ������� |
|---|
| 20 | ;; |
|---|
| 21 | ;; �켡���� |
|---|
| 22 | ;; http://pdicviewer.naochan.com/el/ |
|---|
| 23 | |
|---|
| 24 | ;;; Code: |
|---|
| 25 | ;(require 'pdicv-core) |
|---|
| 26 | (require 'pdicv-search) |
|---|
| 27 | ;(require 'pdicv-eijiro) |
|---|
| 28 | (require 'pdicv-mode) |
|---|
| 29 | |
|---|
| 30 | ; ������ȡ�����ꤷ�ޤ� |
|---|
| 31 | ; (eword-encoding pron-encoding jword-encoding example-encoding) ) |
|---|
| 32 | (setq pdicv-dictionary-list |
|---|
| 33 | '( |
|---|
| 34 | ; (sample "~/pdic/SAMPLE.DIC" ; |
|---|
| 35 | ; (nil nil sjis sjis) t) |
|---|
| 36 | ; (cj2 "~/pdic/cj2.dic" ; |
|---|
| 37 | ; bocu nil) |
|---|
| 38 | (eijiro "~/Library/EIJIRO 4th Edition/Eijiro112.dic" bocu nil) |
|---|
| 39 | (waeijiro "~/Library/EIJIRO 4th Edition/Waeiji112.dic" bocu nil) |
|---|
| 40 | ; (eijiro "~/pdic/eijiro81/EIJIRO81.DIC" |
|---|
| 41 | ; (nil nil sjis sjis)) |
|---|
| 42 | ; (waeijiro "~/pdic/eijiro81/WAEIJI81.DIC" |
|---|
| 43 | ; (sjis nil sjis sjis) t) |
|---|
| 44 | ; (fr "~/pdic/fr.dic" |
|---|
| 45 | ; (latin1 nil sjis latin1) nil) |
|---|
| 46 | ; (ej |
|---|
| 47 | ; (eijiro waeijiro)) |
|---|
| 48 | ) |
|---|
| 49 | ) |
|---|
| 50 | |
|---|
| 51 | ;;;###autoload |
|---|
| 52 | (defun pdicv () |
|---|
| 53 | "" |
|---|
| 54 | (interactive) |
|---|
| 55 | (pdicv-init) |
|---|
| 56 | ) |
|---|
| 57 | |
|---|
| 58 | ;;; pdicviewer.el ends here |
|---|