]> code.delx.au - gnu-emacs/blob - lisp/emulation/viper-macs.el
de0155d815812139356890e8ec6b3f599e8c4982
[gnu-emacs] / lisp / emulation / viper-macs.el
1 ;;; viper-macs.el --- functions implementing keyboard macros for Viper
2
3 ;; Copyright (C) 1994-1997, 2000-2013 Free Software Foundation, Inc.
4
5 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
6 ;; Package: viper
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;;; Code:
26
27 (provide 'viper-macs)
28
29 ;; compiler pacifier
30 (defvar viper-ex-work-buf)
31 (defvar viper-custom-file-name)
32 (defvar viper-current-state)
33 (defvar viper-fast-keyseq-timeout)
34 (require 'viper-mous)
35 (require 'viper-ex)
36 ;; end pacifier
37
38 (require 'viper-util)
39 (require 'viper-keym)
40
41
42 ;;; Variables
43
44 ;; Register holding last macro.
45 (defvar viper-last-macro-reg nil)
46
47 ;; format of the elements of kbd alists:
48 ;; (name ((buf . macr)...(buf . macr)) ((maj-mode . macr)...) (t . macr))
49 ;; kbd macro alist for Vi state
50 (defvar viper-vi-kbd-macro-alist nil)
51 ;; same for insert/replace state
52 (defvar viper-insert-kbd-macro-alist nil)
53 ;; same for emacs state
54 (defvar viper-emacs-kbd-macro-alist nil)
55
56 ;; Internal var that passes info between start-kbd-macro and end-kbd-macro
57 ;; in :map and :map!
58 (defvar viper-kbd-macro-parameters nil)
59
60 (defvar viper-this-kbd-macro nil
61 "Vector of keys representing the name of currently running Viper kbd macro.")
62 (defvar viper-last-kbd-macro nil
63 "Vector of keys representing the name of last Viper keyboard macro.")
64
65 (defcustom viper-repeat-from-history-key 'f12
66 "Prefix key for accessing previously typed Vi commands.
67
68 The previous command is accessible, as usual, via `.'. The command before this
69 can be invoked as `<this key> 1', and the command before that, and the command
70 before that one is accessible as `<this key> 2'.
71 The notation for these keys is borrowed from XEmacs. Basically,
72 a key is a symbol, e.g., `a', `\\1', `f2', etc., or a list, e.g.,
73 `(meta control f1)'."
74 :type 'sexp
75 :group 'viper)
76
77
78 \f
79 ;;; Code
80
81 (declare-function viper-change-state-to-insert "viper-cmd" ())
82
83 ;; Ex map command
84 (defun ex-map ()
85 (let ((mod-char "")
86 macro-name macro-body map-args ins)
87 (save-window-excursion
88 (set-buffer viper-ex-work-buf)
89 (if (looking-at "!")
90 (progn
91 (setq ins t
92 mod-char "!")
93 (forward-char 1))))
94 (setq map-args (ex-map-read-args mod-char)
95 macro-name (car map-args)
96 macro-body (cdr map-args))
97 (setq viper-kbd-macro-parameters (list ins mod-char macro-name macro-body))
98 (if macro-body
99 (viper-end-mapping-kbd-macro 'ignore)
100 (ex-fixup-history (format "map%s %S" mod-char
101 (viper-display-macro macro-name)))
102 ;; if defining macro for insert, switch there for authentic WYSIWYG
103 (if ins (viper-change-state-to-insert))
104 (start-kbd-macro nil)
105 (define-key viper-vi-intercept-map "\C-x)" 'viper-end-mapping-kbd-macro)
106 (define-key viper-insert-intercept-map "\C-x)" 'viper-end-mapping-kbd-macro)
107 (define-key viper-emacs-intercept-map "\C-x)" 'viper-end-mapping-kbd-macro)
108 (message "Mapping %S in %s state. Type macro definition followed by `C-x )'"
109 (viper-display-macro macro-name)
110 (if ins "Insert" "Vi")))
111 ))
112
113
114 ;; Ex unmap
115 (defun ex-unmap ()
116 (let ((mod-char "")
117 temp macro-name ins)
118 (save-window-excursion
119 (set-buffer viper-ex-work-buf)
120 (if (looking-at "!")
121 (progn
122 (setq ins t
123 mod-char "!")
124 (forward-char 1))))
125
126 (setq macro-name (ex-unmap-read-args mod-char))
127 (setq temp (viper-fixup-macro (vconcat macro-name))) ;; copy and fixup
128 (ex-fixup-history (format "unmap%s %S" mod-char
129 (viper-display-macro temp)))
130 (viper-unrecord-kbd-macro macro-name (if ins 'insert-state 'vi-state))
131 ))
132
133
134 ;; read arguments for ex-map
135 (defun ex-map-read-args (variant)
136 (let ((cursor-in-echo-area t)
137 (key-seq [])
138 temp key event message
139 macro-name macro-body args)
140
141 (condition-case nil
142 (setq args (concat (ex-get-inline-cmd-args ".*map[!]*[ \t]?" "\n\C-m")
143 " nil nil ")
144 temp (read-from-string args)
145 macro-name (car temp)
146 macro-body (car (read-from-string args (cdr temp))))
147 (error
148 (signal
149 'error
150 '("map: Macro name and body must be a quoted string or a vector"))))
151
152 ;; We expect macro-name to be a vector, a string, or a quoted string.
153 ;; In the second case, it will emerge as a symbol when read from
154 ;; the above read-from-string. So we need to convert it into a string
155 (if macro-name
156 (cond ((vectorp macro-name) nil)
157 ((stringp macro-name)
158 (setq macro-name (vconcat macro-name)))
159 (t (setq macro-name (vconcat (prin1-to-string macro-name)))))
160 (message ":map%s <Macro Name>" variant)(sit-for 2)
161 (while
162 (not (member key
163 '(?\C-m ?\n (control m) (control j) return linefeed)))
164 (setq key-seq (vconcat key-seq (if key (vector key) [])))
165 ;; the only keys available for editing are these-- no help while there
166 (if (member
167 key
168 '(?\b ?\d '^? '^H (control h) (control \?) backspace delete))
169 (setq key-seq (viper-subseq key-seq 0 (- (length key-seq) 2))))
170 (setq message
171 (format
172 ":map%s %s"
173 variant (if (> (length key-seq) 0)
174 (prin1-to-string (viper-display-macro key-seq))
175 "")))
176 (message "%s" message)
177 (setq event (viper-read-key))
178 ;;(setq event (viper-read-event))
179 (setq key
180 (if (viper-mouse-event-p event)
181 (progn
182 (message "%s (No mouse---only keyboard keys, please)"
183 message)
184 (sit-for 2)
185 nil)
186 (viper-event-key event)))
187 )
188 (setq macro-name key-seq))
189
190 (if (= (length macro-name) 0)
191 (error "Can't map an empty macro name"))
192 (setq macro-name (viper-fixup-macro macro-name))
193 (if (viper-char-array-p macro-name)
194 (setq macro-name (viper-char-array-to-macro macro-name)))
195
196 (if macro-body
197 (cond ((viper-char-array-p macro-body)
198 (setq macro-body (viper-char-array-to-macro macro-body)))
199 ((vectorp macro-body) nil)
200 (t (error "map: Invalid syntax in macro definition"))))
201 (setq cursor-in-echo-area nil)(sit-for 0) ; this overcomes xemacs tty bug
202 (cons macro-name macro-body)))
203
204
205
206 ;; read arguments for ex-unmap
207 (defun ex-unmap-read-args (variant)
208 (let ((cursor-in-echo-area t)
209 (macro-alist (if (string= variant "!")
210 viper-insert-kbd-macro-alist
211 viper-vi-kbd-macro-alist))
212 ;; these are disabled just in case, to avoid surprises when doing
213 ;; completing-read
214 viper-vi-kbd-minor-mode viper-insert-kbd-minor-mode
215 viper-emacs-kbd-minor-mode
216 viper-vi-intercept-minor-mode viper-insert-intercept-minor-mode
217 viper-emacs-intercept-minor-mode
218 event message
219 key key-seq macro-name)
220 (setq macro-name (ex-get-inline-cmd-args ".*unma?p?[!]*[ \t]*"))
221
222 (if (> (length macro-name) 0)
223 ()
224 (message ":unmap%s <Name>" variant) (sit-for 2)
225 (while
226 (not
227 (member key '(?\C-m ?\n (control m) (control j) return linefeed)))
228 (setq key-seq (vconcat key-seq (if key (vector key) [])))
229 ;; the only keys available for editing are these-- no help while there
230 (cond ((member
231 key
232 '(?\b ?\d '^? '^H (control h) (control \?) backspace delete))
233 (setq key-seq (viper-subseq key-seq 0 (- (length key-seq) 2))))
234 ((member key '(tab (control i) ?\t))
235 (setq key-seq (viper-subseq key-seq 0 (1- (length key-seq))))
236 (setq message
237 (format
238 ":unmap%s %s"
239 variant (if (> (length key-seq) 0)
240 (prin1-to-string
241 (viper-display-macro key-seq))
242 "")))
243 (setq key-seq
244 (viper-do-sequence-completion key-seq macro-alist message))
245 ))
246 (setq message
247 (format
248 ":unmap%s %s"
249 variant (if (> (length key-seq) 0)
250 (prin1-to-string
251 (viper-display-macro key-seq))
252 "")))
253 (message "%s" message)
254 (setq event (viper-read-key))
255 ;;(setq event (viper-read-event))
256 (setq key
257 (if (viper-mouse-event-p event)
258 (progn
259 (message "%s (No mouse---only keyboard keys, please)"
260 message)
261 (sit-for 2)
262 nil)
263 (viper-event-key event)))
264 )
265 (setq macro-name key-seq))
266
267 (if (= (length macro-name) 0)
268 (error "Can't unmap an empty macro name"))
269
270 ;; convert macro names into vector, if starts with a `['
271 (if (memq (elt macro-name 0) '(?\[ ?\"))
272 (car (read-from-string macro-name))
273 (vconcat macro-name))
274 ))
275
276
277 (declare-function viper-change-state-to-vi "viper-cmd" ())
278
279 ;; Terminate a Vi kbd macro.
280 ;; optional argument IGNORE, if t, indicates that we are dealing with an
281 ;; existing macro that needs to be registered, but there is no need to
282 ;; terminate a kbd macro.
283 (defun viper-end-mapping-kbd-macro (&optional ignore)
284 (interactive)
285 (define-key viper-vi-intercept-map "\C-x)" nil)
286 (define-key viper-insert-intercept-map "\C-x)" nil)
287 (define-key viper-emacs-intercept-map "\C-x)" nil)
288 (if (and (not ignore)
289 (or (not viper-kbd-macro-parameters)
290 (not defining-kbd-macro)))
291 (error "Not mapping a kbd-macro"))
292 (let ((mod-char (nth 1 viper-kbd-macro-parameters))
293 (ins (nth 0 viper-kbd-macro-parameters))
294 (macro-name (nth 2 viper-kbd-macro-parameters))
295 (macro-body (nth 3 viper-kbd-macro-parameters)))
296 (setq viper-kbd-macro-parameters nil)
297 (or ignore
298 (progn
299 (end-kbd-macro nil)
300 (setq macro-body (viper-events-to-macro last-kbd-macro))
301 ;; always go back to Vi, since this is where we started
302 ;; defining macro
303 (viper-change-state-to-vi)))
304
305 (viper-record-kbd-macro macro-name
306 (if ins 'insert-state 'vi-state)
307 (viper-display-macro macro-body))
308
309 (ex-fixup-history (format "map%s %S %S" mod-char
310 (viper-display-macro macro-name)
311 (viper-display-macro macro-body)))
312 ))
313
314
315
316 \f
317 ;;; Recording, unrecording, executing
318
319 ;; Accepts as macro names: strings and vectors.
320 ;; strings must be strings of characters; vectors must be vectors of keys
321 ;; in canonical form, which is essentially the form used in XEmacs.
322 ;; More general definitions are inherited by more specific scopes:
323 ;; global->major mode->buffer. More specific definitions override more general
324 (defun viper-record-kbd-macro (macro-name state macro-body &optional scope)
325 "Record a Vi macro. Can be used in `.viper' file to define permanent macros.
326 MACRO-NAME is a string of characters or a vector of keys. STATE is
327 either `vi-state' or `insert-state'. It specifies the Viper state in which to
328 define the macro. MACRO-BODY is a string that represents the keyboard macro.
329 Optional SCOPE says whether the macro should be global \(t\), mode-specific
330 \(a major-mode symbol\), or buffer-specific \(buffer name, a string\).
331 If SCOPE is nil, the user is asked to specify the scope."
332 (let* (state-name keymap
333 (macro-alist-var
334 (cond ((eq state 'vi-state)
335 (setq state-name "Vi state"
336 keymap viper-vi-kbd-map)
337 'viper-vi-kbd-macro-alist)
338 ((memq state '(insert-state replace-state))
339 (setq state-name "Insert state"
340 keymap viper-insert-kbd-map)
341 'viper-insert-kbd-macro-alist)
342 (t
343 (setq state-name "Emacs state"
344 keymap viper-emacs-kbd-map)
345 'viper-emacs-kbd-macro-alist)
346 ))
347 new-elt old-elt old-sub-elt msg
348 temp lis lis2)
349
350 (if (= (length macro-name) 0)
351 (error "Can't map an empty macro name"))
352
353 ;; Macro-name is usually a vector. However, command history or macros
354 ;; recorded in ~/.viper may be recorded as strings. So, convert to
355 ;; vectors.
356 (setq macro-name (viper-fixup-macro macro-name))
357 (if (viper-char-array-p macro-name)
358 (setq macro-name (viper-char-array-to-macro macro-name)))
359 (setq macro-body (viper-fixup-macro macro-body))
360 (if (viper-char-array-p macro-body)
361 (setq macro-body (viper-char-array-to-macro macro-body)))
362
363 ;; don't ask if scope is given and is of the right type
364 (or (eq scope t)
365 (stringp scope)
366 (and scope (symbolp scope))
367 (progn
368 (setq scope
369 (cond
370 ((y-or-n-p
371 (format
372 "Map this macro for buffer `%s' only? "
373 (buffer-name)))
374 (setq msg
375 (format
376 "%S is mapped to %s for %s in `%s'"
377 (viper-display-macro macro-name)
378 (viper-abbreviate-string
379 (format
380 "%S"
381 (setq temp (viper-display-macro macro-body)))
382 14 "" ""
383 (if (stringp temp) " ....\"" " ....]"))
384 state-name (buffer-name)))
385 (buffer-name))
386 ((y-or-n-p
387 (format
388 "Map this macro for the major mode `%S' only? "
389 major-mode))
390 (setq msg
391 (format
392 "%S is mapped to %s for %s in `%S'"
393 (viper-display-macro macro-name)
394 (viper-abbreviate-string
395 (format
396 "%S"
397 (setq temp (viper-display-macro macro-body)))
398 14 "" ""
399 (if (stringp macro-body) " ....\"" " ....]"))
400 state-name major-mode))
401 major-mode)
402 (t
403 (setq msg
404 (format
405 "%S is globally mapped to %s in %s"
406 (viper-display-macro macro-name)
407 (viper-abbreviate-string
408 (format
409 "%S"
410 (setq temp (viper-display-macro macro-body)))
411 14 "" ""
412 (if (stringp macro-body) " ....\"" " ....]"))
413 state-name))
414 t)))
415 (if (y-or-n-p
416 (format "Save this macro in %s? "
417 (viper-abbreviate-file-name viper-custom-file-name)))
418 (viper-save-string-in-file
419 (format "\n(viper-record-kbd-macro %S '%S %s '%S)"
420 (viper-display-macro macro-name)
421 state
422 ;; if we don't let vector macro-body through %S,
423 ;; the symbols `\.' `\[' etc will be converted into
424 ;; characters, causing invalid read error on recorded
425 ;; macros in .viper.
426 ;; I am not sure is macro-body can still be a string at
427 ;; this point, but I am preserving this option anyway.
428 (if (vectorp macro-body)
429 (format "%S" macro-body)
430 macro-body)
431 scope)
432 viper-custom-file-name))
433
434 (message "%s" msg)
435 ))
436
437 (setq new-elt
438 (cons macro-name
439 (cond ((eq scope t) (list nil nil (cons t nil)))
440 ((symbolp scope)
441 (list nil (list (cons scope nil)) (cons t nil)))
442 ((stringp scope)
443 (list (list (cons scope nil)) nil (cons t nil))))))
444 (setq old-elt (assoc macro-name (eval macro-alist-var)))
445
446 (if (null old-elt)
447 (progn
448 ;; insert new-elt in macro-alist-var and keep the list sorted
449 (define-key
450 keymap
451 (vector (viper-key-to-emacs-key (aref macro-name 0)))
452 'viper-exec-mapped-kbd-macro)
453 (setq lis (eval macro-alist-var))
454 (while (and lis (string< (viper-array-to-string (car (car lis)))
455 (viper-array-to-string macro-name)))
456 (setq lis2 (cons (car lis) lis2))
457 (setq lis (cdr lis)))
458
459 (setq lis2 (reverse lis2))
460 (set macro-alist-var (append lis2 (cons new-elt lis)))
461 (setq old-elt new-elt)))
462 (setq old-sub-elt
463 (cond ((eq scope t) (viper-kbd-global-pair old-elt))
464 ((symbolp scope) (assoc scope (viper-kbd-mode-alist old-elt)))
465 ((stringp scope) (assoc scope (viper-kbd-buf-alist old-elt)))))
466 (if old-sub-elt
467 (setcdr old-sub-elt macro-body)
468 (cond ((symbolp scope) (setcar (cdr (cdr old-elt))
469 (cons (cons scope macro-body)
470 (viper-kbd-mode-alist old-elt))))
471 ((stringp scope) (setcar (cdr old-elt)
472 (cons (cons scope macro-body)
473 (viper-kbd-buf-alist old-elt))))))
474 ))
475
476
477
478 ;; macro name must be a vector of viper-style keys
479 ;; viper-unrecord-kbd-macro doesn't have scope. Macro definitions are inherited
480 ;; from global -> major mode -> buffer
481 ;; More specific definition overrides more general
482 ;; Can't unrecord definition for more specific, if a more general definition is
483 ;; in effect
484 (defun viper-unrecord-kbd-macro (macro-name state)
485 "Delete macro MACRO-NAME from Viper STATE.
486 MACRO-NAME must be a vector of viper-style keys. This command is used by Viper
487 internally, but the user can also use it in ~/.viper to delete pre-defined
488 macros supplied with Viper. The best way to avoid mistakes in macro names to
489 be passed to this function is to use viper-describe-kbd-macros and copy the
490 name from there."
491 (let* (state-name keymap
492 (macro-alist-var
493 (cond ((eq state 'vi-state)
494 (setq state-name "Vi state"
495 keymap viper-vi-kbd-map)
496 'viper-vi-kbd-macro-alist)
497 ((memq state '(insert-state replace-state))
498 (setq state-name "Insert state"
499 keymap viper-insert-kbd-map)
500 'viper-insert-kbd-macro-alist)
501 (t
502 (setq state-name "Emacs state"
503 keymap viper-emacs-kbd-map)
504 'viper-emacs-kbd-macro-alist)
505 ))
506 buf-mapping mode-mapping global-mapping
507 macro-pair macro-entry)
508
509 ;; Macro-name is usually a vector. However, command history or macros
510 ;; recorded in ~/.viper may appear as strings. So, convert to vectors.
511 (setq macro-name (viper-fixup-macro macro-name))
512 (if (viper-char-array-p macro-name)
513 (setq macro-name (viper-char-array-to-macro macro-name)))
514
515 (setq macro-entry (assoc macro-name (eval macro-alist-var)))
516 (if (= (length macro-name) 0)
517 (error "Can't unmap an empty macro name"))
518 (if (null macro-entry)
519 (error "%S is not mapped to a macro for %s in `%s'"
520 (viper-display-macro macro-name)
521 state-name (buffer-name)))
522
523 (setq buf-mapping (viper-kbd-buf-pair macro-entry)
524 mode-mapping (viper-kbd-mode-pair macro-entry)
525 global-mapping (viper-kbd-global-pair macro-entry))
526
527 (cond ((and (cdr buf-mapping)
528 (or (and (not (cdr mode-mapping)) (not (cdr global-mapping)))
529 (y-or-n-p
530 (format "Unmap %S for `%s' only? "
531 (viper-display-macro macro-name)
532 (buffer-name)))))
533 (setq macro-pair buf-mapping)
534 (message "%S is unmapped for %s in `%s'"
535 (viper-display-macro macro-name)
536 state-name (buffer-name)))
537 ((and (cdr mode-mapping)
538 (or (not (cdr global-mapping))
539 (y-or-n-p
540 (format "Unmap %S for the major mode `%S' only? "
541 (viper-display-macro macro-name)
542 major-mode))))
543 (setq macro-pair mode-mapping)
544 (message "%S is unmapped for %s in %S"
545 (viper-display-macro macro-name) state-name major-mode))
546 ((cdr (setq macro-pair global-mapping))
547 (message
548 "Global mapping for %S in %s is removed"
549 (viper-display-macro macro-name) state-name))
550 (t (error "%S is not mapped to a macro for %s in `%s'"
551 (viper-display-macro macro-name)
552 state-name (buffer-name))))
553 (setcdr macro-pair nil)
554 (or (cdr buf-mapping)
555 (cdr mode-mapping)
556 (cdr global-mapping)
557 (progn
558 (set macro-alist-var (delq macro-entry (eval macro-alist-var)))
559 (if (viper-can-release-key (aref macro-name 0)
560 (eval macro-alist-var))
561 (define-key
562 keymap
563 (vector (viper-key-to-emacs-key (aref macro-name 0)))
564 nil))
565 ))
566 ))
567
568 ;; Check if MACRO-ALIST has an entry for a macro name starting with
569 ;; CHAR. If not, this indicates that the binding for this char
570 ;; in viper-vi/insert-kbd-map can be released.
571 (defun viper-can-release-key (char macro-alist)
572 (let ((lis macro-alist)
573 (can-release t)
574 macro-name)
575
576 (while (and lis can-release)
577 (setq macro-name (car (car lis)))
578 (if (eq char (aref macro-name 0))
579 (setq can-release nil))
580 (setq lis (cdr lis)))
581 can-release))
582
583
584 (defun viper-exec-mapped-kbd-macro (count)
585 "Dispatch kbd macro."
586 (interactive "P")
587 (let* ((macro-alist (cond ((eq viper-current-state 'vi-state)
588 viper-vi-kbd-macro-alist)
589 ((memq viper-current-state
590 '(insert-state replace-state))
591 viper-insert-kbd-macro-alist)
592 (t
593 viper-emacs-kbd-macro-alist)))
594 (unmatched-suffix "")
595 ;; Macros and keys are executed with other macros turned off
596 ;; For macros, this is done to avoid macro recursion
597 viper-vi-kbd-minor-mode viper-insert-kbd-minor-mode
598 viper-emacs-kbd-minor-mode
599 next-best-match keyseq event-seq
600 macro-first-char macro-alist-elt macro-body
601 command)
602
603 (setq macro-first-char last-command-event
604 event-seq (viper-read-fast-keysequence macro-first-char macro-alist)
605 keyseq (viper-events-to-macro event-seq)
606 macro-alist-elt (assoc keyseq macro-alist)
607 next-best-match (viper-find-best-matching-macro macro-alist keyseq))
608
609 (if (null macro-alist-elt)
610 (setq macro-alist-elt (car next-best-match)
611 unmatched-suffix (viper-subseq event-seq (cdr next-best-match))))
612
613 (cond ((null macro-alist-elt))
614 ((setq macro-body (viper-kbd-buf-definition macro-alist-elt)))
615 ((setq macro-body (viper-kbd-mode-definition macro-alist-elt)))
616 ((setq macro-body (viper-kbd-global-definition macro-alist-elt))))
617
618 ;; when defining keyboard macro, don't use the macro mappings
619 (if (and macro-body (not defining-kbd-macro))
620 ;; block cmd executed as part of a macro from entering command history
621 (let ((command-history command-history))
622 (setq viper-this-kbd-macro (car macro-alist-elt))
623 (execute-kbd-macro (viper-macro-to-events macro-body) count)
624 (setq viper-this-kbd-macro nil
625 viper-last-kbd-macro (car macro-alist-elt))
626 (viper-set-unread-command-events unmatched-suffix))
627 ;; If not a macro, or the macro is suppressed while defining another
628 ;; macro, put keyseq back on the event queue
629 (viper-set-unread-command-events event-seq)
630 ;; if the user typed arg, then use it if prefix arg is not set by
631 ;; some other command (setting prefix arg can happen if we do, say,
632 ;; 2dw and there is a macro starting with 2. Then control will go to
633 ;; this routine
634 (or prefix-arg (setq prefix-arg count))
635 (setq command (key-binding (read-key-sequence nil)))
636 (if (commandp command)
637 (command-execute command)
638 (beep 1)))
639 ))
640
641
642 \f
643 ;;; Displaying and completing macros
644
645 (defun viper-describe-kbd-macros ()
646 "Show currently defined keyboard macros."
647 (interactive)
648 (with-output-to-temp-buffer " *viper-info*"
649 (princ "Macros in Vi state:\n===================\n")
650 (mapc 'viper-describe-one-macro viper-vi-kbd-macro-alist)
651 (princ "\n\nMacros in Insert and Replace states:\n====================================\n")
652 (mapc 'viper-describe-one-macro viper-insert-kbd-macro-alist)
653 (princ "\n\nMacros in Emacs state:\n======================\n")
654 (mapcar 'viper-describe-one-macro viper-emacs-kbd-macro-alist)
655 ))
656
657 (defun viper-describe-one-macro (macro)
658 (princ (format "\n *** Mappings for %S:\n ------------\n"
659 (viper-display-macro (car macro))))
660 (princ " ** Buffer-specific:")
661 (if (viper-kbd-buf-alist macro)
662 (mapc 'viper-describe-one-macro-elt (viper-kbd-buf-alist macro))
663 (princ " none\n"))
664 (princ "\n ** Mode-specific:")
665 (if (viper-kbd-mode-alist macro)
666 (mapc 'viper-describe-one-macro-elt (viper-kbd-mode-alist macro))
667 (princ " none\n"))
668 (princ "\n ** Global:")
669 (if (viper-kbd-global-definition macro)
670 (princ (format "\n %S" (cdr (viper-kbd-global-pair macro))))
671 (princ " none"))
672 (princ "\n"))
673
674 (defun viper-describe-one-macro-elt (elt)
675 (let ((name (car elt))
676 (defn (cdr elt)))
677 (princ (format "\n * %S:\n %S\n" name defn))))
678
679
680
681 ;; check if SEQ is a prefix of some car of an element in ALIST
682 (defun viper-keyseq-is-a-possible-macro (seq alist)
683 (let ((converted-seq (viper-events-to-macro seq)))
684 (eval (cons 'or
685 (mapcar
686 (lambda (elt) (viper-prefix-subseq-p converted-seq elt))
687 (viper-this-buffer-macros alist))))))
688
689 ;; whether SEQ1 is a prefix of SEQ2
690 (defun viper-prefix-subseq-p (seq1 seq2)
691 (let ((len1 (length seq1))
692 (len2 (length seq2)))
693 (if (<= len1 len2)
694 (equal seq1 (viper-subseq seq2 0 len1)))))
695
696 ;; find the longest common prefix
697 (defun viper-common-seq-prefix (&rest seqs)
698 (let* ((first (car seqs))
699 (rest (cdr seqs))
700 (pref [])
701 (idx 0)
702 len)
703 (if (= (length seqs) 0)
704 (setq len 0)
705 (setq len (apply 'min (mapcar 'length seqs))))
706 (while (< idx len)
707 (if (eval (cons 'and
708 (mapcar (lambda (s) (equal (elt first idx) (elt s idx)))
709 rest)))
710 (setq pref (vconcat pref (vector (elt first idx)))))
711 (setq idx (1+ idx)))
712 pref))
713
714 ;; get all sequences that match PREFIX from a given A-LIST
715 (defun viper-extract-matching-alist-members (pref alist)
716 (delq nil (mapcar (lambda (elt) (if (viper-prefix-subseq-p pref elt) elt))
717 (viper-this-buffer-macros alist))))
718
719 (defun viper-do-sequence-completion (seq alist compl-message)
720 (let* ((matches (viper-extract-matching-alist-members seq alist))
721 (new-seq (apply 'viper-common-seq-prefix matches))
722 )
723 (cond ((and (equal seq new-seq) (= (length matches) 1))
724 (message "%s (Sole completion)" compl-message)
725 (sit-for 2))
726 ((null matches)
727 (message "%s (No match)" compl-message)
728 (sit-for 2)
729 (setq new-seq seq))
730 ((member seq matches)
731 (message "%s (Complete, but not unique)" compl-message)
732 (sit-for 2)
733 (viper-display-vector-completions matches))
734 ((equal seq new-seq)
735 (viper-display-vector-completions matches)))
736 new-seq))
737
738
739 (defun viper-display-vector-completions (list)
740 (with-output-to-temp-buffer "*Completions*"
741 (display-completion-list
742 (mapcar 'prin1-to-string
743 (mapcar 'viper-display-macro list)))))
744
745
746
747 ;; alist is the alist of macros
748 ;; str is the fast key sequence entered
749 ;; returns: (matching-macro-def . unmatched-suffix-start-index)
750 (defun viper-find-best-matching-macro (alist str)
751 (let ((lis alist)
752 (def-len 0)
753 (str-len (length str))
754 match unmatched-start-idx found macro-def)
755 (while (and (not found) lis)
756 (setq macro-def (car lis)
757 def-len (length (car macro-def)))
758 (if (and (>= str-len def-len)
759 (equal (car macro-def) (viper-subseq str 0 def-len)))
760 (if (or (viper-kbd-buf-definition macro-def)
761 (viper-kbd-mode-definition macro-def)
762 (viper-kbd-global-definition macro-def))
763 (setq found t))
764 )
765 (setq lis (cdr lis)))
766
767 (if found
768 (setq match macro-def
769 unmatched-start-idx def-len)
770 (setq match nil
771 unmatched-start-idx 0))
772
773 (cons match unmatched-start-idx)))
774
775
776
777 ;; returns a list of names of macros defined for the current buffer
778 (defun viper-this-buffer-macros (macro-alist)
779 (let (candidates)
780 (setq candidates
781 (mapcar (lambda (elt)
782 (if (or (viper-kbd-buf-definition elt)
783 (viper-kbd-mode-definition elt)
784 (viper-kbd-global-definition elt))
785 (car elt)))
786 macro-alist))
787 (setq candidates (delq nil candidates))))
788
789
790 ;; if seq of Viper key symbols (representing a macro) can be converted to a
791 ;; string--do so. Otherwise, do nothing.
792 (defun viper-display-macro (macro-name-or-body)
793 (cond ((viper-char-symbol-sequence-p macro-name-or-body)
794 (mapconcat 'symbol-name macro-name-or-body ""))
795 ((viper-char-array-p macro-name-or-body)
796 (mapconcat 'char-to-string macro-name-or-body ""))
797 (t macro-name-or-body)))
798
799 ;; convert sequence of events (that came presumably from emacs kbd macro) into
800 ;; Viper's macro, which is a vector of the form
801 ;; [ desc desc ... ]
802 ;; Each desc is either a symbol of (meta symb), (shift symb), etc.
803 ;; Here we purge events that happen to be lists. In most cases, these events
804 ;; got into a macro definition unintentionally; say, when the user moves mouse
805 ;; during a macro definition, then something like (switch-frame ...) might get
806 ;; in. Another reason for purging lists-events is that we can't store them in
807 ;; textual form (say, in .emacs) and then read them back.
808 (defun viper-events-to-macro (event-seq)
809 (vconcat (delq nil (mapcar (lambda (elt) (if (consp elt)
810 nil
811 (viper-event-key elt)))
812 event-seq))))
813
814 ;; convert strings or arrays of characters to Viper macro form
815 (defun viper-char-array-to-macro (array)
816 (let ((vec (vconcat array))
817 macro)
818 (if (featurep 'xemacs)
819 (setq macro (mapcar 'character-to-event vec))
820 (setq macro vec))
821 (vconcat (mapcar 'viper-event-key macro))))
822
823 ;; For macros bodies and names, goes over MACRO and checks if all members are
824 ;; names of keys (actually, it only checks if they are symbols or lists
825 ;; if a digit is found, it is converted into a symbol (e.g., 0 -> \0, etc).
826 ;; If MACRO is not a list or vector -- doesn't change MACRO.
827 (defun viper-fixup-macro (macro)
828 (let ((len (length macro))
829 (idx 0)
830 elt break)
831 (if (or (vectorp macro) (listp macro))
832 (while (and (< idx len) (not break))
833 (setq elt (elt macro idx))
834 (cond ((numberp elt)
835 ;; fix number
836 (if (and (<= 0 elt) (<= elt 9))
837 (cond ((arrayp macro)
838 (aset macro
839 idx
840 (intern (char-to-string (+ ?0 elt)))))
841 ((listp macro)
842 (setcar (nthcdr idx macro)
843 (intern (char-to-string (+ ?0 elt)))))
844 )))
845 ((listp elt)
846 (viper-fixup-macro elt))
847 ((symbolp elt) nil)
848 (t (setq break t)))
849 (setq idx (1+ idx))))
850
851 (if break
852 (error "Wrong type macro component, symbol-or-listp, %S" elt)
853 macro)))
854
855 (defun viper-macro-to-events (macro-body)
856 (vconcat (mapcar 'viper-key-to-emacs-key macro-body)))
857
858
859 \f
860 ;;; Reading fast key sequences
861
862 ;; Assuming that CHAR was the first character in a fast succession of key
863 ;; strokes, read the rest. Return the vector of keys that was entered in
864 ;; this fast succession of key strokes.
865 ;; A fast keysequence is one that is terminated by a pause longer than
866 ;; viper-fast-keyseq-timeout.
867 (defun viper-read-fast-keysequence (event macro-alist)
868 (let ((lis (vector event))
869 next-event)
870 (while (and (viper-fast-keysequence-p)
871 (viper-keyseq-is-a-possible-macro lis macro-alist))
872 ;; Seems that viper-read-event is more robust here. We need to be able to
873 ;; place these events on unread-command-events list. If we use
874 ;; viper-read-key then events will be converted to keys, and sometimes
875 ;; (e.g., (control \[)) those keys differ from the corresponding events.
876 ;; So, do not use (setq next-event (viper-read-key))
877 (setq next-event (viper-read-event))
878 (or (viper-mouse-event-p next-event)
879 (setq lis (vconcat lis (vector next-event)))))
880 lis))
881
882 \f
883 ;;; Keyboard macros in registers
884
885 ;; sets register to last-kbd-macro carefully.
886 (defun viper-set-register-macro (reg)
887 (if (get-register reg)
888 (if (y-or-n-p "Register contains data. Overwrite? ")
889 ()
890 (error
891 "Macro not saved in register. Can still be invoked via `C-x e'")))
892 (set-register reg last-kbd-macro))
893
894 (defun viper-register-macro (count)
895 "Keyboard macros in registers - a modified \@ command."
896 (interactive "P")
897 (let ((reg (downcase (read-char))))
898 (cond ((or (and (<= ?a reg) (<= reg ?z)))
899 (setq viper-last-macro-reg reg)
900 (if defining-kbd-macro
901 (progn
902 (end-kbd-macro)
903 (viper-set-register-macro reg))
904 (execute-kbd-macro (get-register reg) count)))
905 ((or (= ?@ reg) (= ?\^j reg) (= ?\^m reg))
906 (if viper-last-macro-reg
907 nil
908 (error "No previous kbd macro"))
909 (execute-kbd-macro (get-register viper-last-macro-reg) count))
910 ((= ?\# reg)
911 (start-kbd-macro count))
912 ((= ?! reg)
913 (setq reg (downcase (read-char)))
914 (if (or (and (<= ?a reg) (<= reg ?z)))
915 (progn
916 (setq viper-last-macro-reg reg)
917 (viper-set-register-macro reg))))
918 (t
919 (error "`%c': Unknown register" reg)))))
920
921
922 (defun viper-global-execute ()
923 "Call last keyboard macro for each line in the region."
924 (if (> (point) (mark t)) (exchange-point-and-mark))
925 (beginning-of-line)
926 (call-last-kbd-macro)
927 (while (< (point) (mark t))
928 (forward-line 1)
929 (beginning-of-line)
930 (call-last-kbd-macro)))
931
932
933 ;;; viper-macs.el ends here