123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- (if (equal emacs-ime "skk")
- (progn
- (setq skk-large-jisyo "/usr/share/skk/SKK-JISYO.L")
- (global-set-key "\C-x\C-j" 'skk-mode)
- (global-set-key "\C-xj" 'skk-auto-fill-mode)
- (global-set-key "\C-xt" 'skk-tutorial)
- (autoload 'skk-mode "skk" nil t)
- (autoload 'skk-auto-fill-mode "skk" nil t)
- (autoload 'skk-tutorial "skk-tut" nil t)
- (autoload 'skk-isearch-mode-setup "skk-isearch" nil t)
- (autoload 'skk-isearch-mode-cleanup "skk-isearch" nil t)
- (add-hook 'isearch-mode-hook
- (function (lambda ()
- (and (boundp 'skk-mode) skk-mode
- (skk-isearch-mode-setup) ))))
- (add-hook 'isearch-mode-end-hook
- (function (lambda ()
- (and (boundp 'skk-mode) skk-mode
- (skk-isearch-mode-cleanup)
- (skk-set-cursor-color-properly) ))))
- ))
- (provide 'vine-default-skk)
|