source: projects/specs/trunk/s/skk/vine-default-skk.el @ 1697

Revision 1697, 2.1 KB checked in by iwaim, 14 years ago (diff)

skk 11.6.0-2: add files

Line 
1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2;;  -*- coding: utf-8-unix -*-
3;;  FSF Emacs 23 用 Vine Linux SKK 設定
4;;    Munehiro Yamamoto <munepi@cg8.so-net.ne.jp>
5;;      $Id: vine-default-skk.el,v 1.1 2009/04/23 00:02:56 munepi Exp $
6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
9;; SKK-9.6m
10;;   Mule 上の仮名漢字変換システム SKK の設定
11;;   C-x t でチュートリアルが起動します
12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13
14;;;;;;;;;; 使用する辞書の設定 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
15
16;;; SKK-JISYO.L をメモリ上に読み込んで利用する場合
17(setq skk-large-jisyo "/usr/share/skk/SKK-JISYO.L")
18
19;;; SKK-JISYO.M をメモリ上に読み込み、
20;;; 見付からない場合は skkserv を起動して SKK-JISYO.L から検索する場合
21;;; (skkexdic パッケージが必要です)
22;;(setq skk-large-jisyo "/usr/share/skk/SKK-JISYO.M")
23;;(setq skk-aux-large-jisyo "/usr/share/skk/SKK-JISYO.L")
24;;(setq skk-server-portnum 1178)
25;;(setq skk-server-host "localhost")
26;;(setq skk-server-prog "/usr/libexec/skkserv")
27
28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
29
30(global-set-key "\C-x\C-j" 'skk-mode)
31(global-set-key "\C-xj" 'skk-auto-fill-mode)
32(global-set-key "\C-xt" 'skk-tutorial)
33(autoload 'skk-mode "skk" nil t)
34(autoload 'skk-auto-fill-mode "skk" nil t)
35(autoload 'skk-tutorial "skk-tut" nil t)
36(autoload 'skk-isearch-mode-setup "skk-isearch" nil t)
37(autoload 'skk-isearch-mode-cleanup "skk-isearch" nil t)
38(add-hook 'isearch-mode-hook
39          (function (lambda ()
40                      (and (boundp 'skk-mode) skk-mode
41                           (skk-isearch-mode-setup) ))))
42(add-hook 'isearch-mode-end-hook
43          (function (lambda ()
44                      (and (boundp 'skk-mode) skk-mode
45                           (skk-isearch-mode-cleanup)
46                           (skk-set-cursor-color-properly) ))))
47
48
49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
50
51(provide 'vine-default-skk)
52
53;; Local Variables:
54;; mode: emacs-lisp
55;; End:
Note: See TracBrowser for help on using the repository browser.