|
Revision 67, 1.3 kB
(checked in by naoya_t, 17 years ago)
|
|
|
| Rev | Line | |
|---|
| [67] | 1 | ;; pdicviewer.el - PDIC Viewer for Emacs |
|---|
| 2 | ;; |
|---|
| 3 | ;; Copyright (C) 2005 Naoya TOZUKA. All Rights Reserved. |
|---|
| 4 | ;; |
|---|
| 5 | ;; Author: Naoya TOZUKA <pdicviewer@gmail.com> |
|---|
| 6 | ;; Maintainer: Naoya TOZUKA <pdicviewer@gmail.com> |
|---|
| 7 | ;; Primary distribution site: http://pdicviewer.naochan.com/el/ |
|---|
| 8 | ;; |
|---|
| 9 | ;; Created: 14 Feb 2005 |
|---|
| 10 | ;; Last modified: 23 Dec 2005 |
|---|
| 11 | ;; Version: 0.9.1 |
|---|
| 12 | ;; Keywords: PDIC dictionary search eijiro |
|---|
| 13 | ;; |
|---|
| 14 | |
|---|
| 15 | ;;; Commentary: |
|---|
| 16 | ;; |
|---|
| 17 | ;; PDIC�ե����ޥåȤμ��鸡��ޤ��� |
|---|
| 18 | ;; ���ڤӺ��ۤκݤϡ�GNU ����������ʥС������˽��äƲ������� |
|---|
| 19 | ;; |
|---|
| 20 | ;; �켡���� |
|---|
| 21 | ;; http://pdicviewer.naochan.com/el/ |
|---|
| 22 | |
|---|
| 23 | (provide 'pdicv-mode) |
|---|
| 24 | |
|---|
| 25 | ;;; Code: |
|---|
| 26 | (require 'pdicv-core) |
|---|
| 27 | (require 'pdicv-search) |
|---|
| 28 | (require 'pdicv-eijiro) |
|---|
| 29 | |
|---|
| 30 | ;; minor-mode |
|---|
| 31 | (easy-mmode-define-minor-mode |
|---|
| 32 | ;; mode |
|---|
| 33 | pdicv-mode |
|---|
| 34 | ;; doc |
|---|
| 35 | "Toggle pdicv mode." |
|---|
| 36 | ;; init-value (���icv-mode ��) |
|---|
| 37 | nil ;;initial |
|---|
| 38 | ;; mode indicator |
|---|
| 39 | " pdicv" |
|---|
| 40 | ;; keymap |
|---|
| 41 | '(("\C-c\C-d" . pdicv-set-target-dictionary) |
|---|
| 42 | ("\C-c\C-a" . pdicv-search-current-word) |
|---|
| 43 | ("\C-c\C-c" . pdicv-search-next-word) |
|---|
| 44 | ("\C-c\C-b" . pdicv-search-previous-word)) |
|---|
| 45 | ) |
|---|
| 46 | |
|---|
| 47 | ; (eword-encoding pron-encoding jword-encoding example-encoding) ) |
|---|
| 48 | (defvar pdicv-dictionary-list '()) ;; pdicviewer.el �ˤ���defvar pdicv-inited-p nil) |
|---|
| 49 | |
|---|
| 50 | ;(pdicv-init) |
|---|
| 51 | |
|---|
| 52 | ;;;###autoload |
|---|
| 53 | (defun pdicviewer () |
|---|
| 54 | "" |
|---|
| 55 | (interactive) |
|---|
| 56 | (pdicv-init) |
|---|
| 57 | ) |
|---|
| 58 | |
|---|
| 59 | ;;; pdicviewer.el ends here |
|---|