1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-20 10:23:57 +00:00
emacs/lisp/emulation/viper-macs.el

942 lines
31 KiB
EmacsLisp
Raw Normal View History

1995-10-30 17:35:01 +00:00
;;; viper-macs.el --- functions implementing keyboard macros for Viper
2005-08-01 15:47:19 +00:00
;; Copyright (C) 1994, 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2004,
;; 2005 Free Software Foundation, Inc.
1995-04-08 02:20:38 +00:00
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu> * viper-init.el (viper-cond-compile-for-xemacs-or-emacs): new macro that replaces viper-emacs-p and viper-xemacs-p in many cases. Used to reduce the number of warnings. * viper-cmd.el: use viper-cond-compile-for-xemacs-or-emacs. (viper-standard-value): moved here from viper.el. (viper-set-unread-command-events): moved to viper-util.el (viper-check-minibuffer-overlay): make sure viper-minibuffer-overlay is moved to cover the entire input field. * viper-util.el: use viper-cond-compile-for-xemacs-or-emacs. (viper-read-key-sequence, viper-set-unread-command-events, viper-char-symbol-sequence-p, viper-char-array-p): moved here. * viper-ex.el: use viper-cond-compile-for-xemacs-or-emacs. * viper-keym.el: use viper-cond-compile-for-xemacs-or-emacs. * viper-mous.el: use viper-cond-compile-for-xemacs-or-emacs. * viper-macs.el (viper-char-array-p, viper-char-symbol-sequence-p, viper-event-vector-p): moved to viper-util.el * viper.el (viper-standard-value): moved to viper-cmd.el. Use viper-cond-compile-for-xemacs-or-emacs. * ediff-help.el: use ediff-cond-compile-for-xemacs-or-emacs. * ediff-hook.el: use ediff-cond-compile-for-xemacs-or-emacs. * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs): new macro designed to be used in many places where ediff-emacs-p or ediff-xemacs-p was previously used. Reduces the number of warnings. Use ediff-cond-compile-for-xemacs-or-emacs in many places in lieue of ediff-xemacs-p. (ediff-make-current-diff-overlay, ediff-highlight-diff-in-one-buffer, ediff-convert-fine-diffs-to-overlays, ediff-empty-diff-region-p, ediff-whitespace-diff-region-p, ediff-get-region-contents): moved to ediff-util.el. (ediff-event-key): moved here. * ediff-merge.el: got rid of unreferenced variables. * ediff-mult.el: use ediff-cond-compile-for-xemacs-or-emacs. * ediff-util.el: use ediff-cond-compile-for-xemacs-or-emacs. (ediff-cleanup-mess): improved the way windows are set up after quitting ediff. (ediff-janitor): use ediff-dispose-of-variant-according-to-user. (ediff-dispose-of-variant-according-to-user): new function designed to be smarter and also understands indirect buffers. (ediff-highlight-diff-in-one-buffer, ediff-unhighlight-diff-in-one-buffer, ediff-unhighlight-diffs-totally-in-one-buffer, ediff-highlight-diff, ediff-highlight-diff, ediff-unhighlight-diff, ediff-unhighlight-diffs-totally, ediff-empty-diff-region-p, ediff-whitespace-diff-region-p, ediff-get-region-contents, ediff-make-current-diff-overlay): moved here. (ediff-format-bindings-of): new function by Hannu Koivisto <azure@iki.fi>. (ediff-setup): make sure the merge buffer is always widened and modifiable. (ediff-write-merge-buffer-and-maybe-kill): refuse to write the result of a merge into a file visited by another buffer. (ediff-arrange-autosave-in-merge-jobs): check if the merge file is visited by another buffer and ask to save/delete that buffer. (ediff-verify-file-merge-buffer): new function to do the above. * ediff-vers.el: load ediff-init.el at compile time. * ediff-wind.el: use ediff-cond-compile-for-xemacs-or-emacs. * ediff.el (ediff-windows, ediff-regions-wordwise, ediff-regions-linewise): use indirect buffers to improve robustness and make it possible to compare regions of the same buffer (even overlapping regions). (ediff-clone-buffer-for-region-comparison, ediff-clone-buffer-for-window-comparison): new functions. (ediff-files-internal): refuse to compare identical files. (ediff-regions-internal): get rid of the warning about comparing regions of the same buffer. * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): moved here. Plus the following fixes courtesy of Dave Love: Doc fixes. (ediff-word-1): Use word class and move - to the front per regexp documentation. (ediff-wordify): Bind forward-word-function outside loop. (ediff-copy-to-buffer): Use insert-buffer-substring rather than consing buffer contents. (ediff-goto-word): Move syntax table setting outside loop.
2002-01-08 04:36:01 +00:00
;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
1995-02-20 23:15:10 +00:00
;; This file is part of GNU Emacs.
;; GNU Emacs 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, or (at your option)
;; any later version.
;; GNU Emacs 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
1996-01-14 07:34:30 +00:00
;; along with GNU Emacs; see the file COPYING. If not, write to the
2005-07-04 17:55:18 +00:00
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
1995-02-20 23:15:10 +00:00
;;; Commentary:
;;; Code:
1996-03-29 01:02:28 +00:00
1997-05-31 00:02:53 +00:00
(provide 'viper-macs)
;; compiler pacifier
1997-08-02 07:40:22 +00:00
(defvar viper-ex-work-buf)
(defvar viper-custom-file-name)
(defvar viper-current-state)
(defvar viper-fast-keyseq-timeout)
1997-05-31 00:02:53 +00:00
1997-06-09 04:00:50 +00:00
;; loading happens only in non-interactive compilation
;; in order to spare non-viperized emacs from being viperized
(if noninteractive
(eval-when-compile
(let ((load-path (cons (expand-file-name ".") load-path)))
(or (featurep 'viper-util)
(load "viper-util.el" nil nil 'nosuffix))
(or (featurep 'viper-keym)
(load "viper-keym.el" nil nil 'nosuffix))
(or (featurep 'viper-mous)
(load "viper-mous.el" nil nil 'nosuffix))
(or (featurep 'viper-cmd)
(load "viper-cmd.el" nil nil 'nosuffix))
)))
1997-05-31 00:02:53 +00:00
;; end pacifier
1995-02-20 23:15:10 +00:00
(require 'viper-util)
1996-03-29 01:02:28 +00:00
(require 'viper-keym)
1995-02-20 23:15:10 +00:00
;;; Variables
;; Register holding last macro.
1997-08-02 07:40:22 +00:00
(defvar viper-last-macro-reg nil)
1995-02-20 23:15:10 +00:00
2003-02-04 13:24:35 +00:00
;; format of the elements of kbd alists:
1995-02-20 23:15:10 +00:00
;; (name ((buf . macr)...(buf . macr)) ((maj-mode . macr)...) (t . macr))
;; kbd macro alist for Vi state
1997-08-02 07:40:22 +00:00
(defvar viper-vi-kbd-macro-alist nil)
1995-02-20 23:15:10 +00:00
;; same for insert/replace state
1997-08-02 07:40:22 +00:00
(defvar viper-insert-kbd-macro-alist nil)
1995-02-20 23:15:10 +00:00
;; same for emacs state
1997-08-02 07:40:22 +00:00
(defvar viper-emacs-kbd-macro-alist nil)
1995-02-20 23:15:10 +00:00
;; Internal var that passes info between start-kbd-macro and end-kbd-macro
;; in :map and :map!
1997-08-02 07:40:22 +00:00
(defvar viper-kbd-macro-parameters nil)
1995-02-20 23:15:10 +00:00
1997-08-02 07:40:22 +00:00
(defvar viper-this-kbd-macro nil
1995-02-20 23:15:10 +00:00
"Vector of keys representing the name of currently running Viper kbd macro.")
1997-08-02 07:40:22 +00:00
(defvar viper-last-kbd-macro nil
1995-02-20 23:15:10 +00:00
"Vector of keys representing the name of last Viper keyboard macro.")
1997-08-02 07:40:22 +00:00
(defcustom viper-repeat-from-history-key 'f12
1997-07-17 19:37:07 +00:00
"Prefix key for accessing previously typed Vi commands.
1995-02-20 23:15:10 +00:00
1999-11-01 07:16:15 +00:00
The previous command is accessible, as usual, via `.'. The command before this
1997-07-17 19:37:07 +00:00
can be invoked as `<this key> 1', and the command before that, and the command
before that one is accessible as `<this key> 2'.
1999-11-01 07:16:15 +00:00
The notation for these keys is borrowed from XEmacs. Basically,
1995-02-20 23:15:10 +00:00
a key is a symbol, e.g., `a', `\\1', `f2', etc., or a list, e.g.,
1997-07-17 19:37:07 +00:00
`(meta control f1)'."
:type 'sexp
1997-07-17 19:37:07 +00:00
:group 'viper)
1995-02-20 23:15:10 +00:00
;;; Code
;; Ex map command
1995-02-20 23:15:10 +00:00
(defun ex-map ()
(let ((mod-char "")
macro-name macro-body map-args ins)
(save-window-excursion
1997-08-02 07:40:22 +00:00
(set-buffer viper-ex-work-buf)
1995-02-20 23:15:10 +00:00
(if (looking-at "!")
(progn
(setq ins t
mod-char "!")
(forward-char 1))))
(setq map-args (ex-map-read-args mod-char)
macro-name (car map-args)
macro-body (cdr map-args))
1997-08-02 07:40:22 +00:00
(setq viper-kbd-macro-parameters (list ins mod-char macro-name macro-body))
1995-02-20 23:15:10 +00:00
(if macro-body
1997-08-02 07:40:22 +00:00
(viper-end-mapping-kbd-macro 'ignore)
1995-02-20 23:15:10 +00:00
(ex-fixup-history (format "map%s %S" mod-char
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)))
1995-02-20 23:15:10 +00:00
;; if defining macro for insert, switch there for authentic WYSIWYG
1997-08-02 07:40:22 +00:00
(if ins (viper-change-state-to-insert))
1995-02-20 23:15:10 +00:00
(start-kbd-macro nil)
1997-08-02 07:40:22 +00:00
(define-key viper-vi-intercept-map "\C-x)" 'viper-end-mapping-kbd-macro)
(define-key viper-insert-intercept-map "\C-x)" 'viper-end-mapping-kbd-macro)
(define-key viper-emacs-intercept-map "\C-x)" 'viper-end-mapping-kbd-macro)
(message "Mapping %S in %s state. Type macro definition followed by `C-x )'"
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
1995-02-20 23:15:10 +00:00
(if ins "Insert" "Vi")))
))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; Ex unmap
1995-02-20 23:15:10 +00:00
(defun ex-unmap ()
(let ((mod-char "")
temp macro-name ins)
(save-window-excursion
1997-08-02 07:40:22 +00:00
(set-buffer viper-ex-work-buf)
1995-02-20 23:15:10 +00:00
(if (looking-at "!")
(progn
(setq ins t
mod-char "!")
(forward-char 1))))
(setq macro-name (ex-unmap-read-args mod-char))
1997-08-02 07:40:22 +00:00
(setq temp (viper-fixup-macro (vconcat macro-name))) ;; copy and fixup
1995-02-20 23:15:10 +00:00
(ex-fixup-history (format "unmap%s %S" mod-char
1997-08-02 07:40:22 +00:00
(viper-display-macro temp)))
(viper-unrecord-kbd-macro macro-name (if ins 'insert-state 'vi-state))
1995-02-20 23:15:10 +00:00
))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; read arguments for ex-map
(defun ex-map-read-args (variant)
(let ((cursor-in-echo-area t)
(key-seq [])
temp key event message
macro-name macro-body args)
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(condition-case nil
(setq args (concat (ex-get-inline-cmd-args ".*map[!]*[ \t]?" "\n\C-m")
" nil nil ")
temp (read-from-string args)
macro-name (car temp)
macro-body (car (read-from-string args (cdr temp))))
(error
(signal
2003-02-04 13:24:35 +00:00
'error
1995-02-20 23:15:10 +00:00
'("map: Macro name and body must be a quoted string or a vector"))))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; We expect macro-name to be a vector, a string, or a quoted string.
;; In the second case, it will emerge as a symbol when read from
1999-11-01 07:16:15 +00:00
;; the above read-from-string. So we need to convert it into a string
1995-02-20 23:15:10 +00:00
(if macro-name
(cond ((vectorp macro-name) nil)
2003-02-04 13:24:35 +00:00
((stringp macro-name)
1995-02-20 23:15:10 +00:00
(setq macro-name (vconcat macro-name)))
(t (setq macro-name (vconcat (prin1-to-string macro-name)))))
(message ":map%s <Macro Name>" variant)(sit-for 2)
1995-02-20 23:15:10 +00:00
(while
(not (member key
'(?\C-m ?\n (control m) (control j) return linefeed)))
(setq key-seq (vconcat key-seq (if key (vector key) [])))
;; the only keys available for editing are these-- no help while there
(if (member
key
'(?\b ?\d '^? '^H (control h) (control \?) backspace delete))
(setq key-seq (viper-subseq key-seq 0 (- (length key-seq) 2))))
1995-02-20 23:15:10 +00:00
(setq message
(format
":map%s %s"
variant (if (> (length key-seq) 0)
1997-08-02 07:40:22 +00:00
(prin1-to-string (viper-display-macro key-seq))
"")))
2005-09-18 12:39:40 +00:00
(message "%s" message)
1997-08-02 07:40:22 +00:00
(setq event (viper-read-key))
;;(setq event (viper-read-event))
1995-02-20 23:15:10 +00:00
(setq key
1997-08-02 07:40:22 +00:00
(if (viper-mouse-event-p event)
1995-02-20 23:15:10 +00:00
(progn
(message "%s (No mouse---only keyboard keys, please)"
message)
(sit-for 2)
nil)
1997-08-02 07:40:22 +00:00
(viper-event-key event)))
1995-02-20 23:15:10 +00:00
)
(setq macro-name key-seq))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(if (= (length macro-name) 0)
(error "Can't map an empty macro name"))
1997-08-02 07:40:22 +00:00
(setq macro-name (viper-fixup-macro macro-name))
(if (viper-char-array-p macro-name)
(setq macro-name (viper-char-array-to-macro macro-name)))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(if macro-body
1997-08-02 07:40:22 +00:00
(cond ((viper-char-array-p macro-body)
(setq macro-body (viper-char-array-to-macro macro-body)))
1995-02-20 23:15:10 +00:00
((vectorp macro-body) nil)
(t (error "map: Invalid syntax in macro definition"))))
(setq cursor-in-echo-area nil)(sit-for 0) ; this overcomes xemacs tty bug
(cons macro-name macro-body)))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; read arguments for ex-unmap
(defun ex-unmap-read-args (variant)
(let ((cursor-in-echo-area t)
(macro-alist (if (string= variant "!")
1997-08-02 07:40:22 +00:00
viper-insert-kbd-macro-alist
viper-vi-kbd-macro-alist))
1995-02-20 23:15:10 +00:00
;; these are disabled just in case, to avoid surprises when doing
;; completing-read
1997-08-02 07:40:22 +00:00
viper-vi-kbd-minor-mode viper-insert-kbd-minor-mode
viper-emacs-kbd-minor-mode
viper-vi-intercept-minor-mode viper-insert-intercept-minor-mode
viper-emacs-intercept-minor-mode
1995-02-20 23:15:10 +00:00
event message
key key-seq macro-name)
(setq macro-name (ex-get-inline-cmd-args ".*unma?p?[!]*[ \t]*"))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(if (> (length macro-name) 0)
()
(message ":unmap%s <Name>" variant) (sit-for 2)
(while
(not
(member key '(?\C-m ?\n (control m) (control j) return linefeed)))
(setq key-seq (vconcat key-seq (if key (vector key) [])))
;; the only keys available for editing are these-- no help while there
(cond ((member
key
'(?\b ?\d '^? '^H (control h) (control \?) backspace delete))
(setq key-seq (viper-subseq key-seq 0 (- (length key-seq) 2))))
1995-02-20 23:15:10 +00:00
((member key '(tab (control i) ?\t))
(setq key-seq (viper-subseq key-seq 0 (1- (length key-seq))))
2003-02-04 13:24:35 +00:00
(setq message
(format
":unmap%s %s"
variant (if (> (length key-seq) 0)
(prin1-to-string
1997-08-02 07:40:22 +00:00
(viper-display-macro key-seq))
"")))
1995-02-20 23:15:10 +00:00
(setq key-seq
1997-08-02 07:40:22 +00:00
(viper-do-sequence-completion key-seq macro-alist message))
1995-02-20 23:15:10 +00:00
))
2003-02-04 13:24:35 +00:00
(setq message
(format
":unmap%s %s"
variant (if (> (length key-seq) 0)
(prin1-to-string
1997-08-02 07:40:22 +00:00
(viper-display-macro key-seq))
"")))
2005-09-18 12:39:40 +00:00
(message "%s" message)
1997-08-02 07:40:22 +00:00
(setq event (viper-read-key))
;;(setq event (viper-read-event))
1995-02-20 23:15:10 +00:00
(setq key
1997-08-02 07:40:22 +00:00
(if (viper-mouse-event-p event)
1995-02-20 23:15:10 +00:00
(progn
(message "%s (No mouse---only keyboard keys, please)"
message)
(sit-for 2)
nil)
1997-08-02 07:40:22 +00:00
(viper-event-key event)))
1995-02-20 23:15:10 +00:00
)
(setq macro-name key-seq))
(if (= (length macro-name) 0)
(error "Can't unmap an empty macro name"))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; convert macro names into vector, if starts with a `['
(if (memq (elt macro-name 0) '(?\[ ?\"))
(car (read-from-string macro-name))
(vconcat macro-name))
))
2003-02-04 13:24:35 +00:00
;; Terminate a Vi kbd macro.
;; optional argument IGNORE, if t, indicates that we are dealing with an
;; existing macro that needs to be registered, but there is no need to
;; terminate a kbd macro.
1997-08-02 07:40:22 +00:00
(defun viper-end-mapping-kbd-macro (&optional ignore)
1995-02-20 23:15:10 +00:00
(interactive)
1997-08-02 07:40:22 +00:00
(define-key viper-vi-intercept-map "\C-x)" nil)
(define-key viper-insert-intercept-map "\C-x)" nil)
(define-key viper-emacs-intercept-map "\C-x)" nil)
1995-02-20 23:15:10 +00:00
(if (and (not ignore)
1997-08-02 07:40:22 +00:00
(or (not viper-kbd-macro-parameters)
1995-02-20 23:15:10 +00:00
(not defining-kbd-macro)))
(error "Not mapping a kbd-macro"))
1997-08-02 07:40:22 +00:00
(let ((mod-char (nth 1 viper-kbd-macro-parameters))
(ins (nth 0 viper-kbd-macro-parameters))
(macro-name (nth 2 viper-kbd-macro-parameters))
(macro-body (nth 3 viper-kbd-macro-parameters)))
(setq viper-kbd-macro-parameters nil)
1995-02-20 23:15:10 +00:00
(or ignore
(progn
(end-kbd-macro nil)
1997-08-02 07:40:22 +00:00
(setq macro-body (viper-events-to-macro last-kbd-macro))
1995-02-20 23:15:10 +00:00
;; always go back to Vi, since this is where we started
;; defining macro
1997-08-02 07:40:22 +00:00
(viper-change-state-to-vi)))
2003-02-04 13:24:35 +00:00
1997-08-02 07:40:22 +00:00
(viper-record-kbd-macro macro-name
1995-02-20 23:15:10 +00:00
(if ins 'insert-state 'vi-state)
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-body))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(ex-fixup-history (format "map%s %S %S" mod-char
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
(viper-display-macro macro-body)))
1995-02-20 23:15:10 +00:00
))
;;; Recording, unrecording, executing
1999-11-01 07:16:15 +00:00
;; Accepts as macro names: strings and vectors.
1995-02-20 23:15:10 +00:00
;; strings must be strings of characters; vectors must be vectors of keys
1999-11-01 07:16:15 +00:00
;; in canonic form. The canonic form is essentially the form used in XEmacs
;; More general definitions are inherited by more specific scopes:
;; global->major mode->buffer. More specific definitions override more general
1997-08-02 07:40:22 +00:00
(defun viper-record-kbd-macro (macro-name state macro-body &optional scope)
1999-11-01 07:16:15 +00:00
"Record a Vi macro. Can be used in `.viper' file to define permanent macros.
MACRO-NAME is a string of characters or a vector of keys. STATE is
either `vi-state' or `insert-state'. It specifies the Viper state in which to
define the macro. MACRO-BODY is a string that represents the keyboard macro.
1995-02-20 23:15:10 +00:00
Optional SCOPE says whether the macro should be global \(t\), mode-specific
\(a major-mode symbol\), or buffer-specific \(buffer name, a string\).
If SCOPE is nil, the user is asked to specify the scope."
2003-02-04 13:24:35 +00:00
(let* (state-name keymap
1995-02-20 23:15:10 +00:00
(macro-alist-var
(cond ((eq state 'vi-state)
(setq state-name "Vi state"
1997-08-02 07:40:22 +00:00
keymap viper-vi-kbd-map)
'viper-vi-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
((memq state '(insert-state replace-state))
(setq state-name "Insert state"
1997-08-02 07:40:22 +00:00
keymap viper-insert-kbd-map)
'viper-insert-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
(t
(setq state-name "Emacs state"
1997-08-02 07:40:22 +00:00
keymap viper-emacs-kbd-map)
'viper-emacs-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
))
new-elt old-elt old-sub-elt msg
temp lis lis2)
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(if (= (length macro-name) 0)
(error "Can't map an empty macro name"))
2003-02-04 13:24:35 +00:00
1999-11-01 07:16:15 +00:00
;; Macro-name is usually a vector. However, command history or macros
;; recorded in ~/.viper may be recorded as strings. So, convert to
2003-02-04 13:24:35 +00:00
;; vectors.
1997-08-02 07:40:22 +00:00
(setq macro-name (viper-fixup-macro macro-name))
(if (viper-char-array-p macro-name)
(setq macro-name (viper-char-array-to-macro macro-name)))
(setq macro-body (viper-fixup-macro macro-body))
(if (viper-char-array-p macro-body)
(setq macro-body (viper-char-array-to-macro macro-body)))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; don't ask if scope is given and is of the right type
(or (eq scope t)
(stringp scope)
(and scope (symbolp scope))
(progn
(setq scope
(cond
((y-or-n-p
(format
"Map this macro for buffer `%s' only? "
(buffer-name)))
(setq msg
(format
"%S is mapped to %s for %s in `%s'"
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
(viper-abbreviate-string
1995-02-20 23:15:10 +00:00
(format
"%S"
1997-08-02 07:40:22 +00:00
(setq temp (viper-display-macro macro-body)))
1995-02-20 23:15:10 +00:00
14 "" ""
(if (stringp temp) " ....\"" " ....]"))
state-name (buffer-name)))
(buffer-name))
((y-or-n-p
(format
"Map this macro for the major mode `%S' only? "
major-mode))
(setq msg
(format
"%S is mapped to %s for %s in `%S'"
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
(viper-abbreviate-string
1995-02-20 23:15:10 +00:00
(format
"%S"
1997-08-02 07:40:22 +00:00
(setq temp (viper-display-macro macro-body)))
1995-02-20 23:15:10 +00:00
14 "" ""
(if (stringp macro-body) " ....\"" " ....]"))
state-name major-mode))
major-mode)
(t
(setq msg
(format
"%S is globally mapped to %s in %s"
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
(viper-abbreviate-string
1995-02-20 23:15:10 +00:00
(format
"%S"
1997-08-02 07:40:22 +00:00
(setq temp (viper-display-macro macro-body)))
1995-02-20 23:15:10 +00:00
14 "" ""
(if (stringp macro-body) " ....\"" " ....]"))
state-name))
t)))
1996-02-16 04:49:12 +00:00
(if (y-or-n-p
(format "Save this macro in %s? "
1997-08-02 07:40:22 +00:00
(viper-abbreviate-file-name viper-custom-file-name)))
2003-02-04 13:24:35 +00:00
(viper-save-string-in-file
1997-08-02 07:40:22 +00:00
(format "\n(viper-record-kbd-macro %S '%S %s '%S)"
(viper-display-macro macro-name)
state
;; if we don't let vector macro-body through %S,
;; the symbols `\.' `\[' etc will be converted into
;; characters, causing invalid read error on recorded
1997-08-02 07:40:22 +00:00
;; macros in .viper.
;; I am not sure is macro-body can still be a string at
;; this point, but I am preserving this option anyway.
(if (vectorp macro-body)
(format "%S" macro-body)
macro-body)
2003-02-04 13:24:35 +00:00
scope)
1997-08-02 07:40:22 +00:00
viper-custom-file-name))
2003-02-04 13:24:35 +00:00
2005-09-18 12:39:40 +00:00
(message "%s" msg)
1995-02-20 23:15:10 +00:00
))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(setq new-elt
(cons macro-name
(cond ((eq scope t) (list nil nil (cons t nil)))
((symbolp scope)
(list nil (list (cons scope nil)) (cons t nil)))
((stringp scope)
(list (list (cons scope nil)) nil (cons t nil))))))
(setq old-elt (assoc macro-name (eval macro-alist-var)))
(if (null old-elt)
(progn
;; insert new-elt in macro-alist-var and keep the list sorted
(define-key
keymap
(vector (viper-key-to-emacs-key (aref macro-name 0)))
'viper-exec-mapped-kbd-macro)
(setq lis (eval macro-alist-var))
(while (and lis (string< (viper-array-to-string (car (car lis)))
(viper-array-to-string macro-name)))
(setq lis2 (cons (car lis) lis2))
(setq lis (cdr lis)))
(setq lis2 (reverse lis2))
(set macro-alist-var (append lis2 (cons new-elt lis)))
(setq old-elt new-elt)))
1995-02-20 23:15:10 +00:00
(setq old-sub-elt
1997-08-02 07:40:22 +00:00
(cond ((eq scope t) (viper-kbd-global-pair old-elt))
((symbolp scope) (assoc scope (viper-kbd-mode-alist old-elt)))
((stringp scope) (assoc scope (viper-kbd-buf-alist old-elt)))))
2003-02-04 13:24:35 +00:00
(if old-sub-elt
1995-02-20 23:15:10 +00:00
(setcdr old-sub-elt macro-body)
(cond ((symbolp scope) (setcar (cdr (cdr old-elt))
(cons (cons scope macro-body)
1997-08-02 07:40:22 +00:00
(viper-kbd-mode-alist old-elt))))
1995-02-20 23:15:10 +00:00
((stringp scope) (setcar (cdr old-elt)
(cons (cons scope macro-body)
1997-08-02 07:40:22 +00:00
(viper-kbd-buf-alist old-elt))))))
1995-02-20 23:15:10 +00:00
))
2003-02-04 13:24:35 +00:00
1997-08-02 07:40:22 +00:00
;; macro name must be a vector of viper-style keys
;; viper-unrecord-kbd-macro doesn't have scope. Macro definitions are inherited
;; from global -> major mode -> buffer
;; More specific definition overrides more general
;; Can't unrecord definition for more specific, if a more general definition is
;; in effect
1997-08-02 07:40:22 +00:00
(defun viper-unrecord-kbd-macro (macro-name state)
"Delete macro MACRO-NAME from Viper STATE.
1999-11-01 07:16:15 +00:00
MACRO-NAME must be a vector of viper-style keys. This command is used by Viper
1997-08-02 07:40:22 +00:00
internally, but the user can also use it in ~/.viper to delete pre-defined
1999-11-01 07:16:15 +00:00
macros supplied with Viper. The best way to avoid mistakes in macro names to
be passed to this function is to use viper-describe-kbd-macros and copy the
name from there."
2003-02-04 13:24:35 +00:00
(let* (state-name keymap
1995-02-20 23:15:10 +00:00
(macro-alist-var
(cond ((eq state 'vi-state)
(setq state-name "Vi state"
1997-08-02 07:40:22 +00:00
keymap viper-vi-kbd-map)
'viper-vi-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
((memq state '(insert-state replace-state))
(setq state-name "Insert state"
1997-08-02 07:40:22 +00:00
keymap viper-insert-kbd-map)
'viper-insert-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
(t
(setq state-name "Emacs state"
1997-08-02 07:40:22 +00:00
keymap viper-emacs-kbd-map)
'viper-emacs-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
))
buf-mapping mode-mapping global-mapping
macro-pair macro-entry)
2003-02-04 13:24:35 +00:00
1999-11-01 07:16:15 +00:00
;; Macro-name is usually a vector. However, command history or macros
;; recorded in ~/.viper may appear as strings. So, convert to vectors.
1997-08-02 07:40:22 +00:00
(setq macro-name (viper-fixup-macro macro-name))
(if (viper-char-array-p macro-name)
(setq macro-name (viper-char-array-to-macro macro-name)))
1995-02-20 23:15:10 +00:00
(setq macro-entry (assoc macro-name (eval macro-alist-var)))
(if (= (length macro-name) 0)
(error "Can't unmap an empty macro name"))
(if (null macro-entry)
(error "%S is not mapped to a macro for %s in `%s'"
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
1995-02-20 23:15:10 +00:00
state-name (buffer-name)))
2003-02-04 13:24:35 +00:00
1997-08-02 07:40:22 +00:00
(setq buf-mapping (viper-kbd-buf-pair macro-entry)
mode-mapping (viper-kbd-mode-pair macro-entry)
global-mapping (viper-kbd-global-pair macro-entry))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(cond ((and (cdr buf-mapping)
(or (and (not (cdr mode-mapping)) (not (cdr global-mapping)))
(y-or-n-p
(format "Unmap %S for `%s' only? "
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
1995-02-20 23:15:10 +00:00
(buffer-name)))))
(setq macro-pair buf-mapping)
2003-02-04 13:24:35 +00:00
(message "%S is unmapped for %s in `%s'"
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
1995-02-20 23:15:10 +00:00
state-name (buffer-name)))
((and (cdr mode-mapping)
(or (not (cdr global-mapping))
(y-or-n-p
(format "Unmap %S for the major mode `%S' only? "
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
1995-02-20 23:15:10 +00:00
major-mode))))
(setq macro-pair mode-mapping)
(message "%S is unmapped for %s in %S"
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name) state-name major-mode))
((cdr (setq macro-pair global-mapping))
1995-02-20 23:15:10 +00:00
(message
1997-07-17 19:37:07 +00:00
"Global mapping for %S in %s is removed"
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name) state-name))
1995-02-20 23:15:10 +00:00
(t (error "%S is not mapped to a macro for %s in `%s'"
1997-08-02 07:40:22 +00:00
(viper-display-macro macro-name)
1995-02-20 23:15:10 +00:00
state-name (buffer-name))))
(setcdr macro-pair nil)
(or (cdr buf-mapping)
(cdr mode-mapping)
(cdr global-mapping)
(progn
(set macro-alist-var (delq macro-entry (eval macro-alist-var)))
2003-02-04 13:24:35 +00:00
(if (viper-can-release-key (aref macro-name 0)
(eval macro-alist-var))
1995-02-20 23:15:10 +00:00
(define-key
keymap
1997-08-02 07:40:22 +00:00
(vector (viper-key-to-emacs-key (aref macro-name 0)))
1995-02-20 23:15:10 +00:00
nil))
))
))
2003-02-04 13:24:35 +00:00
;; Check if MACRO-ALIST has an entry for a macro name starting with
1999-11-01 07:16:15 +00:00
;; CHAR. If not, this indicates that the binding for this char
1997-08-02 07:40:22 +00:00
;; in viper-vi/insert-kbd-map can be released.
(defun viper-can-release-key (char macro-alist)
1995-02-20 23:15:10 +00:00
(let ((lis macro-alist)
(can-release t)
macro-name)
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(while (and lis can-release)
(setq macro-name (car (car lis)))
(if (eq char (aref macro-name 0))
(setq can-release nil))
(setq lis (cdr lis)))
can-release))
1997-08-02 07:40:22 +00:00
(defun viper-exec-mapped-kbd-macro (count)
1995-02-20 23:15:10 +00:00
"Dispatch kbd macro."
(interactive "P")
1997-08-02 07:40:22 +00:00
(let* ((macro-alist (cond ((eq viper-current-state 'vi-state)
viper-vi-kbd-macro-alist)
((memq viper-current-state
1995-02-20 23:15:10 +00:00
'(insert-state replace-state))
1997-08-02 07:40:22 +00:00
viper-insert-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
(t
1997-08-02 07:40:22 +00:00
viper-emacs-kbd-macro-alist)))
1995-02-20 23:15:10 +00:00
(unmatched-suffix "")
;; Macros and keys are executed with other macros turned off
;; For macros, this is done to avoid macro recursion
1997-08-02 07:40:22 +00:00
viper-vi-kbd-minor-mode viper-insert-kbd-minor-mode
viper-emacs-kbd-minor-mode
1995-02-20 23:15:10 +00:00
next-best-match keyseq event-seq
macro-first-char macro-alist-elt macro-body
command)
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(setq macro-first-char last-command-event
1997-08-02 07:40:22 +00:00
event-seq (viper-read-fast-keysequence macro-first-char macro-alist)
keyseq (viper-events-to-macro event-seq)
1995-02-20 23:15:10 +00:00
macro-alist-elt (assoc keyseq macro-alist)
1997-08-02 07:40:22 +00:00
next-best-match (viper-find-best-matching-macro macro-alist keyseq))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(if (null macro-alist-elt)
(setq macro-alist-elt (car next-best-match)
unmatched-suffix (viper-subseq event-seq (cdr next-best-match))))
1995-02-20 23:15:10 +00:00
(cond ((null macro-alist-elt))
1997-08-02 07:40:22 +00:00
((setq macro-body (viper-kbd-buf-definition macro-alist-elt)))
((setq macro-body (viper-kbd-mode-definition macro-alist-elt)))
((setq macro-body (viper-kbd-global-definition macro-alist-elt))))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; when defining keyboard macro, don't use the macro mappings
(if (and macro-body (not defining-kbd-macro))
;; block cmd executed as part of a macro from entering command history
(let ((command-history command-history))
1997-08-02 07:40:22 +00:00
(setq viper-this-kbd-macro (car macro-alist-elt))
(execute-kbd-macro (viper-macro-to-events macro-body) count)
(setq viper-this-kbd-macro nil
viper-last-kbd-macro (car macro-alist-elt))
(viper-set-unread-command-events unmatched-suffix))
1995-02-20 23:15:10 +00:00
;; If not a macro, or the macro is suppressed while defining another
;; macro, put keyseq back on the event queue
1997-08-02 07:40:22 +00:00
(viper-set-unread-command-events event-seq)
1995-02-20 23:15:10 +00:00
;; if the user typed arg, then use it if prefix arg is not set by
;; some other command (setting prefix arg can happen if we do, say,
1999-11-01 07:16:15 +00:00
;; 2dw and there is a macro starting with 2. Then control will go to
1995-02-20 23:15:10 +00:00
;; this routine
2003-02-04 13:24:35 +00:00
(or prefix-arg (setq prefix-arg count))
1995-02-20 23:15:10 +00:00
(setq command (key-binding (read-key-sequence nil)))
(if (commandp command)
(command-execute command)
(beep 1)))
))
;;; Displaying and completing macros
2003-02-04 13:24:35 +00:00
1997-08-02 07:40:22 +00:00
(defun viper-describe-kbd-macros ()
1995-02-20 23:15:10 +00:00
"Show currently defined keyboard macros."
(interactive)
1997-08-02 07:40:22 +00:00
(with-output-to-temp-buffer " *viper-info*"
1995-02-20 23:15:10 +00:00
(princ "Macros in Vi state:\n===================\n")
1997-08-02 07:40:22 +00:00
(mapcar 'viper-describe-one-macro viper-vi-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
(princ "\n\nMacros in Insert and Replace states:\n====================================\n")
1997-08-02 07:40:22 +00:00
(mapcar 'viper-describe-one-macro viper-insert-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
(princ "\n\nMacros in Emacs state:\n======================\n")
1997-08-02 07:40:22 +00:00
(mapcar 'viper-describe-one-macro viper-emacs-kbd-macro-alist)
1995-02-20 23:15:10 +00:00
))
2003-02-04 13:24:35 +00:00
1997-08-02 07:40:22 +00:00
(defun viper-describe-one-macro (macro)
1995-02-20 23:15:10 +00:00
(princ (format "\n *** Mappings for %S:\n ------------\n"
1997-08-02 07:40:22 +00:00
(viper-display-macro (car macro))))
1995-02-20 23:15:10 +00:00
(princ " ** Buffer-specific:")
1997-08-02 07:40:22 +00:00
(if (viper-kbd-buf-alist macro)
(mapcar 'viper-describe-one-macro-elt (viper-kbd-buf-alist macro))
1995-02-20 23:15:10 +00:00
(princ " none\n"))
(princ "\n ** Mode-specific:")
1997-08-02 07:40:22 +00:00
(if (viper-kbd-mode-alist macro)
(mapcar 'viper-describe-one-macro-elt (viper-kbd-mode-alist macro))
1995-02-20 23:15:10 +00:00
(princ " none\n"))
(princ "\n ** Global:")
1997-08-02 07:40:22 +00:00
(if (viper-kbd-global-definition macro)
(princ (format "\n %S" (cdr (viper-kbd-global-pair macro))))
1995-02-20 23:15:10 +00:00
(princ " none"))
(princ "\n"))
2003-02-04 13:24:35 +00:00
1997-08-02 07:40:22 +00:00
(defun viper-describe-one-macro-elt (elt)
1995-02-20 23:15:10 +00:00
(let ((name (car elt))
(defn (cdr elt)))
(princ (format "\n * %S:\n %S\n" name defn))))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; check if SEQ is a prefix of some car of an element in ALIST
1997-08-02 07:40:22 +00:00
(defun viper-keyseq-is-a-possible-macro (seq alist)
(let ((converted-seq (viper-events-to-macro seq)))
2003-02-04 13:24:35 +00:00
(eval (cons 'or
1995-02-20 23:15:10 +00:00
(mapcar
1999-11-01 07:16:15 +00:00
(lambda (elt) (viper-prefix-subseq-p converted-seq elt))
1997-08-02 07:40:22 +00:00
(viper-this-buffer-macros alist))))))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; whether SEQ1 is a prefix of SEQ2
1997-08-02 07:40:22 +00:00
(defun viper-prefix-subseq-p (seq1 seq2)
1995-02-20 23:15:10 +00:00
(let ((len1 (length seq1))
(len2 (length seq2)))
(if (<= len1 len2)
(equal seq1 (viper-subseq seq2 0 len1)))))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; find the longest common prefix
1997-08-02 07:40:22 +00:00
(defun viper-common-seq-prefix (&rest seqs)
1995-02-20 23:15:10 +00:00
(let* ((first (car seqs))
(rest (cdr seqs))
(pref [])
(idx 0)
len)
(if (= (length seqs) 0)
(setq len 0)
(setq len (apply 'min (mapcar 'length seqs))))
(while (< idx len)
2003-02-04 13:24:35 +00:00
(if (eval (cons 'and
1999-11-01 07:16:15 +00:00
(mapcar (lambda (s) (equal (elt first idx) (elt s idx)))
1995-02-20 23:15:10 +00:00
rest)))
(setq pref (vconcat pref (vector (elt first idx)))))
(setq idx (1+ idx)))
pref))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; get all sequences that match PREFIX from a given A-LIST
1997-08-02 07:40:22 +00:00
(defun viper-extract-matching-alist-members (pref alist)
1999-11-01 07:16:15 +00:00
(delq nil (mapcar (lambda (elt) (if (viper-prefix-subseq-p pref elt) elt))
1997-08-02 07:40:22 +00:00
(viper-this-buffer-macros alist))))
2003-02-04 13:24:35 +00:00
1997-08-02 07:40:22 +00:00
(defun viper-do-sequence-completion (seq alist compl-message)
(let* ((matches (viper-extract-matching-alist-members seq alist))
(new-seq (apply 'viper-common-seq-prefix matches))
1995-02-20 23:15:10 +00:00
)
(cond ((and (equal seq new-seq) (= (length matches) 1))
(message "%s (Sole completion)" compl-message)
(sit-for 2))
2003-02-04 13:24:35 +00:00
((null matches)
1995-02-20 23:15:10 +00:00
(message "%s (No match)" compl-message)
(sit-for 2)
(setq new-seq seq))
2003-02-04 13:24:35 +00:00
((member seq matches)
1995-02-20 23:15:10 +00:00
(message "%s (Complete, but not unique)" compl-message)
(sit-for 2)
1997-08-02 07:40:22 +00:00
(viper-display-vector-completions matches))
1995-02-20 23:15:10 +00:00
((equal seq new-seq)
1997-08-02 07:40:22 +00:00
(viper-display-vector-completions matches)))
1995-02-20 23:15:10 +00:00
new-seq))
2003-02-04 13:24:35 +00:00
1997-08-02 07:40:22 +00:00
(defun viper-display-vector-completions (list)
1995-02-20 23:15:10 +00:00
(with-output-to-temp-buffer "*Completions*"
2003-02-04 13:24:35 +00:00
(display-completion-list
1995-02-20 23:15:10 +00:00
(mapcar 'prin1-to-string
1997-08-02 07:40:22 +00:00
(mapcar 'viper-display-macro list)))))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; alist is the alist of macros
;; str is the fast key sequence entered
;; returns: (matching-macro-def . unmatched-suffix-start-index)
1997-08-02 07:40:22 +00:00
(defun viper-find-best-matching-macro (alist str)
1995-02-20 23:15:10 +00:00
(let ((lis alist)
(def-len 0)
(str-len (length str))
match unmatched-start-idx found macro-def)
(while (and (not found) lis)
(setq macro-def (car lis)
def-len (length (car macro-def)))
(if (and (>= str-len def-len)
(equal (car macro-def) (viper-subseq str 0 def-len)))
1997-08-02 07:40:22 +00:00
(if (or (viper-kbd-buf-definition macro-def)
(viper-kbd-mode-definition macro-def)
(viper-kbd-global-definition macro-def))
1995-02-20 23:15:10 +00:00
(setq found t))
)
(setq lis (cdr lis)))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(if found
(setq match macro-def
unmatched-start-idx def-len)
(setq match nil
unmatched-start-idx 0))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(cons match unmatched-start-idx)))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; returns a list of names of macros defined for the current buffer
1997-08-02 07:40:22 +00:00
(defun viper-this-buffer-macros (macro-alist)
1995-02-20 23:15:10 +00:00
(let (candidates)
(setq candidates
1999-11-01 07:16:15 +00:00
(mapcar (lambda (elt)
(if (or (viper-kbd-buf-definition elt)
(viper-kbd-mode-definition elt)
(viper-kbd-global-definition elt))
(car elt)))
1995-02-20 23:15:10 +00:00
macro-alist))
(setq candidates (delq nil candidates))))
2003-02-04 13:24:35 +00:00
;; if seq of Viper key symbols (representing a macro) can be converted to a
1999-11-01 07:16:15 +00:00
;; string--do so. Otherwise, do nothing.
1997-08-02 07:40:22 +00:00
(defun viper-display-macro (macro-name-or-body)
(cond ((viper-char-symbol-sequence-p macro-name-or-body)
(mapconcat 'symbol-name macro-name-or-body ""))
1997-08-02 07:40:22 +00:00
((viper-char-array-p macro-name-or-body)
(mapconcat 'char-to-string macro-name-or-body ""))
(t macro-name-or-body)))
2003-02-04 13:24:35 +00:00
;; convert sequence of events (that came presumably from emacs kbd macro) into
;; Viper's macro, which is a vector of the form
;; [ desc desc ... ]
;; Each desc is either a symbol of (meta symb), (shift symb), etc.
1999-11-01 07:16:15 +00:00
;; Here we purge events that happen to be lists. In most cases, these events
;; got into a macro definition unintentionally; say, when the user moves mouse
;; during a macro definition, then something like (switch-frame ...) might get
1999-11-01 07:16:15 +00:00
;; in. Another reason for purging lists-events is that we can't store them in
;; textual form (say, in .emacs) and then read them back.
1997-08-02 07:40:22 +00:00
(defun viper-events-to-macro (event-seq)
1999-11-01 07:16:15 +00:00
(vconcat (delq nil (mapcar (lambda (elt) (if (consp elt)
nil
(viper-event-key elt)))
event-seq))))
2003-02-04 13:24:35 +00:00
;; convert strings or arrays of characters to Viper macro form
1997-08-02 07:40:22 +00:00
(defun viper-char-array-to-macro (array)
1995-02-20 23:15:10 +00:00
(let ((vec (vconcat array))
macro)
1997-08-02 07:40:22 +00:00
(if viper-xemacs-p
1995-02-20 23:15:10 +00:00
(setq macro (mapcar 'character-to-event vec))
(setq macro vec))
1997-08-02 07:40:22 +00:00
(vconcat (mapcar 'viper-event-key macro))))
2003-02-04 13:24:35 +00:00
;; For macros bodies and names, goes over MACRO and checks if all members are
1995-02-20 23:15:10 +00:00
;; names of keys (actually, it only checks if they are symbols or lists
;; if a digit is found, it is converted into a symbol (e.g., 0 -> \0, etc).
;; If MACRO is not a list or vector -- doesn't change MACRO.
1997-08-02 07:40:22 +00:00
(defun viper-fixup-macro (macro)
1995-02-20 23:15:10 +00:00
(let ((len (length macro))
(idx 0)
elt break)
(if (or (vectorp macro) (listp macro))
(while (and (< idx len) (not break))
(setq elt (elt macro idx))
(cond ((numberp elt)
;; fix number
(if (and (<= 0 elt) (<= elt 9))
(cond ((arrayp macro)
(aset macro
idx
(intern (char-to-string (+ ?0 elt)))))
((listp macro)
(setcar (nthcdr idx macro)
(intern (char-to-string (+ ?0 elt)))))
)))
((listp elt)
1997-08-02 07:40:22 +00:00
(viper-fixup-macro elt))
1995-02-20 23:15:10 +00:00
((symbolp elt) nil)
(t (setq break t)))
(setq idx (1+ idx))))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
(if break
(error "Wrong type macro component, symbol-or-listp, %S" elt)
macro)))
2003-02-04 13:24:35 +00:00
1997-08-02 07:40:22 +00:00
(defun viper-macro-to-events (macro-body)
(vconcat (mapcar 'viper-key-to-emacs-key macro-body)))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;;; Reading fast key sequences
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
;; Assuming that CHAR was the first character in a fast succession of key
1999-11-01 07:16:15 +00:00
;; strokes, read the rest. Return the vector of keys that was entered in
1995-02-20 23:15:10 +00:00
;; this fast succession of key strokes.
;; A fast keysequence is one that is terminated by a pause longer than
1997-08-02 07:40:22 +00:00
;; viper-fast-keyseq-timeout.
(defun viper-read-fast-keysequence (event macro-alist)
1995-02-20 23:15:10 +00:00
(let ((lis (vector event))
next-event)
1997-08-02 07:40:22 +00:00
(while (and (viper-fast-keysequence-p)
(viper-keyseq-is-a-possible-macro lis macro-alist))
(setq next-event (viper-read-key))
;;(setq next-event (viper-read-event))
(or (viper-mouse-event-p next-event)
1995-02-20 23:15:10 +00:00
(setq lis (vconcat lis (vector next-event)))))
lis))
;;; Keyboard macros in registers
;; sets register to last-kbd-macro carefully.
1997-08-02 07:40:22 +00:00
(defun viper-set-register-macro (reg)
1995-02-20 23:15:10 +00:00
(if (get-register reg)
1999-11-01 07:16:15 +00:00
(if (y-or-n-p "Register contains data. Overwrite? ")
1995-02-20 23:15:10 +00:00
()
(error
1999-11-01 07:16:15 +00:00
"Macro not saved in register. Can still be invoked via `C-x e'")))
1995-02-20 23:15:10 +00:00
(set-register reg last-kbd-macro))
1997-08-02 07:40:22 +00:00
(defun viper-register-macro (count)
1995-02-20 23:15:10 +00:00
"Keyboard macros in registers - a modified \@ command."
(interactive "P")
(let ((reg (downcase (read-char))))
(cond ((or (and (<= ?a reg) (<= reg ?z)))
1997-08-02 07:40:22 +00:00
(setq viper-last-macro-reg reg)
1995-02-20 23:15:10 +00:00
(if defining-kbd-macro
(progn
(end-kbd-macro)
1997-08-02 07:40:22 +00:00
(viper-set-register-macro reg))
1995-02-20 23:15:10 +00:00
(execute-kbd-macro (get-register reg) count)))
((or (= ?@ reg) (= ?\^j reg) (= ?\^m reg))
2003-02-04 13:24:35 +00:00
(if viper-last-macro-reg
1995-02-20 23:15:10 +00:00
nil
(error "No previous kbd macro"))
1997-08-02 07:40:22 +00:00
(execute-kbd-macro (get-register viper-last-macro-reg) count))
1995-02-20 23:15:10 +00:00
((= ?\# reg)
(start-kbd-macro count))
((= ?! reg)
(setq reg (downcase (read-char)))
(if (or (and (<= ?a reg) (<= reg ?z)))
(progn
1997-08-02 07:40:22 +00:00
(setq viper-last-macro-reg reg)
(viper-set-register-macro reg))))
1995-02-20 23:15:10 +00:00
(t
1996-02-16 05:25:08 +00:00
(error "`%c': Unknown register" reg)))))
2003-02-04 13:24:35 +00:00
1995-02-20 23:15:10 +00:00
1997-08-02 07:40:22 +00:00
(defun viper-global-execute ()
1995-02-20 23:15:10 +00:00
"Call last keyboad macro for each line in the region."
(if (> (point) (mark t)) (exchange-point-and-mark))
(beginning-of-line)
(call-last-kbd-macro)
(while (< (point) (mark t))
(forward-line 1)
(beginning-of-line)
(call-last-kbd-macro)))
2003-09-01 15:45:59 +00:00
;;; arch-tag: ecd3cc5c-8cd0-4bbe-b2ec-7e75a4b7d0aa
;;; viper-macs.el ends here