-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.skk
50 lines (44 loc) · 1.84 KB
/
.skk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
;; 全角wを入力
(setq skk-rom-kana-rule-list
(append '(("wq" nil "w")
)
skk-rom-kana-rule-list))
;; ;; 辞書指定
;; (setq skk-search-prog-list
;; '(
;; (skk-search-kakutei-jisyo-file skk-kakutei-jisyo 10000 t)
;; (skk-search-jisyo-file skk-initial-search-jisyo 10000 t)
;; (skk-search-jisyo-file skk-jisyo 0 t)
;; (skk-okuri-search)
;; (skk-tankan-search 'skk-search-jisyo-file skk-large-jisyo 10000)
;; (skk-search-jisyo-file skk-large-jisyo 10000)
;; ))
;; ;; Google サジェストする
;; (require 'skk-search-web)
;; ;; (1) かな漢字変換の候補に Google サジェストを利用する
;; (add-to-list 'skk-search-prog-list
;; ;;'(skk-search-web 'skk-google-suggest)
;; '(skk-search-web 'skk-google-cgi-api-for-japanese-input)
;; t)
;; ;; (2) skk-search-web 辞書登録モードへの突入時の初期値に Google サジェストを利用する
;; ;; ddskk 起動時のみ, インクリメンタルサーチを使用
;; ;; Isearch setting.
;; (add-hook 'isearch-mode-hook
;; #'(lambda ()
;; (when (and (boundp 'skk-mode)
;; skk-mode
;; skk-isearch-mode-enable)
;; (skk-isearch-mode-setup))))
;; (add-hook 'isearch-mode-end-hook
;; #'(lambda ()
;; (when (and (featurep 'skk-isearch)
;; skk-isearch-mode-enable)
;; (skk-isearch-mode-cleanup))))
;; (setq skk-read-from-minibuffer-function
;; (lambda ()
;; ;; (car (skk-google-suggest skk-henkan-key))))
;; (car (skk-google-cgi-api-for-japanese-input skk-henkan-key))))
;; (when is_mac
;; ;;skk-server AquaSKK
;; (setq skk-server-portnum 1178)
;; (setq skk-server-host "localhost"))