1 ;;; viper-macs.el --- functions implementing keyboard macros for Viper
3 ;; Copyright (C) 1994, 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
8 ;; This file is part of GNU Emacs.
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.
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.
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/>.
30 (defvar viper-ex-work-buf
)
31 (defvar viper-custom-file-name
)
32 (defvar viper-current-state
)
33 (defvar viper-fast-keyseq-timeout
)
35 ;; loading happens only in non-interactive compilation
36 ;; in order to spare non-viperized emacs from being viperized
49 ;; Register holding last macro.
50 (defvar viper-last-macro-reg nil
)
52 ;; format of the elements of kbd alists:
53 ;; (name ((buf . macr)...(buf . macr)) ((maj-mode . macr)...) (t . macr))
54 ;; kbd macro alist for Vi state
55 (defvar viper-vi-kbd-macro-alist nil
)
56 ;; same for insert/replace state
57 (defvar viper-insert-kbd-macro-alist nil
)
58 ;; same for emacs state
59 (defvar viper-emacs-kbd-macro-alist nil
)
61 ;; Internal var that passes info between start-kbd-macro and end-kbd-macro
63 (defvar viper-kbd-macro-parameters nil
)
65 (defvar viper-this-kbd-macro nil
66 "Vector of keys representing the name of currently running Viper kbd macro.")
67 (defvar viper-last-kbd-macro nil
68 "Vector of keys representing the name of last Viper keyboard macro.")
70 (defcustom viper-repeat-from-history-key
'f12
71 "Prefix key for accessing previously typed Vi commands.
73 The previous command is accessible, as usual, via `.'. The command before this
74 can be invoked as `<this key> 1', and the command before that, and the command
75 before that one is accessible as `<this key> 2'.
76 The notation for these keys is borrowed from XEmacs. Basically,
77 a key is a symbol, e.g., `a', `\\1', `f2', etc., or a list, e.g.,
89 macro-name macro-body map-args ins
)
90 (save-window-excursion
91 (set-buffer viper-ex-work-buf
)
97 (setq map-args
(ex-map-read-args mod-char
)
98 macro-name
(car map-args
)
99 macro-body
(cdr map-args
))
100 (setq viper-kbd-macro-parameters
(list ins mod-char macro-name macro-body
))
102 (viper-end-mapping-kbd-macro 'ignore
)
103 (ex-fixup-history (format "map%s %S" mod-char
104 (viper-display-macro macro-name
)))
105 ;; if defining macro for insert, switch there for authentic WYSIWYG
106 (if ins
(viper-change-state-to-insert))
107 (start-kbd-macro nil
)
108 (define-key viper-vi-intercept-map
"\C-x)" 'viper-end-mapping-kbd-macro
)
109 (define-key viper-insert-intercept-map
"\C-x)" 'viper-end-mapping-kbd-macro
)
110 (define-key viper-emacs-intercept-map
"\C-x)" 'viper-end-mapping-kbd-macro
)
111 (message "Mapping %S in %s state. Type macro definition followed by `C-x )'"
112 (viper-display-macro macro-name
)
113 (if ins
"Insert" "Vi")))
121 (save-window-excursion
122 (set-buffer viper-ex-work-buf
)
129 (setq macro-name
(ex-unmap-read-args mod-char
))
130 (setq temp
(viper-fixup-macro (vconcat macro-name
))) ;; copy and fixup
131 (ex-fixup-history (format "unmap%s %S" mod-char
132 (viper-display-macro temp
)))
133 (viper-unrecord-kbd-macro macro-name
(if ins
'insert-state
'vi-state
))
137 ;; read arguments for ex-map
138 (defun ex-map-read-args (variant)
139 (let ((cursor-in-echo-area t
)
141 temp key event message
142 macro-name macro-body args
)
145 (setq args
(concat (ex-get-inline-cmd-args ".*map[!]*[ \t]?" "\n\C-m")
147 temp
(read-from-string args
)
148 macro-name
(car temp
)
149 macro-body
(car (read-from-string args
(cdr temp
))))
153 '("map: Macro name and body must be a quoted string or a vector"))))
155 ;; We expect macro-name to be a vector, a string, or a quoted string.
156 ;; In the second case, it will emerge as a symbol when read from
157 ;; the above read-from-string. So we need to convert it into a string
159 (cond ((vectorp macro-name
) nil
)
160 ((stringp macro-name
)
161 (setq macro-name
(vconcat macro-name
)))
162 (t (setq macro-name
(vconcat (prin1-to-string macro-name
)))))
163 (message ":map%s <Macro Name>" variant
)(sit-for 2)
166 '(?\C-m ?
\n (control m
) (control j
) return linefeed
)))
167 (setq key-seq
(vconcat key-seq
(if key
(vector key
) [])))
168 ;; the only keys available for editing are these-- no help while there
171 '(?
\b ?\d
'^?
'^H
(control h
) (control \?) backspace delete
))
172 (setq key-seq
(viper-subseq key-seq
0 (- (length key-seq
) 2))))
176 variant
(if (> (length key-seq
) 0)
177 (prin1-to-string (viper-display-macro key-seq
))
179 (message "%s" message
)
180 (setq event
(viper-read-key))
181 ;;(setq event (viper-read-event))
183 (if (viper-mouse-event-p event
)
185 (message "%s (No mouse---only keyboard keys, please)"
189 (viper-event-key event
)))
191 (setq macro-name key-seq
))
193 (if (= (length macro-name
) 0)
194 (error "Can't map an empty macro name"))
195 (setq macro-name
(viper-fixup-macro macro-name
))
196 (if (viper-char-array-p macro-name
)
197 (setq macro-name
(viper-char-array-to-macro macro-name
)))
200 (cond ((viper-char-array-p macro-body
)
201 (setq macro-body
(viper-char-array-to-macro macro-body
)))
202 ((vectorp macro-body
) nil
)
203 (t (error "map: Invalid syntax in macro definition"))))
204 (setq cursor-in-echo-area nil
)(sit-for 0) ; this overcomes xemacs tty bug
205 (cons macro-name macro-body
)))
209 ;; read arguments for ex-unmap
210 (defun ex-unmap-read-args (variant)
211 (let ((cursor-in-echo-area t
)
212 (macro-alist (if (string= variant
"!")
213 viper-insert-kbd-macro-alist
214 viper-vi-kbd-macro-alist
))
215 ;; these are disabled just in case, to avoid surprises when doing
217 viper-vi-kbd-minor-mode viper-insert-kbd-minor-mode
218 viper-emacs-kbd-minor-mode
219 viper-vi-intercept-minor-mode viper-insert-intercept-minor-mode
220 viper-emacs-intercept-minor-mode
222 key key-seq macro-name
)
223 (setq macro-name
(ex-get-inline-cmd-args ".*unma?p?[!]*[ \t]*"))
225 (if (> (length macro-name
) 0)
227 (message ":unmap%s <Name>" variant
) (sit-for 2)
230 (member key
'(?\C-m ?
\n (control m
) (control j
) return linefeed
)))
231 (setq key-seq
(vconcat key-seq
(if key
(vector key
) [])))
232 ;; the only keys available for editing are these-- no help while there
235 '(?
\b ?\d
'^?
'^H
(control h
) (control \?) backspace delete
))
236 (setq key-seq
(viper-subseq key-seq
0 (- (length key-seq
) 2))))
237 ((member key
'(tab (control i
) ?
\t))
238 (setq key-seq
(viper-subseq key-seq
0 (1- (length key-seq
))))
242 variant
(if (> (length key-seq
) 0)
244 (viper-display-macro key-seq
))
247 (viper-do-sequence-completion key-seq macro-alist message
))
252 variant
(if (> (length key-seq
) 0)
254 (viper-display-macro key-seq
))
256 (message "%s" message
)
257 (setq event
(viper-read-key))
258 ;;(setq event (viper-read-event))
260 (if (viper-mouse-event-p event
)
262 (message "%s (No mouse---only keyboard keys, please)"
266 (viper-event-key event
)))
268 (setq macro-name key-seq
))
270 (if (= (length macro-name
) 0)
271 (error "Can't unmap an empty macro name"))
273 ;; convert macro names into vector, if starts with a `['
274 (if (memq (elt macro-name
0) '(?\
[ ?
\"))
275 (car (read-from-string macro-name
))
276 (vconcat macro-name
))
280 ;; Terminate a Vi kbd macro.
281 ;; optional argument IGNORE, if t, indicates that we are dealing with an
282 ;; existing macro that needs to be registered, but there is no need to
283 ;; terminate a kbd macro.
284 (defun viper-end-mapping-kbd-macro (&optional ignore
)
286 (define-key viper-vi-intercept-map
"\C-x)" nil
)
287 (define-key viper-insert-intercept-map
"\C-x)" nil
)
288 (define-key viper-emacs-intercept-map
"\C-x)" nil
)
289 (if (and (not ignore
)
290 (or (not viper-kbd-macro-parameters
)
291 (not defining-kbd-macro
)))
292 (error "Not mapping a kbd-macro"))
293 (let ((mod-char (nth 1 viper-kbd-macro-parameters
))
294 (ins (nth 0 viper-kbd-macro-parameters
))
295 (macro-name (nth 2 viper-kbd-macro-parameters
))
296 (macro-body (nth 3 viper-kbd-macro-parameters
)))
297 (setq viper-kbd-macro-parameters nil
)
301 (setq macro-body
(viper-events-to-macro last-kbd-macro
))
302 ;; always go back to Vi, since this is where we started
304 (viper-change-state-to-vi)))
306 (viper-record-kbd-macro macro-name
307 (if ins
'insert-state
'vi-state
)
308 (viper-display-macro macro-body
))
310 (ex-fixup-history (format "map%s %S %S" mod-char
311 (viper-display-macro macro-name
)
312 (viper-display-macro macro-body
)))
318 ;;; Recording, unrecording, executing
320 ;; Accepts as macro names: strings and vectors.
321 ;; strings must be strings of characters; vectors must be vectors of keys
322 ;; in canonic form. The canonic form is essentially the form used in XEmacs
323 ;; More general definitions are inherited by more specific scopes:
324 ;; global->major mode->buffer. More specific definitions override more general
325 (defun viper-record-kbd-macro (macro-name state macro-body
&optional scope
)
326 "Record a Vi macro. Can be used in `.viper' file to define permanent macros.
327 MACRO-NAME is a string of characters or a vector of keys. STATE is
328 either `vi-state' or `insert-state'. It specifies the Viper state in which to
329 define the macro. MACRO-BODY is a string that represents the keyboard macro.
330 Optional SCOPE says whether the macro should be global \(t\), mode-specific
331 \(a major-mode symbol\), or buffer-specific \(buffer name, a string\).
332 If SCOPE is nil, the user is asked to specify the scope."
333 (let* (state-name keymap
335 (cond ((eq state
'vi-state
)
336 (setq state-name
"Vi state"
337 keymap viper-vi-kbd-map
)
338 'viper-vi-kbd-macro-alist
)
339 ((memq state
'(insert-state replace-state
))
340 (setq state-name
"Insert state"
341 keymap viper-insert-kbd-map
)
342 'viper-insert-kbd-macro-alist
)
344 (setq state-name
"Emacs state"
345 keymap viper-emacs-kbd-map
)
346 'viper-emacs-kbd-macro-alist
)
348 new-elt old-elt old-sub-elt msg
351 (if (= (length macro-name
) 0)
352 (error "Can't map an empty macro name"))
354 ;; Macro-name is usually a vector. However, command history or macros
355 ;; recorded in ~/.viper may be recorded as strings. So, convert to
357 (setq macro-name
(viper-fixup-macro macro-name
))
358 (if (viper-char-array-p macro-name
)
359 (setq macro-name
(viper-char-array-to-macro macro-name
)))
360 (setq macro-body
(viper-fixup-macro macro-body
))
361 (if (viper-char-array-p macro-body
)
362 (setq macro-body
(viper-char-array-to-macro macro-body
)))
364 ;; don't ask if scope is given and is of the right type
367 (and scope
(symbolp scope
))
373 "Map this macro for buffer `%s' only? "
377 "%S is mapped to %s for %s in `%s'"
378 (viper-display-macro macro-name
)
379 (viper-abbreviate-string
382 (setq temp
(viper-display-macro macro-body
)))
384 (if (stringp temp
) " ....\"" " ....]"))
385 state-name
(buffer-name)))
389 "Map this macro for the major mode `%S' only? "
393 "%S is mapped to %s for %s in `%S'"
394 (viper-display-macro macro-name
)
395 (viper-abbreviate-string
398 (setq temp
(viper-display-macro macro-body
)))
400 (if (stringp macro-body
) " ....\"" " ....]"))
401 state-name major-mode
))
406 "%S is globally mapped to %s in %s"
407 (viper-display-macro macro-name
)
408 (viper-abbreviate-string
411 (setq temp
(viper-display-macro macro-body
)))
413 (if (stringp macro-body
) " ....\"" " ....]"))
417 (format "Save this macro in %s? "
418 (viper-abbreviate-file-name viper-custom-file-name
)))
419 (viper-save-string-in-file
420 (format "\n(viper-record-kbd-macro %S '%S %s '%S)"
421 (viper-display-macro macro-name
)
423 ;; if we don't let vector macro-body through %S,
424 ;; the symbols `\.' `\[' etc will be converted into
425 ;; characters, causing invalid read error on recorded
427 ;; I am not sure is macro-body can still be a string at
428 ;; this point, but I am preserving this option anyway.
429 (if (vectorp macro-body
)
430 (format "%S" macro-body
)
433 viper-custom-file-name
))
440 (cond ((eq scope t
) (list nil nil
(cons t nil
)))
442 (list nil
(list (cons scope nil
)) (cons t nil
)))
444 (list (list (cons scope nil
)) nil
(cons t nil
))))))
445 (setq old-elt
(assoc macro-name
(eval macro-alist-var
)))
449 ;; insert new-elt in macro-alist-var and keep the list sorted
452 (vector (viper-key-to-emacs-key (aref macro-name
0)))
453 'viper-exec-mapped-kbd-macro
)
454 (setq lis
(eval macro-alist-var
))
455 (while (and lis
(string< (viper-array-to-string (car (car lis
)))
456 (viper-array-to-string macro-name
)))
457 (setq lis2
(cons (car lis
) lis2
))
458 (setq lis
(cdr lis
)))
460 (setq lis2
(reverse lis2
))
461 (set macro-alist-var
(append lis2
(cons new-elt lis
)))
462 (setq old-elt new-elt
)))
464 (cond ((eq scope t
) (viper-kbd-global-pair old-elt
))
465 ((symbolp scope
) (assoc scope
(viper-kbd-mode-alist old-elt
)))
466 ((stringp scope
) (assoc scope
(viper-kbd-buf-alist old-elt
)))))
468 (setcdr old-sub-elt macro-body
)
469 (cond ((symbolp scope
) (setcar (cdr (cdr old-elt
))
470 (cons (cons scope macro-body
)
471 (viper-kbd-mode-alist old-elt
))))
472 ((stringp scope
) (setcar (cdr old-elt
)
473 (cons (cons scope macro-body
)
474 (viper-kbd-buf-alist old-elt
))))))
479 ;; macro name must be a vector of viper-style keys
480 ;; viper-unrecord-kbd-macro doesn't have scope. Macro definitions are inherited
481 ;; from global -> major mode -> buffer
482 ;; More specific definition overrides more general
483 ;; Can't unrecord definition for more specific, if a more general definition is
485 (defun viper-unrecord-kbd-macro (macro-name state
)
486 "Delete macro MACRO-NAME from Viper STATE.
487 MACRO-NAME must be a vector of viper-style keys. This command is used by Viper
488 internally, but the user can also use it in ~/.viper to delete pre-defined
489 macros supplied with Viper. The best way to avoid mistakes in macro names to
490 be passed to this function is to use viper-describe-kbd-macros and copy the
492 (let* (state-name keymap
494 (cond ((eq state
'vi-state
)
495 (setq state-name
"Vi state"
496 keymap viper-vi-kbd-map
)
497 'viper-vi-kbd-macro-alist
)
498 ((memq state
'(insert-state replace-state
))
499 (setq state-name
"Insert state"
500 keymap viper-insert-kbd-map
)
501 'viper-insert-kbd-macro-alist
)
503 (setq state-name
"Emacs state"
504 keymap viper-emacs-kbd-map
)
505 'viper-emacs-kbd-macro-alist
)
507 buf-mapping mode-mapping global-mapping
508 macro-pair macro-entry
)
510 ;; Macro-name is usually a vector. However, command history or macros
511 ;; recorded in ~/.viper may appear as strings. So, convert to vectors.
512 (setq macro-name
(viper-fixup-macro macro-name
))
513 (if (viper-char-array-p macro-name
)
514 (setq macro-name
(viper-char-array-to-macro macro-name
)))
516 (setq macro-entry
(assoc macro-name
(eval macro-alist-var
)))
517 (if (= (length macro-name
) 0)
518 (error "Can't unmap an empty macro name"))
519 (if (null macro-entry
)
520 (error "%S is not mapped to a macro for %s in `%s'"
521 (viper-display-macro macro-name
)
522 state-name
(buffer-name)))
524 (setq buf-mapping
(viper-kbd-buf-pair macro-entry
)
525 mode-mapping
(viper-kbd-mode-pair macro-entry
)
526 global-mapping
(viper-kbd-global-pair macro-entry
))
528 (cond ((and (cdr buf-mapping
)
529 (or (and (not (cdr mode-mapping
)) (not (cdr global-mapping
)))
531 (format "Unmap %S for `%s' only? "
532 (viper-display-macro macro-name
)
534 (setq macro-pair buf-mapping
)
535 (message "%S is unmapped for %s in `%s'"
536 (viper-display-macro macro-name
)
537 state-name
(buffer-name)))
538 ((and (cdr mode-mapping
)
539 (or (not (cdr global-mapping
))
541 (format "Unmap %S for the major mode `%S' only? "
542 (viper-display-macro macro-name
)
544 (setq macro-pair mode-mapping
)
545 (message "%S is unmapped for %s in %S"
546 (viper-display-macro macro-name
) state-name major-mode
))
547 ((cdr (setq macro-pair global-mapping
))
549 "Global mapping for %S in %s is removed"
550 (viper-display-macro macro-name
) state-name
))
551 (t (error "%S is not mapped to a macro for %s in `%s'"
552 (viper-display-macro macro-name
)
553 state-name
(buffer-name))))
554 (setcdr macro-pair nil
)
555 (or (cdr buf-mapping
)
559 (set macro-alist-var
(delq macro-entry
(eval macro-alist-var
)))
560 (if (viper-can-release-key (aref macro-name
0)
561 (eval macro-alist-var
))
564 (vector (viper-key-to-emacs-key (aref macro-name
0)))
569 ;; Check if MACRO-ALIST has an entry for a macro name starting with
570 ;; CHAR. If not, this indicates that the binding for this char
571 ;; in viper-vi/insert-kbd-map can be released.
572 (defun viper-can-release-key (char macro-alist
)
573 (let ((lis macro-alist
)
577 (while (and lis can-release
)
578 (setq macro-name
(car (car lis
)))
579 (if (eq char
(aref macro-name
0))
580 (setq can-release nil
))
581 (setq lis
(cdr lis
)))
585 (defun viper-exec-mapped-kbd-macro (count)
586 "Dispatch kbd macro."
588 (let* ((macro-alist (cond ((eq viper-current-state
'vi-state
)
589 viper-vi-kbd-macro-alist
)
590 ((memq viper-current-state
591 '(insert-state replace-state
))
592 viper-insert-kbd-macro-alist
)
594 viper-emacs-kbd-macro-alist
)))
595 (unmatched-suffix "")
596 ;; Macros and keys are executed with other macros turned off
597 ;; For macros, this is done to avoid macro recursion
598 viper-vi-kbd-minor-mode viper-insert-kbd-minor-mode
599 viper-emacs-kbd-minor-mode
600 next-best-match keyseq event-seq
601 macro-first-char macro-alist-elt macro-body
604 (setq macro-first-char last-command-event
605 event-seq
(viper-read-fast-keysequence macro-first-char macro-alist
)
606 keyseq
(viper-events-to-macro event-seq
)
607 macro-alist-elt
(assoc keyseq macro-alist
)
608 next-best-match
(viper-find-best-matching-macro macro-alist keyseq
))
610 (if (null macro-alist-elt
)
611 (setq macro-alist-elt
(car next-best-match
)
612 unmatched-suffix
(viper-subseq event-seq
(cdr next-best-match
))))
614 (cond ((null macro-alist-elt
))
615 ((setq macro-body
(viper-kbd-buf-definition macro-alist-elt
)))
616 ((setq macro-body
(viper-kbd-mode-definition macro-alist-elt
)))
617 ((setq macro-body
(viper-kbd-global-definition macro-alist-elt
))))
619 ;; when defining keyboard macro, don't use the macro mappings
620 (if (and macro-body
(not defining-kbd-macro
))
621 ;; block cmd executed as part of a macro from entering command history
622 (let ((command-history command-history
))
623 (setq viper-this-kbd-macro
(car macro-alist-elt
))
624 (execute-kbd-macro (viper-macro-to-events macro-body
) count
)
625 (setq viper-this-kbd-macro nil
626 viper-last-kbd-macro
(car macro-alist-elt
))
627 (viper-set-unread-command-events unmatched-suffix
))
628 ;; If not a macro, or the macro is suppressed while defining another
629 ;; macro, put keyseq back on the event queue
630 (viper-set-unread-command-events event-seq
)
631 ;; if the user typed arg, then use it if prefix arg is not set by
632 ;; some other command (setting prefix arg can happen if we do, say,
633 ;; 2dw and there is a macro starting with 2. Then control will go to
635 (or prefix-arg
(setq prefix-arg count
))
636 (setq command
(key-binding (read-key-sequence nil
)))
637 (if (commandp command
)
638 (command-execute command
)
644 ;;; Displaying and completing macros
646 (defun viper-describe-kbd-macros ()
647 "Show currently defined keyboard macros."
649 (with-output-to-temp-buffer " *viper-info*"
650 (princ "Macros in Vi state:\n===================\n")
651 (mapc 'viper-describe-one-macro viper-vi-kbd-macro-alist
)
652 (princ "\n\nMacros in Insert and Replace states:\n====================================\n")
653 (mapc 'viper-describe-one-macro viper-insert-kbd-macro-alist
)
654 (princ "\n\nMacros in Emacs state:\n======================\n")
655 (mapcar 'viper-describe-one-macro viper-emacs-kbd-macro-alist
)
658 (defun viper-describe-one-macro (macro)
659 (princ (format "\n *** Mappings for %S:\n ------------\n"
660 (viper-display-macro (car macro
))))
661 (princ " ** Buffer-specific:")
662 (if (viper-kbd-buf-alist macro
)
663 (mapc 'viper-describe-one-macro-elt
(viper-kbd-buf-alist macro
))
665 (princ "\n ** Mode-specific:")
666 (if (viper-kbd-mode-alist macro
)
667 (mapc 'viper-describe-one-macro-elt
(viper-kbd-mode-alist macro
))
669 (princ "\n ** Global:")
670 (if (viper-kbd-global-definition macro
)
671 (princ (format "\n %S" (cdr (viper-kbd-global-pair macro
))))
675 (defun viper-describe-one-macro-elt (elt)
676 (let ((name (car elt
))
678 (princ (format "\n * %S:\n %S\n" name defn
))))
682 ;; check if SEQ is a prefix of some car of an element in ALIST
683 (defun viper-keyseq-is-a-possible-macro (seq alist
)
684 (let ((converted-seq (viper-events-to-macro seq
)))
687 (lambda (elt) (viper-prefix-subseq-p converted-seq elt
))
688 (viper-this-buffer-macros alist
))))))
690 ;; whether SEQ1 is a prefix of SEQ2
691 (defun viper-prefix-subseq-p (seq1 seq2
)
692 (let ((len1 (length seq1
))
693 (len2 (length seq2
)))
695 (equal seq1
(viper-subseq seq2
0 len1
)))))
697 ;; find the longest common prefix
698 (defun viper-common-seq-prefix (&rest seqs
)
699 (let* ((first (car seqs
))
704 (if (= (length seqs
) 0)
706 (setq len
(apply 'min
(mapcar 'length seqs
))))
709 (mapcar (lambda (s) (equal (elt first idx
) (elt s idx
)))
711 (setq pref
(vconcat pref
(vector (elt first idx
)))))
715 ;; get all sequences that match PREFIX from a given A-LIST
716 (defun viper-extract-matching-alist-members (pref alist
)
717 (delq nil
(mapcar (lambda (elt) (if (viper-prefix-subseq-p pref elt
) elt
))
718 (viper-this-buffer-macros alist
))))
720 (defun viper-do-sequence-completion (seq alist compl-message
)
721 (let* ((matches (viper-extract-matching-alist-members seq alist
))
722 (new-seq (apply 'viper-common-seq-prefix matches
))
724 (cond ((and (equal seq new-seq
) (= (length matches
) 1))
725 (message "%s (Sole completion)" compl-message
)
728 (message "%s (No match)" compl-message
)
731 ((member seq matches
)
732 (message "%s (Complete, but not unique)" compl-message
)
734 (viper-display-vector-completions matches
))
736 (viper-display-vector-completions matches
)))
740 (defun viper-display-vector-completions (list)
741 (with-output-to-temp-buffer "*Completions*"
742 (display-completion-list
743 (mapcar 'prin1-to-string
744 (mapcar 'viper-display-macro list
)))))
748 ;; alist is the alist of macros
749 ;; str is the fast key sequence entered
750 ;; returns: (matching-macro-def . unmatched-suffix-start-index)
751 (defun viper-find-best-matching-macro (alist str
)
754 (str-len (length str
))
755 match unmatched-start-idx found macro-def
)
756 (while (and (not found
) lis
)
757 (setq macro-def
(car lis
)
758 def-len
(length (car macro-def
)))
759 (if (and (>= str-len def-len
)
760 (equal (car macro-def
) (viper-subseq str
0 def-len
)))
761 (if (or (viper-kbd-buf-definition macro-def
)
762 (viper-kbd-mode-definition macro-def
)
763 (viper-kbd-global-definition macro-def
))
766 (setq lis
(cdr lis
)))
769 (setq match macro-def
770 unmatched-start-idx def-len
)
772 unmatched-start-idx
0))
774 (cons match unmatched-start-idx
)))
778 ;; returns a list of names of macros defined for the current buffer
779 (defun viper-this-buffer-macros (macro-alist)
782 (mapcar (lambda (elt)
783 (if (or (viper-kbd-buf-definition elt
)
784 (viper-kbd-mode-definition elt
)
785 (viper-kbd-global-definition elt
))
788 (setq candidates
(delq nil candidates
))))
791 ;; if seq of Viper key symbols (representing a macro) can be converted to a
792 ;; string--do so. Otherwise, do nothing.
793 (defun viper-display-macro (macro-name-or-body)
794 (cond ((viper-char-symbol-sequence-p macro-name-or-body
)
795 (mapconcat 'symbol-name macro-name-or-body
""))
796 ((viper-char-array-p macro-name-or-body
)
797 (mapconcat 'char-to-string macro-name-or-body
""))
798 (t macro-name-or-body
)))
800 ;; convert sequence of events (that came presumably from emacs kbd macro) into
801 ;; Viper's macro, which is a vector of the form
803 ;; Each desc is either a symbol of (meta symb), (shift symb), etc.
804 ;; Here we purge events that happen to be lists. In most cases, these events
805 ;; got into a macro definition unintentionally; say, when the user moves mouse
806 ;; during a macro definition, then something like (switch-frame ...) might get
807 ;; in. Another reason for purging lists-events is that we can't store them in
808 ;; textual form (say, in .emacs) and then read them back.
809 (defun viper-events-to-macro (event-seq)
810 (vconcat (delq nil
(mapcar (lambda (elt) (if (consp elt
)
812 (viper-event-key elt
)))
815 ;; convert strings or arrays of characters to Viper macro form
816 (defun viper-char-array-to-macro (array)
817 (let ((vec (vconcat array
))
819 (if (featurep 'xemacs
)
820 (setq macro
(mapcar 'character-to-event vec
))
822 (vconcat (mapcar 'viper-event-key macro
))))
824 ;; For macros bodies and names, goes over MACRO and checks if all members are
825 ;; names of keys (actually, it only checks if they are symbols or lists
826 ;; if a digit is found, it is converted into a symbol (e.g., 0 -> \0, etc).
827 ;; If MACRO is not a list or vector -- doesn't change MACRO.
828 (defun viper-fixup-macro (macro)
829 (let ((len (length macro
))
832 (if (or (vectorp macro
) (listp macro
))
833 (while (and (< idx len
) (not break
))
834 (setq elt
(elt macro idx
))
837 (if (and (<= 0 elt
) (<= elt
9))
838 (cond ((arrayp macro
)
841 (intern (char-to-string (+ ?
0 elt
)))))
843 (setcar (nthcdr idx macro
)
844 (intern (char-to-string (+ ?
0 elt
)))))
847 (viper-fixup-macro elt
))
850 (setq idx
(1+ idx
))))
853 (error "Wrong type macro component, symbol-or-listp, %S" elt
)
856 (defun viper-macro-to-events (macro-body)
857 (vconcat (mapcar 'viper-key-to-emacs-key macro-body
)))
861 ;;; Reading fast key sequences
863 ;; Assuming that CHAR was the first character in a fast succession of key
864 ;; strokes, read the rest. Return the vector of keys that was entered in
865 ;; this fast succession of key strokes.
866 ;; A fast keysequence is one that is terminated by a pause longer than
867 ;; viper-fast-keyseq-timeout.
868 (defun viper-read-fast-keysequence (event macro-alist
)
869 (let ((lis (vector event
))
871 (while (and (viper-fast-keysequence-p)
872 (viper-keyseq-is-a-possible-macro lis macro-alist
))
873 ;; Seems that viper-read-event is more robust here. We need to be able to
874 ;; place these events on unread-command-events list. If we use
875 ;; viper-read-key then events will be converted to keys, and sometimes
876 ;; (e.g., (control \[)) those keys differ from the corresponding events.
877 ;; So, do not use (setq next-event (viper-read-key))
878 (setq next-event
(viper-read-event))
879 (or (viper-mouse-event-p next-event
)
880 (setq lis
(vconcat lis
(vector next-event
)))))
884 ;;; Keyboard macros in registers
886 ;; sets register to last-kbd-macro carefully.
887 (defun viper-set-register-macro (reg)
888 (if (get-register reg
)
889 (if (y-or-n-p "Register contains data. Overwrite? ")
892 "Macro not saved in register. Can still be invoked via `C-x e'")))
893 (set-register reg last-kbd-macro
))
895 (defun viper-register-macro (count)
896 "Keyboard macros in registers - a modified \@ command."
898 (let ((reg (downcase (read-char))))
899 (cond ((or (and (<= ?a reg
) (<= reg ?z
)))
900 (setq viper-last-macro-reg reg
)
901 (if defining-kbd-macro
904 (viper-set-register-macro reg
))
905 (execute-kbd-macro (get-register reg
) count
)))
906 ((or (= ?
@ reg
) (= ?\^j reg
) (= ?\^m reg
))
907 (if viper-last-macro-reg
909 (error "No previous kbd macro"))
910 (execute-kbd-macro (get-register viper-last-macro-reg
) count
))
912 (start-kbd-macro count
))
914 (setq reg
(downcase (read-char)))
915 (if (or (and (<= ?a reg
) (<= reg ?z
)))
917 (setq viper-last-macro-reg reg
)
918 (viper-set-register-macro reg
))))
920 (error "`%c': Unknown register" reg
)))))
923 (defun viper-global-execute ()
924 "Call last keyboad macro for each line in the region."
925 (if (> (point) (mark t
)) (exchange-point-and-mark))
927 (call-last-kbd-macro)
928 (while (< (point) (mark t
))
931 (call-last-kbd-macro)))
934 ;; arch-tag: ecd3cc5c-8cd0-4bbe-b2ec-7e75a4b7d0aa
935 ;;; viper-macs.el ends here