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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
|
;;; tc-is20.el --- T-Code isearch modification for Emacs 20.*.
;; Copyright (C) 1994,97,98 Kaoru Maeda, Mikihiko Nakao and KITAJIMA Akira
;; Author: Kaoru Maeda <maeda@src.ricoh.co.jp>
;; Mikihiko Nakao
;; KITAJIMA Akira <kitajima@ics.es.osaka-u.ac.jp>
;; Maintainer: KITAJIMA Akira
;; Create: 27 Jun (Sat), 1998
;; $Id: tc-is20.el,v 1.5 2000/05/07 14:32:37 akira Exp $
;; 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 2 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, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
;;; Code:
(if (< (string-to-int emacs-version) 20)
(error "tc-is20 cannot run on NEmacs/Mule. Use Emacs 20 or later!"))
;;;
;;; User Variables
;;;
(defvar tcode-isearch-start-state nil
"*T-Code륵ϻT-Code⡼ɤꤹ롣
nil: Хåեtcode-modeƱ(ǥե)
t: Хåեtcode-modeΩϻϥХåեƱ
0: ХåեΩ˾non-T-Code鳫ϡ
1: ХåեΩ˾T-Code鳫ϡ
Хåեѿ")
(make-variable-buffer-local 'tcode-isearch-start-state)
(setq-default tcode-isearch-start-state nil)
(defcustom tcode-isearch-enable-wrapped-search t
"*2ХʸǥȤˡԤ̵뤹롣"
:type 'boolean :group 'tcode)
(defcustom tcode-isearch-ignore-regexp "[\n \t]*"
"* 2Хʸ֤ɽ
`tcode-isearch-enable-wrapped-search' t ΤȤΤͭ"
:type 'regexp :group 'tcode)
(defcustom tcode-isearch-special-function-alist
'((tcode-bushu-henkan . tcode-isearch-bushu-henkan-command)
(tcode-bushu-another-henkan . tcode-isearch-bushu-henkan-command)
(tcode-mazegaki-alternative-start . tcode-isearch-prefix-mazegaki)
(tcode-mazegaki-start . tcode-isearch-postfix-mazegaki))
"*isearchǤüʥޥɤϤФإޥɤ alist"
:group 'tcode)
;;;
;;; Default key binding
;;;
(when (tcode-xemacs-p)
(define-key isearch-mode-map "\C-\\" 'isearch-toggle-tcode)
(put 'isearch-toggle-tcode 'isearch-command t)) ; for XEmacs
;;;
;;; patch to original functions in isearch.el of Emacs 20.2.96
;;;
(defun isearch-search ()
;; Do the search with the current search string.
(isearch-message nil t)
(if (and (eq isearch-case-fold-search t) search-upper-case)
(setq isearch-case-fold-search
(if (tcode-xemacs-p)
(isearch-no-upper-case-p isearch-string)
(isearch-no-upper-case-p isearch-string isearch-regexp))))
(condition-case lossage
(let ((inhibit-point-motion-hooks search-invisible)
(inhibit-quit nil)
(case-fold-search isearch-case-fold-search)
(retry t))
(if isearch-regexp (setq isearch-invalid-regexp nil))
(setq isearch-within-brackets nil)
(while retry
(setq isearch-success
(funcall
(cond (isearch-word
(if isearch-forward
'word-search-forward 'word-search-backward))
((or isearch-regexp
(and (boundp 'tcode-mode)
tcode-mode
tcode-isearch-enable-wrapped-search))
(if isearch-forward
're-search-forward 're-search-backward))
(t
(if isearch-forward 'search-forward 'search-backward)))
isearch-string nil t))
;; Clear RETRY unless we matched some invisible text
;; and we aren't supposed to do that.
(if (or (eq search-invisible t)
(not isearch-success)
(bobp) (eobp)
(= (match-beginning 0) (match-end 0))
(not (isearch-range-invisible
(match-beginning 0) (match-end 0))))
(setq retry nil)))
(setq isearch-just-started nil)
(if isearch-success
(setq isearch-other-end
(if isearch-forward (match-beginning 0) (match-end 0)))))
(quit (isearch-unread ?\C-g)
(setq isearch-success nil))
(invalid-regexp
(setq isearch-invalid-regexp (car (cdr lossage)))
(setq isearch-within-brackets (string-match "\\`Unmatched \\["
isearch-invalid-regexp))
(if (string-match
"\\`Premature \\|\\`Unmatched \\|\\`Invalid "
isearch-invalid-regexp)
(setq isearch-invalid-regexp "incomplete input")))
(error
;; stack overflow in regexp search.
(setq isearch-invalid-regexp (car (cdr lossage)))))
(if isearch-success
nil
;; Ding if failed this time after succeeding last time.
(and (nth 3 (car isearch-cmds))
(ding))
(goto-char (nth 2 (car isearch-cmds)))))
(defun isearch-printing-char ()
"Add this ordinary printing character to the search string and search."
(interactive)
(let ((char (isearch-last-command-char)))
(if (and (boundp 'tcode-mode) tcode-mode)
;; isearch for T-Code
(let ((action (tcode-get-action-from-table
(isearch-last-command-char) t))
(prev (tcode-isearch-bushu)))
(cond ((null action)
(ding))
((stringp action)
(tcode-isearch-process-string action prev))
((char-or-string-p action)
(tcode-isearch-process-string (char-to-string action)
prev))
((and (not (tcode-function-p action))
(consp action))
(tcode-isearch-process-string (mapconcat 'identity action "")
prev))
((tcode-function-p action)
(let ((function
(cdr (assq action
tcode-isearch-special-function-alist))))
(if function
(funcall function)
(ding))))
(t
(ding))))
;; original behaviour
(if (= char ?\S-\ )
(setq char ?\ ))
(if (and enable-multibyte-characters
(>= char ?\200)
(<= char ?\377))
(isearch-process-search-char (+ char nonascii-insert-offset))
(if current-input-method
(isearch-process-search-multibyte-characters char)
(isearch-process-search-char char))))))
(defun isearch-yank-word ()
"Pull next word from buffer into search string."
(interactive)
(isearch-yank-string
(save-excursion
(and (not isearch-forward) isearch-other-end
(goto-char isearch-other-end))
(buffer-substring (point)
(progn (if (= (tcode-char-width
(tcode-char-after (point)))
2)
(forward-char 1)
(forward-word 1))
(point))))))
(defun isearch-yank-string (string)
"Pull STRING into search string."
;; Downcase the string if not supposed to case-fold yanked strings.
(if (and isearch-case-fold-search
(eq 'not-yanks search-upper-case))
(setq string (downcase string)))
(if isearch-regexp (setq string (regexp-quote string)))
(setq isearch-string (concat isearch-string
(tcode-isearch-make-string-for-wrapping string))
isearch-message
(concat isearch-message
(mapconcat 'isearch-text-char-description
string ""))
;; Don't move cursor in reverse search.
isearch-yank-flag t)
(isearch-search-and-update))
(defun isearch-repeat (direction)
;; Utility for isearch-repeat-forward and -backward.
(if (eq isearch-forward (eq direction 'forward))
;; C-s in forward or C-r in reverse.
(if (equal isearch-string "")
;; If search string is empty, use last one.
(setq isearch-string
(or (if isearch-regexp
(car regexp-search-ring)
(car search-ring))
"")
isearch-message
(mapconcat 'isearch-text-char-description
(tcode-isearch-remove-ignore-regexp isearch-string)
""))
;; If already have what to search for, repeat it.
(or isearch-success
(progn
(goto-char (if isearch-forward (point-min) (point-max)))
(setq isearch-wrapped t))))
;; C-s in reverse or C-r in forward, change direction.
(setq isearch-forward (not isearch-forward)))
(setq isearch-barrier (point)) ; For subsequent \| if regexp.
(if (equal isearch-string "")
(setq isearch-success t)
(if (and isearch-success (equal (match-end 0) (match-beginning 0))
(not isearch-just-started))
;; If repeating a search that found
;; an empty string, ensure we advance.
(if (if isearch-forward (eobp) (bobp))
;; If there's nowhere to advance to, fail (and wrap next time).
(progn
(setq isearch-success nil)
(ding))
(forward-char (if isearch-forward 1 -1))
(isearch-search))
(isearch-search)))
(isearch-push-state)
(isearch-update))
(defun tcode-isearch-read-string ()
"륵ʸɤ߹ࡣ"
(let* (overriding-terminal-local-map
(minibuffer-setup-hook (lambda ()
(tcode-activate tcode-mode)))
(string (read-string (concat "Isearch read: " isearch-message)
nil nil nil t)))
(unless (string= string "")
(tcode-isearch-process-string string nil))))
(defun tcode-isearch-prefix-mazegaki ()
"륵ַθѴԤ"
(let* (overriding-terminal-local-map
(minibuffer-setup-hook (lambda ()
(tcode-activate tcode-mode)
(tcode-start-fixed-mazegaki)))
(string (read-string (concat "Isearch read: " isearch-message)
nil nil nil t)))
(unless (string= string "")
(tcode-isearch-process-string string nil))))
(defun tcode-isearch-postfix-mazegaki ()
"륵˸ַθѴԤ"
(let ((orig-isearch-cmds isearch-cmds)
normal-end)
(unwind-protect
(let ((current-string isearch-message))
;; clear isearch states
(while (cdr isearch-cmds)
(isearch-pop-state))
(let* (overriding-terminal-local-map
(minibuffer-setup-hook (lambda ()
(tcode-activate tcode-mode)
(tcode-mazegaki-start nil)))
(string (read-string "Isearch read: "
current-string nil nil t)))
(unless (string= string "")
(tcode-isearch-process-string string nil)
(setq normal-end t))))
(unless normal-end
(setq isearch-cmds orig-isearch-cmds)
(isearch-top-state)))))
(defun isearch-toggle-tcode ()
"륵 T-Code ⡼ɤȥ뤹롣
륵 prefix/postfix ѴȤޤ"
(interactive)
(if tcode-isearch-start-state
()
(toggle-input-method))
(isearch-update))
(defun tcode-isearch-bushu-henkan (c1 c2)
;; 륵 C1 C2 ȤѴ롣
(let ((s (tcode-lookup-outset c1 c2)))
(if (stringp s)
(progn
(isearch-delete-char)
(isearch-delete-char)
(isearch-process-search-string
(tcode-isearch-make-string-for-wrapping s) s))
(ding)
(isearch-update))))
(defun tcode-isearch-process-string (str prev)
"ʸ STR ʸ˲äƸ롣
PREV ȹǤȤϤιʸǸ롣"
(if (not (stringp prev))
(isearch-process-search-string
(tcode-isearch-make-string-for-wrapping str) str)
(tcode-isearch-bushu-henkan prev str)))
(defun tcode-isearch-remove-ignore-regexp (str)
"ѿ `tcode-isearch-enable-wrapped-search' nil ǤʤȤ
STR `tcode-isearch-ignore-regexp' "
(if (or (not tcode-isearch-enable-wrapped-search)
isearch-regexp)
str
(let (idx
(regexp-len (length tcode-isearch-ignore-regexp)))
(while (setq idx (string-match
(regexp-quote tcode-isearch-ignore-regexp)
str))
(setq str (concat (substring str 0 idx)
(substring str (+ idx regexp-len) nil))))
str)))
(defun tcode-isearch-make-string-for-wrapping (string)
(let ((string-list (and string
(tcode-string-to-char-list string))))
(if (and tcode-isearch-enable-wrapped-search
(not isearch-regexp)
string-list)
(mapconcat
(function
(lambda (a)
(let ((s (char-to-string a)))
(cond ((and (string-match tcode-isearch-ignore-regexp s)
(> (match-end 0) 0))
tcode-isearch-ignore-regexp)
((= (char-width a) 2)
(concat tcode-isearch-ignore-regexp s))
(t
(regexp-quote (char-to-string a)))))))
string-list
"")
string)))
(defun tcode-isearch-start-bushu ()
"T-Code 륵 prefix ѴϤ롣"
(tcode-bushu-init 2)
(or (get-buffer tcode-bushu-buffer-name)
(error "Bushu dictionary not ready."))
(setq isearch-message (concat isearch-message ""))
(isearch-push-state)
(isearch-update))
(defun tcode-isearch-postfix-bushu ()
"T-Code 륵 postfix Ѵ"
(let ((p1 (string-match "..$" isearch-message))
(p2 (string-match ".$" isearch-message)))
(if (null p1)
(beep)
(tcode-isearch-bushu-henkan (substring isearch-message p1 p2)
(substring isearch-message p2)))))
(defun tcode-isearch-bushu ()
"isearch-messageʸĴ٤"
(cond
((string-match "$" isearch-message)
t)
((string-match ".$" isearch-message)
(substring isearch-message (string-match ".$" isearch-message)))
(t
nil)))
(defun tcode-isearch-bushu-henkan-command ()
"isearchѴϤ롣"
(interactive)
(if (not tcode-use-postfix-bushu-as-default)
(tcode-isearch-start-bushu)
(tcode-isearch-postfix-bushu)))
(defun tcode-isearch-init ()
"T-Code 륵ν"
(setq tcode-mode (if (numberp tcode-isearch-start-state)
(if (zerop tcode-isearch-start-state) nil t)
(and (boundp 'tcode-mode)
tcode-mode)))
(isearch-update))
(add-hook 'isearch-mode-hook 'tcode-isearch-init)
;;; tc-is20.el ends here
|