-
Notifications
You must be signed in to change notification settings - Fork 42
/
skk-auto.el
145 lines (128 loc) · 5.63 KB
/
skk-auto.el
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
;;; skk-auto.el --- $BAw$j2>L>$N<+F0=hM}$N$?$a$N%W%m%0%i%`(B -*- coding: iso-2022-jp -*-
;; Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
;; 1998, 1999, 2001
;; Masahiko Sato <masahiko@kuis.kyoto-u.ac.jp>
;; Author: Masahiko Sato <masahiko@kuis.kyoto-u.ac.jp>
;; Maintainer: SKK Development Team
;; URL: https://github.com/skk-dev/ddskk
;; Keywords: japanese, mule, input method
;; This file is part of Daredevil SKK.
;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of
;; the License, or (at your option) any later version.
;; This program is distributed in the hope that it will be
;; useful, but WITHOUT ANY WARRANTY; without even the implied
;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;; PURPOSE. See the GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(require 'skk)
;;;###autoload
(defun skk-okuri-search-1 ()
(when (and (not (or skk-abbrev-mode
skk-process-okuri-early
skk-henkan-okurigana))
;; we don't do auto-okuri-process
;; if henkan key contains numerals.
(not (skk-numeric-p))
(> (length skk-henkan-key) 1))
(let (l)
(setq skk-okuri-index-min (length skk-henkan-list)
l (funcall skk-okuri-search-function)
skk-okuri-index-max (+ skk-okuri-index-min (length l)))
(if (not skk-katakana)
l
(mapcar 'skk-hiragana-to-katakana
l)))))
(defun skk-okuri-search-subr-original ()
;; skk-okuri-search $B$N%5%V%k!<%A%s!#8+$D$1$?%(%s%H%j$N%j%9%H$rJV$9!#(B
(let* ((henkan-key skk-henkan-key)
(key (substring henkan-key 0 1))
(len (length henkan-key))
(key1 (concat "\n" key))
key2 len2 key3 len3 okuri3
;; case-fold-search $B$O!"<-=q%P%C%U%!$G$O>o$K(B nil$B!#(B
;;case-fold-search
(inhibit-quit t)
key-cand-alist p q r)
(save-match-data
(with-current-buffer (skk-get-jisyo-buffer skk-jisyo)
(goto-char skk-okuri-ari-min)
(while (search-forward key1 skk-okuri-ari-max t)
(setq p (point)
key2 (concat key (buffer-substring-no-properties
p (- (search-forward " ") 2)))
len2 (length key2))
(when (and (<= len2 len)
(string= key2 (substring henkan-key 0 len2)))
(let ((cont t))
(setq q (line-end-position))
(while (and cont (search-forward "/[" q t))
(setq r (point))
(setq okuri3 (buffer-substring-no-properties
r
(1- (search-forward "/")))
key3 (concat key2 okuri3)
len3 (length key3))
(when (and (<= len3 len)
(string= key3 (substring henkan-key 0 len3)))
;; finally found a candidate!
(let ((okuri
(concat okuri3 (substring henkan-key len3 len)))
cand)
(while (not (eq (following-char) ?\]))
(setq cand
(concat
(buffer-substring-no-properties
(point)
(1- (search-forward "/" skk-okuri-ari-max t)))
okuri))
;; $B8+=P$78l$,0c$C$F$b8uJd$,F1$8$3$H$,$"$jF@$k!#(B
;; $B$+$s(Bz /$B46(B/[$B$8(B/$B46(B/]/
;; $B$+$s(Bj /$B46(B/[$B$8(B/$B46(B/]/
;; $B$J$I!#(B
(unless (rassoc cand key-cand-alist)
(setq key-cand-alist (cons (cons key3 cand)
key-cand-alist))))
;; it is not necessary to seach for "\[" on this line
;; any more
(setq cont nil)))))))
;; key3 $B$ND9$$$b$N=g$K%=!<%H$7$FJV$9!#(B
(mapcar 'cdr
(sort (nreverse key-cand-alist)
(lambda (x y)
(skk-string< (car y) (car x)))))))))
;;;###autoload
(defun skk-adjust-search-prog-list-for-auto-okuri ()
;; `skk-auto-okuri-process' $B$,(B non-nil $B$G$"$l$P(B
;; `skk-search-prog-list' $B$K(B `skk-okuri-search' $B$r2C$($k!#(B
;;
;; `skk-okuri-search' $B$r2C$($k0LCV$K$D$$$F$O!"(Bskk-jisyo $B$N(B
;; $B8e$,:GNI$+$I$&$+$OJ,$i$J$$$N$G!"%*%W%7%g%s$GJQ99$G$-$k(B
;; $B$h$&$K$9$Y$-$@$,(B...$B!#(B
(unless (member '(skk-okuri-search)
(default-value 'skk-search-prog-list))
(let ((pl (default-value 'skk-search-prog-list))
(n 0) dic mark)
(while pl
(setq dic (car pl))
(if (memq (nth 1 dic)
'(skk-jisyo skk-rdbms-private-jisyo-table))
(setq mark n
pl nil)
(setq pl (cdr pl)
n (1+ n))))
(when mark
(skk-splice-in (default-value 'skk-search-prog-list)
(1+ mark)
'((skk-okuri-search)))))))
;; (add-hook 'skk-mode-hook 'skk-adjust-search-prog-list-for-auto-okuri)
(run-hooks 'skk-auto-load-hook)
(provide 'skk-auto)
;; Local Variables:
;; indent-tabs-mode: nil
;; End:
;;; skk-auto.el ends here