annotate lisp/emulation/viper-cmd.el @ 19203:58c50205001d

new version
author Michael Kifer <kifer@cs.stonybrook.edu>
date Thu, 07 Aug 1997 04:48:48 +0000
parents dfbef8117c6a
children a3240ad2e954
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1 ;;; viper-cmd.el --- Vi command support for Viper
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2 ;; Copyright (C) 1997 Free Software Foundation, Inc.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
5 ;; Code
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
6
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
7 (provide 'viper-cmd)
18172
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
8 (require 'advice)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
9
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
10 ;; Compiler pacifier
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
11 (defvar viper-minibuffer-current-face)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
12 (defvar viper-minibuffer-insert-face)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
13 (defvar viper-minibuffer-vi-face)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
14 (defvar viper-minibuffer-emacs-face)
18289
3a43376db2be new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18172
diff changeset
15 (defvar viper-always)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
16 (defvar viper-mode-string)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
17 (defvar viper-custom-file-name)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
18 (defvar iso-accents-mode)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
19 (defvar zmacs-region-stays)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
20 (defvar mark-even-if-inactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
21
18172
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
22 ;; loading happens only in non-interactive compilation
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
23 ;; in order to spare non-viperized emacs from being viperized
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
24 (if noninteractive
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
25 (eval-when-compile
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
26 (let ((load-path (cons (expand-file-name ".") load-path)))
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
27 (or (featurep 'viper-util)
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
28 (load "viper-util.el" nil nil 'nosuffix))
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
29 (or (featurep 'viper-keym)
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
30 (load "viper-keym.el" nil nil 'nosuffix))
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
31 (or (featurep 'viper-mous)
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
32 (load "viper-mous.el" nil nil 'nosuffix))
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
33 (or (featurep 'viper-macs)
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
34 (load "viper-macs.el" nil nil 'nosuffix))
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
35 (or (featurep 'viper-ex)
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
36 (load "viper-ex.el" nil nil 'nosuffix))
e145ccc61a22 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18151
diff changeset
37 )))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
38 ;; end pacifier
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
39
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
40
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
41 (require 'viper-util)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
42 (require 'viper-keym)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
43 (require 'viper-mous)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
44 (require 'viper-macs)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
45 (require 'viper-ex)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
46
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
47
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
48
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
49 ;; Generic predicates
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
50
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
51 ;; These test functions are shamelessly lifted from vip 4.4.2 by Aamod Sane
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
52
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
53 ;; generate test functions
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
54 ;; given symbol foo, foo-p is the test function, foos is the set of
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
55 ;; Viper command keys
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
56 ;; (macroexpand '(viper-test-com-defun foo))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
57 ;; (defun foo-p (com) (consp (memq (if (< com 0) (- com) com) foos)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
58
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
59 (defmacro viper-test-com-defun (name)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
60 (let* ((snm (symbol-name name))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
61 (nm-p (intern (concat snm "-p")))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
62 (nms (intern (concat snm "s"))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
63 (` (defun (, nm-p) (com)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
64 (consp (memq (if (and (viper-characterp com) (< com 0))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
65 (- com) com) (, nms)))))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
66
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
67 ;; Variables for defining VI commands
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
68
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
69 ;; Modifying commands that can be prefixes to movement commands
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
70 (defconst viper-prefix-commands '(?c ?d ?y ?! ?= ?# ?< ?> ?\"))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
71 ;; define viper-prefix-command-p
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
72 (viper-test-com-defun viper-prefix-command)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
73
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
74 ;; Commands that are pairs eg. dd. r and R here are a hack
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
75 (defconst viper-charpair-commands '(?c ?d ?y ?! ?= ?< ?> ?r ?R))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
76 ;; define viper-charpair-command-p
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
77 (viper-test-com-defun viper-charpair-command)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
78
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
79 (defconst viper-movement-commands '(?b ?B ?e ?E ?f ?F ?G ?h ?H ?j ?k ?l
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
80 ?H ?M ?L ?n ?t ?T ?w ?W ?$ ?%
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
81 ?^ ?( ?) ?- ?+ ?| ?{ ?} ?[ ?] ?' ?`
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
82 ?; ?, ?0 ?? ?/ ?\C-m ?\
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
83 space return
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
84 delete backspace
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
85 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
86 "Movement commands")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
87 ;; define viper-movement-command-p
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
88 (viper-test-com-defun viper-movement-command)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
89
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
90 ;; Vi digit commands
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
91 (defconst viper-digit-commands '(?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
92
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
93 ;; define viper-digit-command-p
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
94 (viper-test-com-defun viper-digit-command)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
95
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
96 ;; Commands that can be repeated by . (dotted)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
97 (defconst viper-dotable-commands '(?c ?d ?C ?s ?S ?D ?> ?<))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
98 ;; define viper-dotable-command-p
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
99 (viper-test-com-defun viper-dotable-command)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
100
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
101 ;; Commands that can follow a #
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
102 (defconst viper-hash-commands '(?c ?C ?g ?q ?s))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
103 ;; define viper-hash-command-p
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
104 (viper-test-com-defun viper-hash-command)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
105
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
106 ;; Commands that may have registers as prefix
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
107 (defconst viper-regsuffix-commands '(?d ?y ?Y ?D ?p ?P ?x ?X))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
108 ;; define viper-regsuffix-command-p
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
109 (viper-test-com-defun viper-regsuffix-command)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
110
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
111 (defconst viper-vi-commands (append viper-movement-commands
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
112 viper-digit-commands
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
113 viper-dotable-commands
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
114 viper-charpair-commands
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
115 viper-hash-commands
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
116 viper-prefix-commands
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
117 viper-regsuffix-commands)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
118 "The list of all commands in Vi-state.")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
119 ;; define viper-vi-command-p
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
120 (viper-test-com-defun viper-vi-command)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
121
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
122
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
123 ;;; CODE
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
124
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
125 ;; sentinels
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
126
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
127 ;; Runs viper-after-change-functions inside after-change-functions
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
128 (defun viper-after-change-sentinel (beg end len)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
129 (let ((list viper-after-change-functions))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
130 (while list
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
131 (funcall (car list) beg end len)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
132 (setq list (cdr list)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
133
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
134 ;; Runs viper-before-change-functions inside before-change-functions
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
135 (defun viper-before-change-sentinel (beg end)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
136 (let ((list viper-before-change-functions))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
137 (while list
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
138 (funcall (car list) beg end)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
139 (setq list (cdr list)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
140
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
141 (defsubst viper-post-command-sentinel ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
142 (run-hooks 'viper-post-command-hooks))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
143
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
144 (defsubst viper-pre-command-sentinel ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
145 (run-hooks 'viper-pre-command-hooks))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
146
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
147 ;; Needed so that Viper will be able to figure the last inserted
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
148 ;; chunk of text with reasonable accuracy.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
149 (defsubst viper-insert-state-post-command-sentinel ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
150 (if (and (memq viper-current-state '(insert-state replace-state))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
151 viper-insert-point
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
152 (>= (point) viper-insert-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
153 (setq viper-last-posn-while-in-insert-state (point-marker)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
154 (if (eq viper-current-state 'insert-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
155 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
156 (or (stringp viper-saved-cursor-color)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
157 (string= (viper-get-cursor-color) viper-insert-state-cursor-color)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
158 (setq viper-saved-cursor-color (viper-get-cursor-color)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
159 (if (stringp viper-saved-cursor-color)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
160 (viper-change-cursor-color viper-insert-state-cursor-color))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
161 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
162 (if (and (eq this-command 'dabbrev-expand)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
163 (integerp viper-pre-command-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
164 (> viper-insert-point viper-pre-command-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
165 (move-marker viper-insert-point viper-pre-command-point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
166 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
167
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
168 (defsubst viper-insert-state-pre-command-sentinel ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
169 (or (memq this-command '(self-insert-command))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
170 (memq (viper-event-key last-command-event)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
171 '(up down left right (meta f) (meta b)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
172 (control n) (control p) (control f) (control b)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
173 (viper-restore-cursor-color-after-insert))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
174 (if (and (eq this-command 'dabbrev-expand)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
175 (markerp viper-insert-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
176 (marker-position viper-insert-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
177 (setq viper-pre-command-point (marker-position viper-insert-point))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
178
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
179 (defsubst viper-R-state-post-command-sentinel ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
180 ;; Restoring cursor color is needed despite
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
181 ;; viper-replace-state-pre-command-sentinel: When you jump to another buffer
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
182 ;; in another frame, the pre-command hook won't change cursor color to
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
183 ;; default in that other frame. So, if the second frame cursor was red and
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
184 ;; we set the point outside the replacement region, then the cursor color
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
185 ;; will remain red. Restoring the default, below, prevents this.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
186 (if (and (<= (viper-replace-start) (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
187 (<= (point) (viper-replace-end)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
188 (viper-change-cursor-color viper-replace-overlay-cursor-color)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
189 (viper-restore-cursor-color-after-replace)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
190 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
191
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
192 ;; to speed up, don't change cursor color before self-insert
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
193 ;; and common move commands
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
194 (defsubst viper-replace-state-pre-command-sentinel ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
195 (or (memq this-command '(self-insert-command))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
196 (memq (viper-event-key last-command-event)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
197 '(up down left right (meta f) (meta b)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
198 (control n) (control p) (control f) (control b)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
199 (viper-restore-cursor-color-after-replace)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
200
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
201 (defun viper-replace-state-post-command-sentinel ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
202 ;; Restoring cursor color is needed despite
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
203 ;; viper-replace-state-pre-command-sentinel: When one jumps to another buffer
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
204 ;; in another frame, the pre-command hook won't change cursor color to
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
205 ;; default in that other frame. So, if the second frame cursor was red and
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
206 ;; we set the point outside the replacement region, then the cursor color
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
207 ;; will remain red. Restoring the default, below, fixes this problem.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
208 ;;
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
209 ;; We optimize for self-insert-command's here, since they either don't change
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
210 ;; cursor color or, if they terminate replace mode, the color will be changed
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
211 ;; in viper-finish-change
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
212 (or (memq this-command '(self-insert-command))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
213 (viper-restore-cursor-color-after-replace))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
214 (cond
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
215 ((eq viper-current-state 'replace-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
216 ;; delete characters to compensate for inserted chars.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
217 (let ((replace-boundary (viper-replace-end)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
218 (save-excursion
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
219 (goto-char viper-last-posn-in-replace-region)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
220 (delete-char viper-replace-chars-to-delete)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
221 (setq viper-replace-chars-to-delete 0
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
222 viper-replace-chars-deleted 0)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
223 ;; terminate replace mode if reached replace limit
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
224 (if (= viper-last-posn-in-replace-region
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
225 (viper-replace-end))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
226 (viper-finish-change viper-last-posn-in-replace-region)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
227
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
228 (if (and (<= (viper-replace-start) (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
229 (<= (point) replace-boundary))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
230 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
231 ;; the state may have changed in viper-finish-change above
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
232 (if (eq viper-current-state 'replace-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
233 (viper-change-cursor-color viper-replace-overlay-cursor-color))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
234 (setq viper-last-posn-in-replace-region (point-marker))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
235 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
236
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
237 (t ;; terminate replace mode if changed Viper states.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
238 (viper-finish-change viper-last-posn-in-replace-region))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
239
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
240
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
241 ;; changing mode
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
242
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
243 ;; Change state to NEW-STATE---either emacs-state, vi-state, or insert-state.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
244 (defun viper-change-state (new-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
245 ;; Keep viper-post/pre-command-hooks fresh.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
246 ;; We remove then add viper-post/pre-command-sentinel since it is very
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
247 ;; desirable that viper-pre-command-sentinel is the last hook and
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
248 ;; viper-post-command-sentinel is the first hook.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
249 (remove-hook 'post-command-hook 'viper-post-command-sentinel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
250 (add-hook 'post-command-hook 'viper-post-command-sentinel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
251 (remove-hook 'pre-command-hook 'viper-pre-command-sentinel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
252 (add-hook 'pre-command-hook 'viper-pre-command-sentinel t)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
253 ;; These hooks will be added back if switching to insert/replace mode
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
254 (viper-remove-hook 'viper-post-command-hooks
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
255 'viper-insert-state-post-command-sentinel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
256 (viper-remove-hook 'viper-pre-command-hooks
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
257 'viper-insert-state-pre-command-sentinel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
258 (setq viper-intermediate-command nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
259 (cond ((eq new-state 'vi-state)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
260 (cond ((member viper-current-state '(insert-state replace-state))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
261
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
262 ;; move viper-last-posn-while-in-insert-state
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
263 ;; This is a normal hook that is executed in insert/replace
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
264 ;; states after each command. In Vi/Emacs state, it does
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
265 ;; nothing. We need to execute it here to make sure that
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
266 ;; the last posn was recorded when we hit ESC.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
267 ;; It may be left unrecorded if the last thing done in
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
268 ;; insert/repl state was dabbrev-expansion or abbrev
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
269 ;; expansion caused by hitting ESC
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
270 (viper-insert-state-post-command-sentinel)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
271
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
272 (condition-case conds
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
273 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
274 (viper-save-last-insertion
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
275 viper-insert-point
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
276 viper-last-posn-while-in-insert-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
277 (if viper-began-as-replace
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
278 (setq viper-began-as-replace nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
279 ;; repeat insert commands if numerical arg > 1
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
280 (save-excursion
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
281 (viper-repeat-insert-command))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
282 (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
283 (viper-message-conditions conds)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
284
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
285 (if (> (length viper-last-insertion) 0)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
286 (viper-push-onto-ring viper-last-insertion
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
287 'viper-insertion-ring))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
288
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
289 (if viper-ex-style-editing-in-insert
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
290 (or (bolp) (backward-char 1))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
291 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
292
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
293 ;; insert or replace
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
294 ((memq new-state '(insert-state replace-state))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
295 (if (memq viper-current-state '(emacs-state vi-state))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
296 (viper-move-marker-locally 'viper-insert-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
297 (viper-move-marker-locally
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
298 'viper-last-posn-while-in-insert-state (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
299 (viper-add-hook 'viper-post-command-hooks
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
300 'viper-insert-state-post-command-sentinel t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
301 (viper-add-hook 'viper-pre-command-hooks
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
302 'viper-insert-state-pre-command-sentinel t))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
303 ) ; outermost cond
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
304
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
305 ;; Nothing needs to be done to switch to emacs mode! Just set some
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
306 ;; variables, which is already done in viper-change-state-to-emacs!
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
307
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
308 (setq viper-current-state new-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
309 (viper-normalize-minor-mode-map-alist)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
310 (viper-adjust-keys-for new-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
311 (viper-set-mode-vars-for new-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
312 (viper-refresh-mode-line)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
313 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
314
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
315
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
316
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
317 (defun viper-adjust-keys-for (state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
318 "Make necessary adjustments to keymaps before entering STATE."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
319 (cond ((memq state '(insert-state replace-state))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
320 (if viper-auto-indent
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
321 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
322 (define-key viper-insert-basic-map "\C-m" 'viper-autoindent)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
323 (if viper-want-emacs-keys-in-insert
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
324 ;; expert
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
325 (define-key viper-insert-basic-map "\C-j" nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
326 ;; novice
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
327 (define-key viper-insert-basic-map "\C-j" 'viper-autoindent)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
328 (define-key viper-insert-basic-map "\C-m" nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
329 (define-key viper-insert-basic-map "\C-j" nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
330
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
331 (setq viper-insert-diehard-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
332 (not viper-want-emacs-keys-in-insert))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
333
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
334 (if viper-want-ctl-h-help
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
335 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
336 (define-key viper-insert-basic-map [(control h)] 'help-command)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
337 (define-key viper-replace-map [(control h)] 'help-command))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
338 (define-key viper-insert-basic-map
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
339 [(control h)] 'viper-del-backward-char-in-insert)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
340 (define-key viper-replace-map
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
341 [(control h)] 'viper-del-backward-char-in-replace)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
342
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
343 (t ; Vi state
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
344 (setq viper-vi-diehard-minor-mode (not viper-want-emacs-keys-in-vi))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
345 (if viper-want-ctl-h-help
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
346 (define-key viper-vi-basic-map [(control h)] 'help-command)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
347 (define-key viper-vi-basic-map [(control h)] 'viper-backward-char)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
348 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
349
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
350
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
351 ;; Normalizes minor-mode-map-alist by putting Viper keymaps first.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
352 ;; This ensures that Viper bindings are in effect, regardless of which minor
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
353 ;; modes were turned on by the user or by other packages.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
354 (defun viper-normalize-minor-mode-map-alist ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
355 (setq minor-mode-map-alist
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
356 (viper-append-filter-alist
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
357 (list
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
358 (cons 'viper-vi-intercept-minor-mode viper-vi-intercept-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
359 (cons 'viper-vi-minibuffer-minor-mode viper-minibuffer-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
360 (cons 'viper-vi-local-user-minor-mode viper-vi-local-user-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
361 (cons 'viper-vi-kbd-minor-mode viper-vi-kbd-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
362 (cons 'viper-vi-global-user-minor-mode viper-vi-global-user-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
363 (cons 'viper-vi-state-modifier-minor-mode
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
364 (if (keymapp
19203
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
365 (cdr (assoc major-mode
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
366 viper-vi-state-modifier-alist)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
367 (cdr (assoc major-mode viper-vi-state-modifier-alist))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
368 viper-empty-keymap))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
369 (cons 'viper-vi-diehard-minor-mode viper-vi-diehard-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
370 (cons 'viper-vi-basic-minor-mode viper-vi-basic-map)
19203
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
371 (cons 'viper-insert-intercept-minor-mode
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
372 viper-insert-intercept-map)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
373 (cons 'viper-replace-minor-mode viper-replace-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
374 ;; viper-insert-minibuffer-minor-mode must come after
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
375 ;; viper-replace-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
376 (cons 'viper-insert-minibuffer-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
377 viper-minibuffer-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
378 (cons 'viper-insert-local-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
379 viper-insert-local-user-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
380 (cons 'viper-insert-kbd-minor-mode viper-insert-kbd-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
381 (cons 'viper-insert-global-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
382 viper-insert-global-user-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
383 (cons 'viper-insert-state-modifier-minor-mode
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
384 (if (keymapp
19203
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
385 (cdr (assoc major-mode
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
386 viper-insert-state-modifier-alist)))
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
387 (cdr (assoc major-mode
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
388 viper-insert-state-modifier-alist))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
389 viper-empty-keymap))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
390 (cons 'viper-insert-diehard-minor-mode viper-insert-diehard-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
391 (cons 'viper-insert-basic-minor-mode viper-insert-basic-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
392 (cons 'viper-emacs-intercept-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
393 viper-emacs-intercept-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
394 (cons 'viper-emacs-local-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
395 viper-emacs-local-user-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
396 (cons 'viper-emacs-kbd-minor-mode viper-emacs-kbd-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
397 (cons 'viper-emacs-global-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
398 viper-emacs-global-user-map)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
399 (cons 'viper-emacs-state-modifier-minor-mode
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
400 (if (keymapp
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
401 (cdr
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
402 (assoc major-mode viper-emacs-state-modifier-alist)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
403 (cdr
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
404 (assoc major-mode viper-emacs-state-modifier-alist))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
405 viper-empty-keymap))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
406 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
407 minor-mode-map-alist)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
408
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
409
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
410
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
411
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
412
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
413 ;; Viper mode-changing commands and utilities
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
414
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
415 ;; Modifies mode-line-buffer-identification.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
416 (defun viper-refresh-mode-line ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
417 (setq viper-mode-string
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
418 (cond ((eq viper-current-state 'emacs-state) viper-emacs-state-id)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
419 ((eq viper-current-state 'vi-state) viper-vi-state-id)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
420 ((eq viper-current-state 'replace-state) viper-replace-state-id)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
421 ((eq viper-current-state 'insert-state) viper-insert-state-id)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
422
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
423 ;; Sets Viper mode string in global-mode-string
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
424 (force-mode-line-update))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
425
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
426
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
427 ;; Switch from Insert state to Vi state.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
428 (defun viper-exit-insert-state ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
429 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
430 (viper-change-state-to-vi))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
431
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
432 (defun viper-set-mode-vars-for (state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
433 "Sets Viper minor mode variables to put Viper's state STATE in effect."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
434
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
435 ;; Emacs state
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
436 (setq viper-vi-minibuffer-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
437 viper-insert-minibuffer-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
438 viper-vi-intercept-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
439 viper-insert-intercept-minor-mode nil
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
440
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
441 viper-vi-local-user-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
442 viper-vi-kbd-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
443 viper-vi-global-user-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
444 viper-vi-state-modifier-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
445 viper-vi-diehard-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
446 viper-vi-basic-minor-mode nil
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
447
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
448 viper-replace-minor-mode nil
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
449
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
450 viper-insert-local-user-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
451 viper-insert-kbd-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
452 viper-insert-global-user-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
453 viper-insert-state-modifier-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
454 viper-insert-diehard-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
455 viper-insert-basic-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
456 viper-emacs-intercept-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
457 viper-emacs-local-user-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
458 viper-emacs-kbd-minor-mode (not (viper-is-in-minibuffer))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
459 viper-emacs-global-user-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
460 viper-emacs-state-modifier-minor-mode t
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
461 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
462
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
463 ;; Vi state
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
464 (if (eq state 'vi-state) ; adjust for vi-state
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
465 (setq
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
466 viper-vi-intercept-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
467 viper-vi-minibuffer-minor-mode (viper-is-in-minibuffer)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
468 viper-vi-local-user-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
469 viper-vi-kbd-minor-mode (not (viper-is-in-minibuffer))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
470 viper-vi-global-user-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
471 viper-vi-state-modifier-minor-mode t
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
472 ;; don't let the diehard keymap block command completion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
473 ;; and other things in the minibuffer
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
474 viper-vi-diehard-minor-mode (not
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
475 (or viper-want-emacs-keys-in-vi
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
476 (viper-is-in-minibuffer)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
477 viper-vi-basic-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
478 viper-emacs-intercept-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
479 viper-emacs-local-user-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
480 viper-emacs-kbd-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
481 viper-emacs-global-user-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
482 viper-emacs-state-modifier-minor-mode nil
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
483 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
484
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
485 ;; Insert and Replace states
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
486 (if (member state '(insert-state replace-state))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
487 (setq
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
488 viper-insert-intercept-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
489 viper-replace-minor-mode (eq state 'replace-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
490 viper-insert-minibuffer-minor-mode (viper-is-in-minibuffer)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
491 viper-insert-local-user-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
492 viper-insert-kbd-minor-mode (not (viper-is-in-minibuffer))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
493 viper-insert-global-user-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
494 viper-insert-state-modifier-minor-mode t
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
495 ;; don't let the diehard keymap block command completion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
496 ;; and other things in the minibuffer
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
497 viper-insert-diehard-minor-mode (not
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
498 (or
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
499 viper-want-emacs-keys-in-insert
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
500 (viper-is-in-minibuffer)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
501 viper-insert-basic-minor-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
502 viper-emacs-intercept-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
503 viper-emacs-local-user-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
504 viper-emacs-kbd-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
505 viper-emacs-global-user-minor-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
506 viper-emacs-state-modifier-minor-mode nil
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
507 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
508
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
509 ;; minibuffer faces
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
510 (if (viper-has-face-support-p)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
511 (setq viper-minibuffer-current-face
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
512 (cond ((eq state 'emacs-state) viper-minibuffer-emacs-face)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
513 ((eq state 'vi-state) viper-minibuffer-vi-face)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
514 ((memq state '(insert-state replace-state))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
515 viper-minibuffer-insert-face))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
516
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
517 (if (viper-is-in-minibuffer)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
518 (viper-set-minibuffer-overlay))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
519 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
520
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
521 ;; This also takes care of the annoying incomplete lines in files.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
522 ;; Also, this fixes `undo' to work vi-style for complex commands.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
523 (defun viper-change-state-to-vi ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
524 "Change Viper state to Vi."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
525 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
526 (if (and viper-first-time (not (viper-is-in-minibuffer)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
527 (viper-mode)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
528 (if overwrite-mode (overwrite-mode nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
529 (if abbrev-mode (expand-abbrev))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
530 (if (and auto-fill-function (> (current-column) fill-column))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
531 (funcall auto-fill-function))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
532 ;; don't leave whitespace lines around
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
533 (if (and (memq last-command
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
534 '(viper-autoindent
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
535 viper-open-line viper-Open-line
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
536 viper-replace-state-exit-cmd))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
537 (viper-over-whitespace-line))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
538 (indent-to-left-margin))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
539 (viper-add-newline-at-eob-if-necessary)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
540 (if viper-undo-needs-adjustment (viper-adjust-undo))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
541 (viper-change-state 'vi-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
542
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
543 ;; always turn off iso-accents-mode, or else we won't be able to use the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
544 ;; keys `,',^ in Vi state, as they will do accents instead of Vi actions.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
545 (if (and (boundp 'iso-accents-mode) iso-accents-mode)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
546 (iso-accents-mode -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
547
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
548 (viper-restore-cursor-color-after-insert)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
549
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
550 ;; Protection against user errors in hooks
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
551 (condition-case conds
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
552 (run-hooks 'viper-vi-state-hook)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
553 (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
554 (viper-message-conditions conds)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
555
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
556 (defun viper-change-state-to-insert ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
557 "Change Viper state to Insert."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
558 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
559 (viper-change-state 'insert-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
560 (if (and viper-automatic-iso-accents (fboundp 'iso-accents-mode))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
561 (iso-accents-mode 1)) ; turn iso accents on
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
562
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
563 (or (stringp viper-saved-cursor-color)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
564 (string= (viper-get-cursor-color) viper-insert-state-cursor-color)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
565 (setq viper-saved-cursor-color (viper-get-cursor-color)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
566 ;; Commented out, because if viper-change-state-to-insert is executed
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
567 ;; non-interactively then the old cursor color may get lost. Same old Emacs
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
568 ;; bug related to local variables?
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
569 ;;;(if (stringp viper-saved-cursor-color)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
570 ;;; (viper-change-cursor-color viper-insert-state-cursor-color))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
571 ;; Protection against user errors in hooks
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
572 (condition-case conds
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
573 (run-hooks 'viper-insert-state-hook)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
574 (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
575 (viper-message-conditions conds))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
576
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
577 (defsubst viper-downgrade-to-insert ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
578 (setq viper-current-state 'insert-state
19203
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
579 viper-replace-minor-mode nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
580
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
581
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
582
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
583 ;; Change to replace state. When the end of replacement region is reached,
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
584 ;; replace state changes to insert state.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
585 (defun viper-change-state-to-replace (&optional non-R-cmd)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
586 (viper-change-state 'replace-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
587 (if (and viper-automatic-iso-accents (fboundp 'iso-accents-mode))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
588 (iso-accents-mode 1)) ; turn iso accents on
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
589 ;; Run insert-state-hook
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
590 (condition-case conds
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
591 (run-hooks 'viper-insert-state-hook 'viper-replace-state-hook)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
592 (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
593 (viper-message-conditions conds)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
594
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
595 (if non-R-cmd
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
596 (viper-start-replace)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
597 ;; 'R' is implemented using Emacs's overwrite-mode
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
598 (viper-start-R-mode))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
599 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
600
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
601
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
602 (defun viper-change-state-to-emacs ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
603 "Change Viper state to Emacs."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
604 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
605 (viper-change-state 'emacs-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
606 (if (and viper-automatic-iso-accents (fboundp 'iso-accents-mode))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
607 (iso-accents-mode 1)) ; turn iso accents on
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
608
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
609 ;; Protection agains user errors in hooks
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
610 (condition-case conds
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
611 (run-hooks 'viper-emacs-state-hook)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
612 (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
613 (viper-message-conditions conds))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
614
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
615 ;; escape to emacs mode termporarily
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
616 (defun viper-escape-to-emacs (arg &optional events)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
617 "Escape to Emacs state from Vi state for one Emacs command.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
618 ARG is used as the prefix value for the executed command. If
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
619 EVENTS is a list of events, which become the beginning of the command."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
620 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
621 (if (= last-command-char ?\\)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
622 (message "Switched to EMACS state for the next command..."))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
623 (viper-escape-to-state arg events 'emacs-state))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
624
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
625 ;; escape to Vi mode termporarily
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
626 (defun viper-escape-to-vi (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
627 "Escape from Emacs state to Vi state for one Vi 1-character command.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
628 If the Vi command that the user types has a prefix argument, e.g., `d2w', then
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
629 Vi's prefix argument will be used. Otherwise, the prefix argument passed to
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
630 `viper-escape-to-vi' is used."
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
631 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
632 (message "Switched to VI state for the next command...")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
633 (viper-escape-to-state arg nil 'vi-state))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
634
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
635 ;; Escape to STATE mode for one Emacs command.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
636 (defun viper-escape-to-state (arg events state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
637 ;;(let (com key prefix-arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
638 (let (com key)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
639 ;; this temporarily turns off Viper's minor mode keymaps
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
640 (viper-set-mode-vars-for state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
641 (viper-normalize-minor-mode-map-alist)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
642 (if events (viper-set-unread-command-events events))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
643
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
644 ;; protect against keyboard quit and other errors
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
645 (condition-case nil
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
646 (let (viper-vi-kbd-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
647 viper-insert-kbd-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
648 viper-emacs-kbd-minor-mode)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
649 (unwind-protect
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
650 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
651 (setq com (key-binding (setq key
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
652 (if viper-xemacs-p
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
653 (read-key-sequence nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
654 (read-key-sequence nil t)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
655 ;; In case of binding indirection--chase definitions.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
656 ;; Have to do it here because we execute this command under
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
657 ;; different keymaps, so command-execute may not do the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
658 ;; right thing there
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
659 (while (vectorp com) (setq com (key-binding com))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
660 nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
661 ;; Execute command com in the original Viper state, not in state
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
662 ;; `state'. Otherwise, if we switch buffers while executing the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
663 ;; escaped to command, Viper's mode vars will remain those of
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
664 ;; `state'. When we return to the orig buffer, the bindings will be
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
665 ;; screwed up.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
666 (viper-set-mode-vars-for viper-current-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
667
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
668 ;; this-command, last-command-char, last-command-event
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
669 (setq this-command com)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
670 (if viper-xemacs-p ; XEmacs represents key sequences as vectors
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
671 (setq last-command-event
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
672 (viper-copy-event (viper-seq-last-elt key))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
673 last-command-char (event-to-character last-command-event))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
674 ;; Emacs represents them as sequences (str or vec)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
675 (setq last-command-event
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
676 (viper-copy-event (viper-seq-last-elt key))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
677 last-command-char last-command-event))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
678
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
679 (if (commandp com)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
680 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
681 (setq prefix-arg (or prefix-arg arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
682 (command-execute com)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
683 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
684 (quit (ding))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
685 (error (beep 1))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
686 ;; set state in the new buffer
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
687 (viper-set-mode-vars-for viper-current-state))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
688
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
689 (defun viper-exec-form-in-vi (form)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
690 "Execute FORM in Vi state, regardless of the Ccurrent Vi state."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
691 (let ((buff (current-buffer))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
692 result)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
693 (viper-set-mode-vars-for 'vi-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
694
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
695 (condition-case nil
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
696 (let (viper-vi-kbd-minor-mode) ; execute without kbd macros
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
697 (setq result (eval form))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
698 )
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
699 (error
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
700 (signal 'quit nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
701
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
702 (if (not (equal buff (current-buffer))) ; cmd switched buffer
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
703 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
704 (set-buffer buff)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
705 (viper-set-mode-vars-for viper-current-state)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
706 (viper-set-mode-vars-for viper-current-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
707 result))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
708
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
709 (defun viper-exec-form-in-emacs (form)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
710 "Execute FORM in Emacs, temporarily disabling Viper's minor modes.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
711 Similar to viper-escape-to-emacs, but accepts forms rather than keystrokes."
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
712 (let ((buff (current-buffer))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
713 result)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
714 (viper-set-mode-vars-for 'emacs-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
715 (setq result (eval form))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
716 (if (not (equal buff (current-buffer))) ; cmd switched buffer
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
717 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
718 (set-buffer buff)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
719 (viper-set-mode-vars-for viper-current-state)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
720 (viper-set-mode-vars-for viper-current-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
721 result))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
722
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
723
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
724 ;; This is needed because minor modes sometimes override essential Viper
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
725 ;; bindings. By letting Viper know which files these modes are in, it will
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
726 ;; arrange to reorganize minor-mode-map-alist so that things will work right.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
727 (defun viper-harness-minor-mode (load-file)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
728 "Familiarize Viper with a minor mode defined in LOAD_FILE.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
729 Minor modes that have their own keymaps may overshadow Viper keymaps.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
730 This function is designed to make Viper aware of the packages that define
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
731 such minor modes.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
732 Usage:
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
733 (viper-harness-minor-mode load-file)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
734
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
735 LOAD-FILE is a name of the file where the specific minor mode is defined.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
736 Suffixes such as .el or .elc should be stripped."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
737
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
738 (interactive "sEnter name of the load file: ")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
739
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
740 (eval-after-load load-file '(viper-normalize-minor-mode-map-alist))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
741
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
742 ;; Change the default for minor-mode-map-alist each time a harnessed minor
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
743 ;; mode adds its own keymap to the a-list.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
744 (eval-after-load
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
745 load-file '(setq-default minor-mode-map-alist minor-mode-map-alist))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
746 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
747
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
748
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
749 (defun viper-ESC (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
750 "Emulate ESC key in Emacs.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
751 Prevents multiple escape keystrokes if viper-no-multiple-ESC is true.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
752 If viper-no-multiple-ESC is 'twice double ESC would ding in vi-state.
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
753 Other ESC sequences are emulated via the current Emacs's major mode
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
754 keymap. This is more convenient on TTYs, since this won't block
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
755 function keys such as up,down, etc. ESC will also will also work as
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
756 a Meta key in this case. When viper-no-multiple-ESC is nil, ESC functions
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
757 as a Meta key and any number of multiple escapes is allowed."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
758 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
759 (let (char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
760 (cond ((and (not viper-no-multiple-ESC) (eq viper-current-state 'vi-state))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
761 (setq char (viper-read-char-exclusive))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
762 (viper-escape-to-emacs arg (list ?\e char) ))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
763 ((and (eq viper-no-multiple-ESC 'twice)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
764 (eq viper-current-state 'vi-state))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
765 (setq char (viper-read-char-exclusive))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
766 (if (= char (string-to-char viper-ESC-key))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
767 (ding)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
768 (viper-escape-to-emacs arg (list ?\e char) )))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
769 (t (ding)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
770 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
771
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
772 (defun viper-alternate-Meta-key (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
773 "Simulate Emacs Meta key."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
774 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
775 (sit-for 1) (message "ESC-")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
776 (viper-escape-to-emacs arg '(?\e)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
777
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
778 (defun viper-toggle-key-action ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
779 "Action bound to `viper-toggle-key'."
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
780 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
781 (if (and (< viper-expert-level 2) (equal viper-toggle-key "\C-z"))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
782 (if (viper-window-display-p)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
783 (viper-iconify)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
784 (suspend-emacs))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
785 (viper-change-state-to-emacs)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
786
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
787
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
788 ;; Intercept ESC sequences on dumb terminals.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
789 ;; Based on the idea contributed by Marcelino Veiga Tuimil <mveiga@dit.upm.es>
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
790
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
791 ;; Check if last key was ESC and if so try to reread it as a function key.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
792 ;; But only if there are characters to read during a very short time.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
793 ;; Returns the last event, if any.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
794 (defun viper-envelop-ESC-key ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
795 (let ((event last-input-event)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
796 (keyseq [nil])
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
797 inhibit-quit)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
798 (if (viper-ESC-event-p event)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
799 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
800 (if (viper-fast-keysequence-p)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
801 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
802 (let (minor-mode-map-alist)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
803 (viper-set-unread-command-events event)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
804 (setq keyseq
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
805 (funcall
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
806 (ad-get-orig-definition 'read-key-sequence) nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
807 ) ; let
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
808 ;; If keyseq translates into something that still has ESC
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
809 ;; at the beginning, separate ESC from the rest of the seq.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
810 ;; In XEmacs we check for events that are keypress meta-key
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
811 ;; and convert them into [escape key]
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
812 ;;
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
813 ;; This is needed for the following reason:
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
814 ;; If ESC is the first symbol, we interpret it as if the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
815 ;; user typed ESC and then quickly some other symbols.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
816 ;; If ESC is not the first one, then the key sequence
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
817 ;; entered was apparently translated into a function key or
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
818 ;; something (e.g., one may have
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
819 ;; (define-key function-key-map "\e[192z" [f11])
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
820 ;; which would translate the escape-sequence generated by
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
821 ;; f11 in an xterm window into the symbolic key f11.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
822 ;;
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
823 ;; If `first-key' is not an ESC event, we make it into the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
824 ;; last-command-event in order to pretend that this key was
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
825 ;; pressed. This is needed to allow arrow keys to be bound to
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
826 ;; macros. Otherwise, viper-exec-mapped-kbd-macro will think
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
827 ;; that the last event was ESC and so it'll execute whatever is
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
828 ;; bound to ESC. (Viper macros can't be bound to
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
829 ;; ESC-sequences).
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
830 (let* ((first-key (elt keyseq 0))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
831 (key-mod (event-modifiers first-key)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
832 (cond ((viper-ESC-event-p first-key)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
833 ;; put keys following ESC on the unread list
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
834 ;; and return ESC as the key-sequence
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
835 (viper-set-unread-command-events (subseq keyseq 1))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
836 (setq last-input-event event
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
837 keyseq (if viper-emacs-p
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
838 "\e"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
839 (vector (character-to-event ?\e)))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
840 ((and viper-xemacs-p
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
841 (key-press-event-p first-key)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
842 (equal '(meta) key-mod))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
843 (viper-set-unread-command-events
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
844 (vconcat (vector
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
845 (character-to-event (event-key first-key)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
846 (subseq keyseq 1)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
847 (setq last-input-event event
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
848 keyseq (vector (character-to-event ?\e))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
849 ((eventp first-key)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
850 (setq last-command-event
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
851 (viper-copy-event first-key)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
852 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
853 ) ; end progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
854
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
855 ;; this is escape event with nothing after it
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
856 ;; put in unread-command-event and then re-read
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
857 (viper-set-unread-command-events event)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
858 (setq keyseq
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
859 (funcall (ad-get-orig-definition 'read-key-sequence) nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
860 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
861 ;; not an escape event
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
862 (setq keyseq (vector event)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
863 keyseq))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
864
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
865
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
866
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
867 ;; Listen to ESC key.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
868 ;; If a sequence of keys starting with ESC is issued with very short delays,
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
869 ;; interpret these keys in Emacs mode, so ESC won't be interpreted as a Vi key.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
870 (defun viper-intercept-ESC-key ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
871 "Function that implements ESC key in Viper emulation of Vi."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
872 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
873 (let ((cmd (or (key-binding (viper-envelop-ESC-key))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
874 '(lambda () (interactive) (error "")))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
875
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
876 ;; call the actual function to execute ESC (if no other symbols followed)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
877 ;; or the key bound to the ESC sequence (if the sequence was issued
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
878 ;; with very short delay between characters.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
879 (if (eq cmd 'viper-intercept-ESC-key)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
880 (setq cmd
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
881 (cond ((eq viper-current-state 'vi-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
882 'viper-ESC)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
883 ((eq viper-current-state 'insert-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
884 'viper-exit-insert-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
885 ((eq viper-current-state 'replace-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
886 'viper-replace-state-exit-cmd)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
887 (t 'viper-change-state-to-vi)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
888 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
889 (call-interactively cmd)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
890
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
891
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
892
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
893
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
894 ;; prefix argument for Vi mode
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
895
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
896 ;; In Vi mode, prefix argument is a dotted pair (NUM . COM) where NUM
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
897 ;; represents the numeric value of the prefix argument and COM represents
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
898 ;; command prefix such as "c", "d", "m" and "y".
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
899
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
900 ;; Get value part of prefix-argument ARG.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
901 (defsubst viper-p-val (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
902 (cond ((null arg) 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
903 ((consp arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
904 (if (or (null (car arg)) (equal (car arg) '(nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
905 1 (car arg)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
906 (t arg)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
907
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
908 ;; Get raw value part of prefix-argument ARG.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
909 (defsubst viper-P-val (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
910 (cond ((consp arg) (car arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
911 (t arg)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
912
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
913 ;; Get com part of prefix-argument ARG.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
914 (defsubst viper-getcom (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
915 (cond ((null arg) nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
916 ((consp arg) (cdr arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
917 (t nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
918
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
919 ;; Get com part of prefix-argument ARG and modify it.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
920 (defun viper-getCom (arg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
921 (let ((com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
922 (cond ((equal com ?c) ?c)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
923 ;; Previously, ?c was being converted to ?C, but this prevented
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
924 ;; multiline replace regions.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
925 ;;((equal com ?c) ?C)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
926 ((equal com ?d) ?D)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
927 ((equal com ?y) ?Y)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
928 (t com))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
929
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
930
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
931 ;; Compute numeric prefix arg value.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
932 ;; Invoked by EVENT. COM is the command part obtained so far.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
933 (defun viper-prefix-arg-value (event com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
934 (let ((viper-intermediate-command 'viper-digit-argument)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
935 value func)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
936 ;; read while number
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
937 (while (and (viper-characterp event) (>= event ?0) (<= event ?9))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
938 (setq value (+ (* (if (integerp value) value 0) 10) (- event ?0)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
939 (setq event (viper-read-event-convert-to-char)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
940
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
941 (setq prefix-arg value)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
942 (if com (setq prefix-arg (cons prefix-arg com)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
943 (while (eq event ?U)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
944 (viper-describe-arg prefix-arg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
945 (setq event (viper-read-event-convert-to-char)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
946
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
947 (if (or com (and (not (eq viper-current-state 'vi-state))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
948 ;; make sure it is a Vi command
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
949 (viper-characterp event) (viper-vi-command-p event)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
950 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
951 ;; If appears to be one of the vi commands,
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
952 ;; then execute it with funcall and clear prefix-arg in order to not
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
953 ;; confuse subsequent commands
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
954 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
955 ;; last-command-char is the char we want emacs to think was typed
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
956 ;; last. If com is not nil, the viper-digit-argument command was
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
957 ;; called from within viper-prefix-arg command, such as `d', `w',
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
958 ;; etc., i.e., the user typed, say, d2. In this case, `com' would be
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
959 ;; `d', `w', etc. If viper-digit-argument was invoked by
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
960 ;; viper-escape-to-vi (which is indicated by the fact that the
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
961 ;; current state is not vi-state), then `event' represents the vi
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
962 ;; command to be executed (e.g., `d', `w', etc). Again,
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
963 ;; last-command-char must make emacs believe that this is the command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
964 ;; we typed.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
965 (cond ((eq event 'return) (setq event ?\C-m))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
966 ((eq event 'delete) (setq event ?\C-?))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
967 ((eq event 'backspace) (setq event ?\C-h))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
968 ((eq event 'space) (setq event ?\ )))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
969 (setq last-command-char (or com event))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
970 (setq func (viper-exec-form-in-vi
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
971 (` (key-binding (char-to-string (, event))))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
972 (funcall func prefix-arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
973 (setq prefix-arg nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
974 ;; some other command -- let emacs do it in its own way
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
975 (viper-set-unread-command-events event))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
976 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
977
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
978
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
979 ;; Vi operator as prefix argument."
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
980 (defun viper-prefix-arg-com (char value com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
981 (let ((cont t)
18958
506ec0258d63 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18855
diff changeset
982 cmd-info
506ec0258d63 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18855
diff changeset
983 cmd-to-exec-at-end)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
984 (while (and cont
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
985 (memq char
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
986 (list ?c ?d ?y ?! ?< ?> ?= ?# ?r ?R ?\"
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
987 viper-buffer-search-char)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
988 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
989 ;; this means that we already have a command character, so we
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
990 ;; construct a com list and exit while. however, if char is "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
991 ;; it is an error.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
992 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
993 ;; new com is (CHAR . OLDCOM)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
994 (if (memq char '(?# ?\")) (error ""))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
995 (setq com (cons char com))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
996 (setq cont nil))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
997 ;; If com is nil we set com as char, and read more. Again, if char is
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
998 ;; ", we read the name of register and store it in viper-use-register.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
999 ;; if char is !, =, or #, a complete com is formed so we exit the while
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1000 ;; loop.
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1001 (cond ((memq char '(?! ?=))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1002 (setq com char)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1003 (setq char (read-char))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1004 (setq cont nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1005 ((= char ?#)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1006 ;; read a char and encode it as com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1007 (setq com (+ 128 (read-char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1008 (setq char (read-char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1009 ((= char ?\")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1010 (let ((reg (read-char)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1011 (if (viper-valid-register reg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1012 (setq viper-use-register reg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1013 (error ""))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1014 (setq char (read-char))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1015 (t
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1016 (setq com char)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1017 (setq char (read-char))))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1018
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1019 (if (atom com)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1020 ;; `com' is a single char, so we construct the command argument
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1021 ;; and if `char' is `?', we describe the arg; otherwise
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1022 ;; we prepare the command that will be executed at the end.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1023 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1024 (setq cmd-info (cons value com))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1025 (while (= char ?U)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1026 (viper-describe-arg cmd-info)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1027 (setq char (read-char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1028 ;; `char' is a movement cmd, a digit arg cmd, or a register cmd---so we
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1029 ;; execute it at the very end
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1030 (or (viper-movement-command-p char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1031 (viper-digit-command-p char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1032 (viper-regsuffix-command-p char)
18958
506ec0258d63 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18855
diff changeset
1033 (= char ?!) ; bang command
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1034 (error ""))
18958
506ec0258d63 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18855
diff changeset
1035 (setq cmd-to-exec-at-end
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1036 (viper-exec-form-in-vi
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1037 (` (key-binding (char-to-string (, char)))))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1038
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1039 ;; as com is non-nil, this means that we have a command to execute
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1040 (if (memq (car com) '(?r ?R))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1041 ;; execute apropriate region command.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1042 (let ((char (car com)) (com (cdr com)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1043 (setq prefix-arg (cons value com))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1044 (if (= char ?r) (viper-region prefix-arg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1045 (viper-Region prefix-arg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1046 ;; reset prefix-arg
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1047 (setq prefix-arg nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1048 ;; otherwise, reset prefix arg and call appropriate command
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1049 (setq value (if (null value) 1 value))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1050 (setq prefix-arg nil)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1051 (cond
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1052 ;; If we change ?C to ?c here, then cc will enter replacement mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1053 ;; rather than deleting lines. However, it will affect 1 less line than
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1054 ;; normal. We decided to not use replacement mode here and follow Vi,
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1055 ;; since replacement mode on n full lines can be achieved with nC.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1056 ((equal com '(?c . ?c)) (viper-line (cons value ?C)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1057 ((equal com '(?d . ?d)) (viper-line (cons value ?D)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1058 ((equal com '(?d . ?y)) (viper-yank-defun))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1059 ((equal com '(?y . ?y)) (viper-line (cons value ?Y)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1060 ((equal com '(?< . ?<)) (viper-line (cons value ?<)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1061 ((equal com '(?> . ?>)) (viper-line (cons value ?>)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1062 ((equal com '(?! . ?!)) (viper-line (cons value ?!)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1063 ((equal com '(?= . ?=)) (viper-line (cons value ?=)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1064 (t (error "")))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1065
18958
506ec0258d63 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18855
diff changeset
1066 (if cmd-to-exec-at-end
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1067 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1068 (setq last-command-char char)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1069 (setq last-command-event
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1070 (viper-copy-event
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1071 (if viper-xemacs-p (character-to-event char) char)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1072 (condition-case nil
18958
506ec0258d63 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18855
diff changeset
1073 (funcall cmd-to-exec-at-end cmd-info)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1074 (error
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1075 (error "")))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1076 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1077
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1078 (defun viper-describe-arg (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1079 (let (val com)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1080 (setq val (viper-P-val arg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1081 com (viper-getcom arg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1082 (if (null val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1083 (if (null com)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1084 (message "Value is nil, and command is nil")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1085 (message "Value is nil, and command is `%c'" com))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1086 (if (null com)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1087 (message "Value is `%d', and command is nil" val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1088 (message "Value is `%d', and command is `%c'" val com)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1089
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1090 (defun viper-digit-argument (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1091 "Begin numeric argument for the next command."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1092 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1093 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1094 (viper-prefix-arg-value
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1095 last-command-char (if (consp arg) (cdr arg) nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1096
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1097 (defun viper-command-argument (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1098 "Accept a motion command as an argument."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1099 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1100 (let ((viper-intermediate-command 'viper-command-argument))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1101 (condition-case nil
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1102 (viper-prefix-arg-com
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1103 last-command-char
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1104 (cond ((null arg) nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1105 ((consp arg) (car arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1106 ((integerp arg) arg)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1107 (t (error viper-InvalidCommandArgument)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1108 (cond ((null arg) nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1109 ((consp arg) (cdr arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1110 ((integerp arg) nil)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1111 (t (error viper-InvalidCommandArgument))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1112 (quit (setq viper-use-register nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1113 (signal 'quit nil)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1114 (viper-deactivate-mark)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1115
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1116
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1117 ;; repeat last destructive command
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1118
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1119 ;; Append region to text in register REG.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1120 ;; START and END are buffer positions indicating what to append.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1121 (defsubst viper-append-to-register (reg start end)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1122 (set-register reg (concat (if (stringp (get-register reg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1123 (get-register reg) "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1124 (buffer-substring start end))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1125
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1126 ;; Saves last inserted text for possible use by viper-repeat command.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1127 (defun viper-save-last-insertion (beg end)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1128 (setq viper-last-insertion (buffer-substring beg end))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1129 (or (< (length viper-d-com) 5)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1130 (setcar (nthcdr 4 viper-d-com) viper-last-insertion))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1131 (or (null viper-command-ring)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1132 (ring-empty-p viper-command-ring)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1133 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1134 (setcar (nthcdr 4 (viper-current-ring-item viper-command-ring))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1135 viper-last-insertion)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1136 ;; del most recent elt, if identical to the second most-recent
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1137 (viper-cleanup-ring viper-command-ring)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1138 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1139
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1140 (defsubst viper-yank-last-insertion ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1141 "Inserts the text saved by the previous viper-save-last-insertion command."
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1142 (condition-case nil
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1143 (insert viper-last-insertion)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1144 (error nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1145
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1146
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1147 ;; define functions to be executed
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1148
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1149 ;; invoked by the `C' command
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1150 (defun viper-exec-change (m-com com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1151 (or (and (markerp viper-com-point) (marker-position viper-com-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1152 (set-marker viper-com-point (point) (current-buffer)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1153 ;; handle C cmd at the eol and at eob.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1154 (if (or (and (eolp) (= viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1155 (= viper-com-point (point-max)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1156 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1157 (insert " ")(backward-char 1)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1158 (if (= viper-com-point (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1159 (viper-forward-char-carefully))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1160 (set-mark viper-com-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1161 (if (eq m-com 'viper-next-line-at-bol)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1162 (viper-enlarge-region (mark t) (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1163 (if (< (point) (mark t))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1164 (exchange-point-and-mark))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1165 (if (eq (preceding-char) ?\n)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1166 (viper-backward-char-carefully)) ; give back the newline
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1167 (if (= com ?c)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1168 (viper-change (mark t) (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1169 (viper-change-subr (mark t) (point))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1170
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1171 ;; this is invoked by viper-substitute-line
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1172 (defun viper-exec-Change (m-com com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1173 (save-excursion
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1174 (set-mark viper-com-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1175 (viper-enlarge-region (mark t) (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1176 (if viper-use-register
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1177 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1178 (cond ((viper-valid-register viper-use-register '(letter digit))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1179 (copy-to-register
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1180 viper-use-register (mark t) (point) nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1181 ((viper-valid-register viper-use-register '(Letter))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1182 (viper-append-to-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1183 (downcase viper-use-register) (mark t) (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1184 (t (setq viper-use-register nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1185 (error viper-InvalidRegister viper-use-register)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1186 (setq viper-use-register nil)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1187 (delete-region (mark t) (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1188 (open-line 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1189 (if (= com ?C)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1190 (viper-change-state-to-insert)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1191 (viper-yank-last-insertion)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1192
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1193 (defun viper-exec-delete (m-com com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1194 (or (and (markerp viper-com-point) (marker-position viper-com-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1195 (set-marker viper-com-point (point) (current-buffer)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1196 (if viper-use-register
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1197 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1198 (cond ((viper-valid-register viper-use-register '(letter digit))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1199 (copy-to-register
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1200 viper-use-register viper-com-point (point) nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1201 ((viper-valid-register viper-use-register '(Letter))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1202 (viper-append-to-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1203 (downcase viper-use-register) viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1204 (t (setq viper-use-register nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1205 (error viper-InvalidRegister viper-use-register)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1206 (setq viper-use-register nil)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1207 (setq last-command
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1208 (if (eq last-command 'd-command) 'kill-region nil))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1209 (kill-region viper-com-point (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1210 (setq this-command 'd-command)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1211 (if viper-ex-style-motion
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1212 (if (and (eolp) (not (bolp))) (backward-char 1))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1213
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1214 (defun viper-exec-Delete (m-com com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1215 (save-excursion
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1216 (set-mark viper-com-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1217 (viper-enlarge-region (mark t) (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1218 (if viper-use-register
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1219 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1220 (cond ((viper-valid-register viper-use-register '(letter digit))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1221 (copy-to-register
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1222 viper-use-register (mark t) (point) nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1223 ((viper-valid-register viper-use-register '(Letter))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1224 (viper-append-to-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1225 (downcase viper-use-register) (mark t) (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1226 (t (setq viper-use-register nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1227 (error viper-InvalidRegister viper-use-register)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1228 (setq viper-use-register nil)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1229 (setq last-command
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1230 (if (eq last-command 'D-command) 'kill-region nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1231 (kill-region (mark t) (point))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1232 (if (eq m-com 'viper-line) (setq this-command 'D-command)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1233 (back-to-indentation))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1234
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1235 (defun viper-exec-yank (m-com com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1236 (or (and (markerp viper-com-point) (marker-position viper-com-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1237 (set-marker viper-com-point (point) (current-buffer)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1238 (if viper-use-register
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1239 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1240 (cond ((viper-valid-register viper-use-register '(letter digit))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1241 (copy-to-register
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1242 viper-use-register viper-com-point (point) nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1243 ((viper-valid-register viper-use-register '(Letter))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1244 (viper-append-to-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1245 (downcase viper-use-register) viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1246 (t (setq viper-use-register nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1247 (error viper-InvalidRegister viper-use-register)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1248 (setq viper-use-register nil)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1249 (setq last-command nil)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1250 (copy-region-as-kill viper-com-point (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1251 (goto-char viper-com-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1252
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1253 (defun viper-exec-Yank (m-com com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1254 (save-excursion
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1255 (set-mark viper-com-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1256 (viper-enlarge-region (mark t) (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1257 (if viper-use-register
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1258 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1259 (cond ((viper-valid-register viper-use-register '(letter digit))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1260 (copy-to-register
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1261 viper-use-register (mark t) (point) nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1262 ((viper-valid-register viper-use-register '(Letter))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1263 (viper-append-to-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1264 (downcase viper-use-register) (mark t) (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1265 (t (setq viper-use-register nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1266 (error viper-InvalidRegister viper-use-register)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1267 (setq viper-use-register nil)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1268 (setq last-command nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1269 (copy-region-as-kill (mark t) (point)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1270 (viper-deactivate-mark)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1271 (goto-char viper-com-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1272
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1273 (defun viper-exec-bang (m-com com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1274 (save-excursion
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1275 (set-mark viper-com-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1276 (viper-enlarge-region (mark t) (point))
18958
506ec0258d63 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18855
diff changeset
1277 (exchange-point-and-mark)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1278 (shell-command-on-region
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1279 (mark t) (point)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1280 (if (= com ?!)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1281 (setq viper-last-shell-com
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1282 (viper-read-string-with-history
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1283 "!"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1284 nil
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1285 'viper-shell-history
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1286 (car viper-shell-history)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1287 ))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1288 viper-last-shell-com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1289 t)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1290
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1291 (defun viper-exec-equals (m-com com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1292 (save-excursion
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1293 (set-mark viper-com-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1294 (viper-enlarge-region (mark t) (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1295 (if (> (mark t) (point)) (exchange-point-and-mark))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1296 (indent-region (mark t) (point) nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1297
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1298 (defun viper-exec-shift (m-com com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1299 (save-excursion
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1300 (set-mark viper-com-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1301 (viper-enlarge-region (mark t) (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1302 (if (> (mark t) (point)) (exchange-point-and-mark))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1303 (indent-rigidly (mark t) (point)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1304 (if (= com ?>)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1305 viper-shift-width
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1306 (- viper-shift-width))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1307 ;; return point to where it was before shift
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1308 (goto-char viper-com-point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1309
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1310 ;; this is needed because some commands fake com by setting it to ?r, which
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1311 ;; denotes repeated insert command.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1312 (defsubst viper-exec-dummy (m-com com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1313 nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1314
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1315 (defun viper-exec-buffer-search (m-com com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1316 (setq viper-s-string (buffer-substring (point) viper-com-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1317 (setq viper-s-forward t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1318 (setq viper-search-history (cons viper-s-string viper-search-history))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1319 (viper-search viper-s-string viper-s-forward 1))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1320
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1321 (defvar viper-exec-array (make-vector 128 nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1322
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1323 ;; Using a dispatch array allows adding functions like buffer search
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1324 ;; without affecting other functions. Buffer search can now be bound
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1325 ;; to any character.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1326
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1327 (aset viper-exec-array ?c 'viper-exec-change)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1328 (aset viper-exec-array ?C 'viper-exec-Change)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1329 (aset viper-exec-array ?d 'viper-exec-delete)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1330 (aset viper-exec-array ?D 'viper-exec-Delete)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1331 (aset viper-exec-array ?y 'viper-exec-yank)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1332 (aset viper-exec-array ?Y 'viper-exec-Yank)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1333 (aset viper-exec-array ?r 'viper-exec-dummy)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1334 (aset viper-exec-array ?! 'viper-exec-bang)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1335 (aset viper-exec-array ?< 'viper-exec-shift)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1336 (aset viper-exec-array ?> 'viper-exec-shift)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1337 (aset viper-exec-array ?= 'viper-exec-equals)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1338
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1339
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1340
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1341 ;; This function is called by various movement commands to execute a
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1342 ;; destructive command on the region specified by the movement command. For
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1343 ;; instance, if the user types cw, then the command viper-forward-word will
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1344 ;; call viper-execute-com to execute viper-exec-change, which eventually will
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1345 ;; call viper-change to invoke the replace mode on the region.
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1346 ;;
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1347 ;; The var viper-d-com is set to (M-COM VAL COM REG INSETED-TEXT COMMAND-KEYS)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1348 ;; via a call to viper-set-destructive-command, for later use by viper-repeat.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1349 (defun viper-execute-com (m-com val com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1350 (let ((reg viper-use-register))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1351 ;; this is the special command `#'
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1352 (if (> com 128)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1353 (viper-special-prefix-com (- com 128))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1354 (let ((fn (aref viper-exec-array (if (< com 0) (- com) com))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1355 (if (null fn)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1356 (error "%c: %s" com viper-InvalidViCommand)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1357 (funcall fn m-com com))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1358 (if (viper-dotable-command-p com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1359 (viper-set-destructive-command
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1360 (list m-com val
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1361 (if (memq com (list ?c ?C ?!)) (- com) com)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1362 reg nil nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1363 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1364
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1365
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1366 (defun viper-repeat (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1367 "Re-execute last destructive command.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1368 Use the info in viper-d-com, which has the form
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1369 \(com val ch reg inserted-text command-keys\),
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1370 where `com' is the command to be re-executed, `val' is the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1371 argument to `com', `ch' is a flag for repeat, and `reg' is optional;
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1372 if it exists, it is the name of the register for `com'.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1373 If the prefix argument, ARG, is non-nil, it is used instead of `val'."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1374 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1375 (let ((save-point (point)) ; save point before repeating prev cmd
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1376 ;; Pass along that we are repeating a destructive command
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1377 ;; This tells viper-set-destructive-command not to update
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1378 ;; viper-command-ring
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1379 (viper-intermediate-command 'viper-repeat))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1380 (if (eq last-command 'viper-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1381 ;; if the last command was viper-undo, then undo-more
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1382 (viper-undo-more)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1383 ;; otherwise execute the command stored in viper-d-com. if arg is
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1384 ;; non-nil its prefix value is used as new prefix value for the command.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1385 (let ((m-com (car viper-d-com))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1386 (val (viper-P-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1387 (com (nth 2 viper-d-com))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1388 (reg (nth 3 viper-d-com)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1389 (if (null val) (setq val (nth 1 viper-d-com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1390 (if (null m-com) (error "No previous command to repeat."))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1391 (setq viper-use-register reg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1392 (if (nth 4 viper-d-com) ; text inserted by command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1393 (setq viper-last-insertion (nth 4 viper-d-com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1394 viper-d-char (nth 4 viper-d-com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1395 (funcall m-com (cons val com))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1396 (cond ((and (< save-point (point)) viper-keep-point-on-repeat)
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
1397 (goto-char save-point)) ; go back to before repeat.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1398 ((and (< save-point (point)) viper-ex-style-editing-in-insert)
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
1399 (or (bolp) (backward-char 1))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1400 (if (and (eolp) (not (bolp)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1401 (backward-char 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1402 ))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1403 (if viper-undo-needs-adjustment (viper-adjust-undo)) ; take care of undo
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1404 ;; If the prev cmd was rotating the command ring, this means that `.' has
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1405 ;; just executed a command from that ring. So, push it on the ring again.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1406 ;; If we are just executing previous command , then don't push viper-d-com
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1407 ;; because viper-d-com is not fully constructed in this case (its keys and
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1408 ;; the inserted text may be nil). Besides, in this case, the command
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1409 ;; executed by `.' is already on the ring.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1410 (if (eq last-command 'viper-display-current-destructive-command)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1411 (viper-push-onto-ring viper-d-com 'viper-command-ring))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1412 (viper-deactivate-mark)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1413 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1414
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1415 (defun viper-repeat-from-history ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1416 "Repeat a destructive command from history.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1417 Doesn't change viper-command-ring in any way, so `.' will work as before
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1418 executing this command.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1419 This command is supposed to be bound to a two-character Vi macro where
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1420 the second character is a digit 0 to 9. The digit indicates which
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1421 history command to execute. `<char>0' is equivalent to `.', `<char>1'
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1422 invokes the command before that, etc."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1423 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1424 (let* ((viper-intermediate-command 'repeating-display-destructive-command)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1425 (idx (cond (viper-this-kbd-macro
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1426 (string-to-number
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1427 (symbol-name (elt viper-this-kbd-macro 1))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1428 (t 0)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1429 (num idx)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1430 (viper-d-com viper-d-com))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1431
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1432 (or (and (numberp num) (<= 0 num) (<= num 9))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1433 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1434 (setq idx 0
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1435 num 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1436 (message
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1437 "`viper-repeat-from-history' must be invoked as a Vi macro bound to `<key><digit>'")))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1438 (while (< 0 num)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1439 (setq viper-d-com (viper-special-ring-rotate1 viper-command-ring -1))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1440 (setq num (1- num)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1441 (viper-repeat nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1442 (while (> idx num)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1443 (viper-special-ring-rotate1 viper-command-ring 1)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1444 (setq num (1+ num)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1445 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1446
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1447
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1448 ;; The hash-command. It is invoked interactively by the key sequence #<char>.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1449 ;; The chars that can follow `#' are determined by viper-hash-command-p
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1450 (defun viper-special-prefix-com (char)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1451 (cond ((= char ?c)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1452 (downcase-region (min viper-com-point (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1453 (max viper-com-point (point))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1454 ((= char ?C)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1455 (upcase-region (min viper-com-point (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1456 (max viper-com-point (point))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1457 ((= char ?g)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1458 (push-mark viper-com-point t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1459 (viper-global-execute))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1460 ((= char ?q)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1461 (push-mark viper-com-point t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1462 (viper-quote-region))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1463 ((= char ?s) (funcall viper-spell-function viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1464 (t (error "#%c: %s" char viper-InvalidViCommand))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1465
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1466
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1467 ;; undoing
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1468
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1469 (defun viper-undo ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1470 "Undo previous change."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1471 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1472 (message "undo!")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1473 (let ((modified (buffer-modified-p))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1474 (before-undo-pt (point-marker))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1475 (after-change-functions after-change-functions)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1476 undo-beg-posn undo-end-posn)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1477
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1478 ;; no need to remove this hook, since this var has scope inside a let.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1479 (add-hook 'after-change-functions
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1480 '(lambda (beg end len)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1481 (setq undo-beg-posn beg
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1482 undo-end-posn (or end beg))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1483
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1484 (undo-start)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1485 (undo-more 2)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1486 (setq undo-beg-posn (or undo-beg-posn before-undo-pt)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1487 undo-end-posn (or undo-end-posn undo-beg-posn))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1488
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1489 (goto-char undo-beg-posn)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1490 (sit-for 0)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1491 (if (and viper-keep-point-on-undo
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1492 (pos-visible-in-window-p before-undo-pt))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1493 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1494 (push-mark (point-marker) t)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1495 (viper-sit-for-short 300)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1496 (goto-char undo-end-posn)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1497 (viper-sit-for-short 300)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1498 (if (and (> (abs (- undo-beg-posn before-undo-pt)) 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1499 (> (abs (- undo-end-posn before-undo-pt)) 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1500 (goto-char before-undo-pt)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1501 (goto-char undo-beg-posn)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1502 (push-mark before-undo-pt t))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1503 (if (and (eolp) (not (bolp))) (backward-char 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1504 (if (not modified) (set-buffer-modified-p t)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1505 (setq this-command 'viper-undo))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1506
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1507 ;; Continue undoing previous changes.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1508 (defun viper-undo-more ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1509 (message "undo more!")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1510 (condition-case nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1511 (undo-more 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1512 (error (beep)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1513 (message "No further undo information in this buffer")))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1514 (if (and (eolp) (not (bolp))) (backward-char 1))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1515 (setq this-command 'viper-undo))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1516
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1517 ;; The following two functions are used to set up undo properly.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1518 ;; In VI, unlike Emacs, if you open a line, say, and add a bunch of lines,
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1519 ;; they are undone all at once.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1520 (defun viper-adjust-undo ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1521 (let ((inhibit-quit t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1522 tmp tmp2)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1523 (setq viper-undo-needs-adjustment nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1524 (if (listp buffer-undo-list)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1525 (if (setq tmp (memq viper-buffer-undo-list-mark buffer-undo-list))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1526 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1527 (setq tmp2 (cdr tmp)) ; the part after mark
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1528
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1529 ;; cut tail from buffer-undo-list temporarily by direct
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1530 ;; manipulation with pointers in buffer-undo-list
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1531 (setcdr tmp nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1532
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1533 (setq buffer-undo-list (delq nil buffer-undo-list))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1534 (setq buffer-undo-list
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1535 (delq viper-buffer-undo-list-mark buffer-undo-list))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1536 ;; restore tail of buffer-undo-list
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1537 (setq buffer-undo-list (nconc buffer-undo-list tmp2)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1538 (setq buffer-undo-list (delq nil buffer-undo-list))))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1539
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1540
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1541 (defun viper-set-complex-command-for-undo ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1542 (if (listp buffer-undo-list)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1543 (if (not viper-undo-needs-adjustment)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1544 (let ((inhibit-quit t))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1545 (setq buffer-undo-list
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1546 (cons viper-buffer-undo-list-mark buffer-undo-list))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1547 (setq viper-undo-needs-adjustment t)))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1548
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1549
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1550
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1551
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1552 (defun viper-display-current-destructive-command ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1553 (let ((text (nth 4 viper-d-com))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1554 (keys (nth 5 viper-d-com))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1555 (max-text-len 30))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1556
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1557 (setq this-command 'viper-display-current-destructive-command)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1558
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1559 (message " `.' runs %s%s"
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1560 (concat "`" (viper-array-to-string keys) "'")
19079
dfbef8117c6a new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19078
diff changeset
1561 (viper-abbreviate-string
dfbef8117c6a new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19078
diff changeset
1562 (if viper-xemacs-p
dfbef8117c6a new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19078
diff changeset
1563 (replace-in-string text "\n" "^J")
dfbef8117c6a new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19078
diff changeset
1564 text)
dfbef8117c6a new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19078
diff changeset
1565 max-text-len
dfbef8117c6a new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19078
diff changeset
1566 " inserting `" "'" " ......."))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1567 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1568
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1569
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1570 ;; don't change viper-d-com if it was viper-repeat command invoked with `.'
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1571 ;; or in some other way (non-interactively).
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1572 (defun viper-set-destructive-command (list)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1573 (or (eq viper-intermediate-command 'viper-repeat)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1574 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1575 (setq viper-d-com list)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1576 (setcar (nthcdr 5 viper-d-com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1577 (viper-array-to-string (if (arrayp viper-this-command-keys)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1578 viper-this-command-keys
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1579 (this-command-keys))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1580 (viper-push-onto-ring viper-d-com 'viper-command-ring)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1581 (setq viper-this-command-keys nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1582
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1583 (defun viper-prev-destructive-command (next)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1584 "Find previous destructive command in the history of destructive commands.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1585 With prefix argument, find next destructive command."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1586 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1587 (let (cmd viper-intermediate-command)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1588 (if (eq last-command 'viper-display-current-destructive-command)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1589 ;; repeated search through command history
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1590 (setq viper-intermediate-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1591 'repeating-display-destructive-command)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1592 ;; first search through command history--set temp ring
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1593 (setq viper-temp-command-ring (copy-list viper-command-ring)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1594 (setq cmd (if next
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1595 (viper-special-ring-rotate1 viper-temp-command-ring 1)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1596 (viper-special-ring-rotate1 viper-temp-command-ring -1)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1597 (if (null cmd)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1598 ()
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1599 (setq viper-d-com cmd))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1600 (viper-display-current-destructive-command)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1601
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1602 (defun viper-next-destructive-command ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1603 "Find next destructive command in the history of destructive commands."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1604 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1605 (viper-prev-destructive-command 'next))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1606
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1607 (defun viper-insert-prev-from-insertion-ring (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1608 "Cycle through insertion ring in the direction of older insertions.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1609 Undoes previous insertion and inserts new.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1610 With prefix argument, cycles in the direction of newer elements.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1611 In minibuffer, this command executes whatever the invocation key is bound
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1612 to in the global map, instead of cycling through the insertion ring."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1613 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1614 (let (viper-intermediate-command)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1615 (if (eq last-command 'viper-insert-from-insertion-ring)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1616 (progn ; repeated search through insertion history
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1617 (setq viper-intermediate-command 'repeating-insertion-from-ring)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1618 (if (eq viper-current-state 'replace-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1619 (undo 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1620 (if viper-last-inserted-string-from-insertion-ring
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1621 (backward-delete-char
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1622 (length viper-last-inserted-string-from-insertion-ring))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1623 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1624 ;;first search through insertion history
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1625 (setq viper-temp-insertion-ring (copy-list viper-insertion-ring)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1626 (setq this-command 'viper-insert-from-insertion-ring)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1627 ;; so that things will be undone properly
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1628 (setq buffer-undo-list (cons nil buffer-undo-list))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1629 (setq viper-last-inserted-string-from-insertion-ring
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1630 (viper-special-ring-rotate1 viper-temp-insertion-ring (if arg 1 -1)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1631
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1632 ;; this change of viper-intermediate-command must come after
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1633 ;; viper-special-ring-rotate1, so that the ring will rotate, but before the
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1634 ;; insertion.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1635 (setq viper-intermediate-command nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1636 (if viper-last-inserted-string-from-insertion-ring
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1637 (insert viper-last-inserted-string-from-insertion-ring))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1638 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1639
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1640 (defun viper-insert-next-from-insertion-ring ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1641 "Cycle through insertion ring in the direction of older insertions.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1642 Undo previous insertion and inserts new."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1643 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1644 (viper-insert-prev-from-insertion-ring 'next))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1645
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1646
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1647 ;; some region utilities
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1648
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1649 ;; If at the last line of buffer, add \\n before eob, if newline is missing.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1650 (defun viper-add-newline-at-eob-if-necessary ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1651 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1652 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1653 ;; make sure all lines end with newline, unless in the minibuffer or
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1654 ;; when requested otherwise (require-final-newline is nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1655 (if (and (eobp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1656 (not (bolp))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1657 require-final-newline
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1658 (not (viper-is-in-minibuffer))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1659 (not buffer-read-only))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1660 (insert "\n"))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1661
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1662 (defun viper-yank-defun ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1663 (mark-defun)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1664 (copy-region-as-kill (point) (mark t)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1665
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1666 ;; Enlarge region between BEG and END.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1667 (defun viper-enlarge-region (beg end)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1668 (or beg (setq beg end)) ; if beg is nil, set to end
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1669 (or end (setq end beg)) ; if end is nil, set to beg
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1670
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1671 (if (< beg end)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1672 (progn (goto-char beg) (set-mark end))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1673 (goto-char end)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1674 (set-mark beg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1675 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1676 (exchange-point-and-mark)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1677 (if (or (not (eobp)) (not (bolp))) (forward-line 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1678 (if (not (eobp)) (beginning-of-line))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1679 (if (> beg end) (exchange-point-and-mark)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1680
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1681
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1682 ;; Quote region by each line with a user supplied string.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1683 (defun viper-quote-region ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1684 (setq viper-quote-string
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1685 (viper-read-string-with-history
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1686 "Quote string: "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1687 nil
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1688 'viper-quote-region-history
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1689 viper-quote-string))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1690 (viper-enlarge-region (point) (mark t))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1691 (if (> (point) (mark t)) (exchange-point-and-mark))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1692 (insert viper-quote-string)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1693 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1694 (forward-line 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1695 (while (and (< (point) (mark t)) (bolp))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1696 (insert viper-quote-string)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1697 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1698 (forward-line 1)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1699
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1700 ;; Tells whether BEG is on the same line as END.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1701 ;; If one of the args is nil, it'll return nil.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1702 (defun viper-same-line (beg end)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1703 (let ((selective-display nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1704 (incr 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1705 temp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1706 (if (and beg end (> beg end))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1707 (setq temp beg
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1708 beg end
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1709 end temp))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1710 (if (and beg end)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1711 (cond ((or (> beg (point-max)) (> end (point-max))) ; out of range
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1712 nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1713 (t
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1714 ;; This 'if' is needed because Emacs treats the next empty line
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1715 ;; as part of the previous line.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1716 (if (= (viper-line-pos 'start) end)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1717 (setq incr 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1718 (<= (+ incr (count-lines beg end)) 1))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1719 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1720
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1721
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1722 ;; Check if the string ends with a newline.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1723 (defun viper-end-with-a-newline-p (string)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1724 (or (string= string "")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1725 (= (viper-seq-last-elt string) ?\n)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1726
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1727 (defun viper-tmp-insert-at-eob (msg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1728 (let ((savemax (point-max)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1729 (goto-char savemax)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1730 (insert msg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1731 (sit-for 2)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1732 (goto-char savemax) (delete-region (point) (point-max))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1733 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1734
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1735
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1736
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1737 ;;; Minibuffer business
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1738
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1739 (defsubst viper-set-minibuffer-style ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1740 (add-hook 'minibuffer-setup-hook 'viper-minibuffer-setup-sentinel))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1741
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1742
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1743 (defun viper-minibuffer-setup-sentinel ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1744 (let ((hook (if viper-vi-style-in-minibuffer
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1745 'viper-change-state-to-insert
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1746 'viper-change-state-to-emacs)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1747 (funcall hook)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1748 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1749
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1750 ;; Interpret last event in the local map
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1751 (defun viper-exit-minibuffer ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1752 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1753 (let (command)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1754 (setq command (local-key-binding (char-to-string last-command-char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1755 (if command
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1756 (command-execute command)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1757 (exit-minibuffer))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1758
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1759
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1760 ;;; Reading string with history
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1761
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1762 (defun viper-read-string-with-history (prompt &optional initial
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1763 history-var default keymap)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1764 ;; Read string, prompting with PROMPT and inserting the INITIAL
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1765 ;; value. Uses HISTORY-VAR. DEFAULT is the default value to accept if the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1766 ;; input is an empty string. Use KEYMAP, if given, or the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1767 ;; minibuffer-local-map.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1768 ;; Default value is displayed until the user types something in the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1769 ;; minibuffer.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1770 (let ((minibuffer-setup-hook
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1771 '(lambda ()
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1772 (if (stringp initial)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1773 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1774 ;; don't wait if we have unread events or in kbd macro
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1775 (or unread-command-events
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1776 executing-kbd-macro
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1777 (sit-for 840))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1778 (erase-buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1779 (insert initial)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1780 (viper-minibuffer-setup-sentinel)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1781 (val "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1782 (padding "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1783 temp-msg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1784
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1785 (setq keymap (or keymap minibuffer-local-map)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1786 initial (or initial "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1787 temp-msg (if default
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1788 (format "(default: %s) " default)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1789 ""))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1790
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1791 (setq viper-incomplete-ex-cmd nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1792 (setq val (read-from-minibuffer prompt
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1793 (concat temp-msg initial val padding)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1794 keymap nil history-var))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1795 (setq minibuffer-setup-hook nil
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1796 padding (viper-array-to-string (this-command-keys))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1797 temp-msg "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1798 ;; the following tries to be smart about what to put in history
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1799 (if (not (string= val (car (eval history-var))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1800 (set history-var (cons val (eval history-var))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1801 (if (or (string= (nth 0 (eval history-var)) (nth 1 (eval history-var)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1802 (string= (nth 0 (eval history-var)) ""))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1803 (set history-var (cdr (eval history-var))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1804 ;; If the user enters nothing but the prev cmd wasn't viper-ex,
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1805 ;; viper-command-argument, or `! shell-command', this probably means
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1806 ;; that the user typed something then erased. Return "" in this case, not
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1807 ;; the default---the default is too confusing in this case.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1808 (cond ((and (string= val "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1809 (not (string= prompt "!")) ; was a `! shell-command'
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1810 (not (memq last-command
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1811 '(viper-ex
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1812 viper-command-argument
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1813 t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1814 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1815 "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1816 ((string= val "") (or default ""))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1817 (t val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1818 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1819
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1820
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1821
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1822 ;; insertion commands
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1823
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1824 ;; Called when state changes from Insert Vi command mode.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1825 ;; Repeats the insertion command if Insert state was entered with prefix
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1826 ;; argument > 1.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1827 (defun viper-repeat-insert-command ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1828 (let ((i-com (car viper-d-com))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1829 (val (nth 1 viper-d-com))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1830 (char (nth 2 viper-d-com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1831 (if (and val (> val 1)) ; first check that val is non-nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1832 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1833 (setq viper-d-com (list i-com (1- val) ?r nil nil nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1834 (viper-repeat nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1835 (setq viper-d-com (list i-com val char nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1836 ))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1837
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1838 (defun viper-insert (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1839 "Insert before point."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1840 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1841 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1842 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1843 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1844 (viper-set-destructive-command (list 'viper-insert val ?r nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1845 (if com
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1846 (viper-loop val (viper-yank-last-insertion))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1847 (viper-change-state-to-insert))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1848
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1849 (defun viper-append (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1850 "Append after point."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1851 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1852 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1853 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1854 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1855 (viper-set-destructive-command (list 'viper-append val ?r nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1856 (if (not (eolp)) (forward-char))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1857 (if (equal com ?r)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1858 (viper-loop val (viper-yank-last-insertion))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1859 (viper-change-state-to-insert))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1860
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1861 (defun viper-Append (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1862 "Append at end of line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1863 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1864 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1865 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1866 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1867 (viper-set-destructive-command (list 'viper-Append val ?r nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1868 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1869 (if (equal com ?r)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1870 (viper-loop val (viper-yank-last-insertion))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1871 (viper-change-state-to-insert))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1872
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1873 (defun viper-Insert (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1874 "Insert before first non-white."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1875 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1876 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1877 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1878 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1879 (viper-set-destructive-command (list 'viper-Insert val ?r nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1880 (back-to-indentation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1881 (if (equal com ?r)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1882 (viper-loop val (viper-yank-last-insertion))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1883 (viper-change-state-to-insert))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1884
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1885 (defun viper-open-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1886 "Open line below."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1887 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1888 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1889 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1890 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1891 (viper-set-destructive-command (list 'viper-open-line val ?r nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1892 (let ((col (current-indentation)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1893 (if (equal com ?r)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1894 (viper-loop val
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1895 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1896 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1897 (newline 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1898 (if viper-auto-indent
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1899 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1900 (setq viper-cted t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1901 (if viper-electric-mode
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1902 (indent-according-to-mode)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1903 (indent-to col))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1904 ))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1905 (viper-yank-last-insertion)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1906 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1907 (newline 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1908 (if viper-auto-indent
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1909 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1910 (setq viper-cted t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1911 (if viper-electric-mode
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1912 (indent-according-to-mode)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1913 (indent-to col))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1914 (viper-change-state-to-insert)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1915
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1916 (defun viper-Open-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1917 "Open line above."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1918 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1919 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1920 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1921 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1922 (viper-set-destructive-command (list 'viper-Open-line val ?r nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1923 (let ((col (current-indentation)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1924 (if (equal com ?r)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1925 (viper-loop val
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1926 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1927 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1928 (open-line 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1929 (if viper-auto-indent
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1930 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1931 (setq viper-cted t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1932 (if viper-electric-mode
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1933 (indent-according-to-mode)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1934 (indent-to col))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1935 ))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1936 (viper-yank-last-insertion)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1937 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1938 (open-line 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1939 (if viper-auto-indent
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1940 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1941 (setq viper-cted t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1942 (if viper-electric-mode
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1943 (indent-according-to-mode)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1944 (indent-to col))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1945 ))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1946 (viper-change-state-to-insert)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1947
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1948 (defun viper-open-line-at-point (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1949 "Open line at point."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1950 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1951 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1952 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1953 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1954 (viper-set-destructive-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1955 (list 'viper-open-line-at-point val ?r nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1956 (if (equal com ?r)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1957 (viper-loop val
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1958 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1959 (open-line 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1960 (viper-yank-last-insertion)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1961 (open-line 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1962 (viper-change-state-to-insert))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1963
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1964 (defun viper-substitute (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1965 "Substitute characters."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1966 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1967 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1968 (com (viper-getcom arg)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1969 (push-mark nil t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1970 (forward-char val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1971 (if (equal com ?r)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1972 (viper-change-subr (mark t) (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1973 (viper-change (mark t) (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1974 (viper-set-destructive-command (list 'viper-substitute val ?r nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1975 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1976
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1977 ;; Command bound to S
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1978 (defun viper-substitute-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1979 "Substitute lines."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1980 (interactive "p")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1981 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1982 (viper-line (cons arg ?C)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1983
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1984 ;; Prepare for replace
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1985 (defun viper-start-replace ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1986 (setq viper-began-as-replace t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1987 viper-sitting-in-replace t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1988 viper-replace-chars-to-delete 0
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1989 viper-replace-chars-deleted 0)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1990 (viper-add-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1991 'viper-after-change-functions 'viper-replace-mode-spy-after t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1992 (viper-add-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1993 'viper-before-change-functions 'viper-replace-mode-spy-before t)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
1994 ;; this will get added repeatedly, but no harm
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1995 (add-hook 'after-change-functions 'viper-after-change-sentinel t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1996 (add-hook 'before-change-functions 'viper-before-change-sentinel t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1997 (viper-move-marker-locally 'viper-last-posn-in-replace-region
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1998 (viper-replace-start))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
1999 (viper-add-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2000 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2001 (viper-add-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2002 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel t)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2003 ;; guard against a smartie who switched from R-replace to normal replace
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2004 (viper-remove-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2005 'viper-post-command-hooks 'viper-R-state-post-command-sentinel)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2006 (if overwrite-mode (overwrite-mode nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2007 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2008
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2009
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2010 ;; checks how many chars were deleted by the last change
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2011 (defun viper-replace-mode-spy-before (beg end)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2012 (setq viper-replace-chars-deleted
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2013 (- end beg
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2014 (max 0 (- end (viper-replace-end)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2015 (max 0 (- (viper-replace-start) beg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2016 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2017
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2018 ;; Invoked as an after-change-function to set up parameters of the last change
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2019 (defun viper-replace-mode-spy-after (beg end length)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2020 (if (memq viper-intermediate-command '(repeating-insertion-from-ring))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2021 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2022 (setq viper-replace-chars-to-delete 0)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2023 (viper-move-marker-locally
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2024 'viper-last-posn-in-replace-region (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2025
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2026 (let (beg-col end-col real-end chars-to-delete)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2027 (setq real-end (min end (viper-replace-end)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2028 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2029 (goto-char beg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2030 (setq beg-col (current-column))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2031 (goto-char real-end)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2032 (setq end-col (current-column)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2033
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2034 ;; If beg of change is outside the replacement region, then don't
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2035 ;; delete anything in the repl region (set chars-to-delete to 0).
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2036 ;;
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2037 ;; This works fine except that we have to take special care of
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2038 ;; dabbrev-expand. The problem stems from new-dabbrev.el, which
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2039 ;; sometimes simply shifts the repl region rightwards, without
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2040 ;; deleting an equal amount of characters.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2041 ;;
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2042 ;; The reason why new-dabbrev.el causes this are this:
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2043 ;; if one dinamically completes a partial word that starts before the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2044 ;; replacement region (but ends inside) then new-dabbrev.el first
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2045 ;; moves cursor backwards, to the beginning of the word to be
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2046 ;; completed (say, pt A). Then it inserts the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2047 ;; completed word and then deletes the old, incomplete part.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2048 ;; Since the complete word is inserted at position before the repl
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2049 ;; region, the next If-statement would have set chars-to-delete to 0
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2050 ;; unless we check for the current command, which must be
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2051 ;; dabbrev-expand.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2052 ;;
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2053 ;; In fact, it might be also useful to have overlays for insert
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2054 ;; regions as well, since this will let us capture the situation when
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2055 ;; dabbrev-expand goes back past the insertion point to find the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2056 ;; beginning of the word to be expanded.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2057 (if (or (and (<= (viper-replace-start) beg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2058 (<= beg (viper-replace-end)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2059 (and (= length 0) (eq this-command 'dabbrev-expand)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2060 (setq chars-to-delete
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2061 (max (- end-col beg-col) (- real-end beg) 0))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2062 (setq chars-to-delete 0))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2063
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2064 ;; if beg = last change position, it means that we are within the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2065 ;; same command that does multiple changes. Moreover, it means
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2066 ;; that we have two subsequent changes (insert/delete) that
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2067 ;; complement each other.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2068 (if (= beg (marker-position viper-last-posn-in-replace-region))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2069 (setq viper-replace-chars-to-delete
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2070 (- (+ chars-to-delete viper-replace-chars-to-delete)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2071 viper-replace-chars-deleted))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2072 (setq viper-replace-chars-to-delete chars-to-delete))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2073
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2074 (viper-move-marker-locally
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2075 'viper-last-posn-in-replace-region
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2076 (max (if (> end (viper-replace-end)) (viper-replace-start) end)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2077 (or (marker-position viper-last-posn-in-replace-region)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2078 (viper-replace-start))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2079 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2080
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2081 (setq viper-replace-chars-to-delete
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2082 (max 0
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2083 (min viper-replace-chars-to-delete
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2084 (- (viper-replace-end) viper-last-posn-in-replace-region)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2085 (- (viper-line-pos 'end)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2086 viper-last-posn-in-replace-region)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2087 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2088 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2089
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2090
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2091 ;; Delete stuff between posn and the end of viper-replace-overlay-marker, if
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2092 ;; posn is within the overlay.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2093 (defun viper-finish-change (posn)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2094 (viper-remove-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2095 'viper-after-change-functions 'viper-replace-mode-spy-after)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2096 (viper-remove-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2097 'viper-before-change-functions 'viper-replace-mode-spy-before)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2098 (viper-remove-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2099 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2100 (viper-remove-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2101 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2102 (viper-restore-cursor-color-after-replace)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2103 (setq viper-sitting-in-replace nil) ; just in case we'll need to know it
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2104 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2105 (if (and
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2106 viper-replace-overlay
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2107 (>= posn (viper-replace-start))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2108 (< posn (viper-replace-end)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2109 (delete-region posn (viper-replace-end)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2110 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2111
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2112 (if (eq viper-current-state 'replace-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2113 (viper-downgrade-to-insert))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2114 ;; replace mode ended => nullify viper-last-posn-in-replace-region
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2115 (viper-move-marker-locally 'viper-last-posn-in-replace-region nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2116 (viper-hide-replace-overlay)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2117 (viper-refresh-mode-line)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2118 (viper-put-string-on-kill-ring viper-last-replace-region)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2119 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2120
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2121 ;; Make STRING be the first element of the kill ring.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2122 (defun viper-put-string-on-kill-ring (string)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2123 (setq kill-ring (cons string kill-ring))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2124 (if (> (length kill-ring) kill-ring-max)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2125 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2126 (setq kill-ring-yank-pointer kill-ring))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2127
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2128 (defun viper-finish-R-mode ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2129 (viper-remove-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2130 'viper-post-command-hooks 'viper-R-state-post-command-sentinel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2131 (viper-remove-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2132 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2133 (viper-downgrade-to-insert))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2134
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2135 (defun viper-start-R-mode ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2136 ;; Leave arg as 1, not t: XEmacs insists that it must be a pos number
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2137 (overwrite-mode 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2138 (viper-add-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2139 'viper-post-command-hooks 'viper-R-state-post-command-sentinel t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2140 (viper-add-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2141 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel t)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2142 ;; guard against a smartie who switched from R-replace to normal replace
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2143 (viper-remove-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2144 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2145 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2146
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2147
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2148
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2149 (defun viper-replace-state-exit-cmd ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2150 "Binding for keys that cause Replace state to switch to Vi or to Insert.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2151 These keys are ESC, RET, and LineFeed"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2152 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2153 (if overwrite-mode ;; If you are in replace mode invoked via 'R'
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2154 (viper-finish-R-mode)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2155 (viper-finish-change viper-last-posn-in-replace-region))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2156 (let (com)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2157 (if (eq this-command 'viper-intercept-ESC-key)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2158 (setq com 'viper-exit-insert-state)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2159 (viper-set-unread-command-events last-input-char)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2160 (setq com (key-binding (read-key-sequence nil))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2161
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2162 (condition-case conds
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2163 (command-execute com)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2164 (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2165 (viper-message-conditions conds)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2166 )
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2167 (viper-hide-replace-overlay))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2168
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2169
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2170 (defun viper-replace-state-carriage-return ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2171 "Carriage return in Viper replace state."
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2172 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2173 ;; If Emacs start supporting overlay maps, as it currently supports
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2174 ;; text-property maps, we could do away with viper-replace-minor-mode and
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2175 ;; just have keymap attached to replace overlay. Then the "if part" of this
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2176 ;; statement can be deleted.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2177 (if (or (< (point) (viper-replace-start))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2178 (> (point) (viper-replace-end)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2179 (let (viper-replace-minor-mode com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2180 (viper-set-unread-command-events last-input-char)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2181 (setq com (key-binding (read-key-sequence nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2182 (condition-case conds
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2183 (command-execute com)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2184 (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2185 (viper-message-conditions conds))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2186 (if (not viper-allow-multiline-replace-regions)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2187 (viper-replace-state-exit-cmd)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2188 (if (viper-same-line (point) (viper-replace-end))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2189 (viper-replace-state-exit-cmd)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2190 ;; delete the rest of line
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2191 (delete-region (point) (viper-line-pos 'end))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2192 (save-excursion
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2193 (end-of-line)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2194 (if (eobp) (error "Last line in buffer")))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2195 ;; skip to the next line
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2196 (forward-line 1)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2197 (back-to-indentation)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2198 ))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2199
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2200
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2201 ;; This is the function bound to 'R'---unlimited replace.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2202 ;; Similar to Emacs's own overwrite-mode.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2203 (defun viper-overwrite (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2204 "Begin overwrite mode."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2205 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2206 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2207 (com (viper-getcom arg)) (len))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2208 (viper-set-destructive-command (list 'viper-overwrite val ?r nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2209 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2210 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2211 ;; Viper saves inserted text in viper-last-insertion
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2212 (setq len (length viper-last-insertion))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2213 (delete-char len)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2214 (viper-loop val (viper-yank-last-insertion)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2215 (setq last-command 'viper-overwrite)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2216 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2217 (viper-set-replace-overlay (point) (viper-line-pos 'end))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2218 (viper-change-state-to-replace)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2219 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2220
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2221
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2222 ;; line commands
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2223
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2224 (defun viper-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2225 (let ((val (car arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2226 (com (cdr arg)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2227 (viper-move-marker-locally 'viper-com-point (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2228 (if (not (eobp))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2229 (viper-next-line-carefully (1- val)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2230 ;; this ensures that dd, cc, D, yy will do the right thing on the last
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2231 ;; line of buffer when this line has no \n.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2232 (viper-add-newline-at-eob-if-necessary)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2233 (viper-execute-com 'viper-line val com))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2234 (if (and (eobp) (not (bobp))) (forward-line -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2235 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2236
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2237 (defun viper-yank-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2238 "Yank ARG lines (in Vi's sense)."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2239 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2240 (let ((val (viper-p-val arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2241 (viper-line (cons val ?Y))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2242
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2243
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2244 ;; region commands
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2245
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2246 (defun viper-region (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2247 "Execute command on a region."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2248 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2249 (let ((val (viper-P-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2250 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2251 (viper-move-marker-locally 'viper-com-point (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2252 (exchange-point-and-mark)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2253 (viper-execute-com 'viper-region val com)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2254
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2255 (defun viper-Region (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2256 "Execute command on a Region."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2257 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2258 (let ((val (viper-P-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2259 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2260 (viper-move-marker-locally 'viper-com-point (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2261 (exchange-point-and-mark)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2262 (viper-execute-com 'viper-Region val com)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2263
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2264 (defun viper-replace-char (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2265 "Replace the following ARG chars by the character read."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2266 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2267 (if (and (eolp) (bolp)) (error "No character to replace here"))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2268 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2269 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2270 (viper-replace-char-subr com val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2271 (if (and (eolp) (not (bolp))) (forward-char 1))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2272 (viper-set-destructive-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2273 (list 'viper-replace-char val ?r nil viper-d-char nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2274 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2275
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2276 (defun viper-replace-char-subr (com arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2277 (let ((take-care-of-iso-accents
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2278 (and (boundp 'iso-accents-mode) viper-automatic-iso-accents))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2279 char)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2280 (setq char (if (equal com ?r)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2281 viper-d-char
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2282 (read-char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2283 (if (and take-care-of-iso-accents (memq char '(?' ?\" ?^ ?~)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2284 ;; get European characters
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2285 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2286 (iso-accents-mode 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2287 (viper-set-unread-command-events char)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2288 (setq char (aref (read-key-sequence nil) 0))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2289 (iso-accents-mode -1)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2290 (delete-char arg t)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2291 (setq viper-d-char char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2292 (viper-loop (if (> arg 0) arg (- arg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2293 (if (eq char ?\C-m) (insert "\n") (insert char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2294 (backward-char arg)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2295
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2296
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2297 ;; basic cursor movement. j, k, l, h commands.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2298
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2299 (defun viper-forward-char (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2300 "Move point right ARG characters (left if ARG negative).
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2301 On reaching end of line, stop and signal error."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2302 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2303 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2304 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2305 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2306 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2307 (if viper-ex-style-motion
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2308 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2309 ;; the boundary condition check gets weird here because
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2310 ;; forward-char may be the parameter of a delete, and 'dl' works
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2311 ;; just like 'x' for the last char on a line, so we have to allow
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2312 ;; the forward motion before the 'viper-execute-com', but, of
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2313 ;; course, 'dl' doesn't work on an empty line, so we have to
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2314 ;; catch that condition before 'viper-execute-com'
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2315 (if (and (eolp) (bolp)) (error "") (forward-char val))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2316 (if com (viper-execute-com 'viper-forward-char val com))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2317 (if (eolp) (progn (backward-char 1) (error ""))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2318 (forward-char val)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2319 (if com (viper-execute-com 'viper-forward-char val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2320
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2321 (defun viper-backward-char (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2322 "Move point left ARG characters (right if ARG negative).
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2323 On reaching beginning of line, stop and signal error."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2324 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2325 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2326 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2327 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2328 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2329 (if viper-ex-style-motion
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2330 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2331 (if (bolp) (error "") (backward-char val))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2332 (if com (viper-execute-com 'viper-backward-char val com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2333 (backward-char val)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2334 (if com (viper-execute-com 'viper-backward-char val com)))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2335
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2336 ;; Like forward-char, but doesn't move at end of buffer.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2337 (defun viper-forward-char-carefully (&optional arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2338 (setq arg (or arg 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2339 (if (>= (point-max) (+ (point) arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2340 (forward-char arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2341 (goto-char (point-max))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2342
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2343 ;; Like backward-char, but doesn't move at end of buffer.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2344 (defun viper-backward-char-carefully (&optional arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2345 (setq arg (or arg 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2346 (if (<= (point-min) (- (point) arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2347 (backward-char arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2348 (goto-char (point-min))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2349
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2350 (defun viper-next-line-carefully (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2351 (condition-case nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2352 (next-line arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2353 (error nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2354
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2355
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2356
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2357 ;;; Word command
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2358
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2359 ;; Words are formed from alpha's and nonalphas - <sp>,\t\n are separators for
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2360 ;; word movement. When executed with a destructive command, \n is usually left
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2361 ;; untouched for the last word. Viper uses syntax table to determine what is a
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2362 ;; word and what is a separator. However, \n is always a separator. Also, if
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2363 ;; viper-syntax-preference is 'vi, then `_' is part of the word.
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2364
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2365 ;; skip only one \n
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2366 (defun viper-skip-separators (forward)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2367 (if forward
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2368 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2369 (viper-skip-all-separators-forward 'within-line)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2370 (if (looking-at "\n")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2371 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2372 (forward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2373 (viper-skip-all-separators-forward 'within-line))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2374 (viper-skip-all-separators-backward 'within-line)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2375 (backward-char)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2376 (if (looking-at "\n")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2377 (viper-skip-all-separators-backward 'within-line)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2378 (forward-char))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2379
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2380 (defun viper-forward-word-kernel (val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2381 (while (> val 0)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2382 (cond ((viper-looking-at-alpha)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2383 (viper-skip-alpha-forward "_")
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2384 (viper-skip-separators t))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2385 ((viper-looking-at-separator)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2386 (viper-skip-separators t))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2387 ((not (viper-looking-at-alphasep))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2388 (viper-skip-nonalphasep-forward)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2389 (viper-skip-separators t)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2390 (setq val (1- val))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2391
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2392 ;; first search backward for pat. Then skip chars backwards using aux-pat
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2393 (defun viper-fwd-skip (pat aux-pat lim)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2394 (if (and (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2395 (re-search-backward pat lim t))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2396 (= (point) (match-end 0)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2397 (goto-char (match-beginning 0)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2398 (skip-chars-backward aux-pat lim)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2399 (if (= (point) lim)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2400 (viper-forward-char-carefully))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2401 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2402
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2403
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2404 (defun viper-forward-word (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2405 "Forward word."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2406 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2407 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2408 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2409 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2410 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2411 (viper-forward-word-kernel val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2412 (if com (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2413 (cond ((memq com (list ?c (- ?c)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2414 (viper-fwd-skip "\n[ \t]*" " \t" viper-com-point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2415 ;; Yank words including the whitespace, but not newline
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2416 ((memq com (list ?y (- ?y)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2417 (viper-fwd-skip "\n[ \t]*" "" viper-com-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2418 ((viper-dotable-command-p com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2419 (viper-fwd-skip "\n[ \t]*" "" viper-com-point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2420 (viper-execute-com 'viper-forward-word val com)))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2421
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2422
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2423 (defun viper-forward-Word (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2424 "Forward word delimited by white characters."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2425 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2426 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2427 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2428 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2429 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2430 (viper-loop val
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2431 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2432 (viper-skip-nonseparators 'forward)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2433 (viper-skip-separators t)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2434 (if com (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2435 (cond ((memq com (list ?c (- ?c)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2436 (viper-fwd-skip "\n[ \t]*" " \t" viper-com-point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2437 ;; Yank words including the whitespace, but not newline
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2438 ((memq com (list ?y (- ?y)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2439 (viper-fwd-skip "\n[ \t]*" "" viper-com-point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2440 ((viper-dotable-command-p com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2441 (viper-fwd-skip "\n[ \t]*" "" viper-com-point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2442 (viper-execute-com 'viper-forward-Word val com)))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2443
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2444
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2445 ;; this is a bit different from Vi, but Vi's end of word
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2446 ;; makes no sense whatsoever
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2447 (defun viper-end-of-word-kernel ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2448 (if (viper-end-of-word-p) (forward-char))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2449 (if (viper-looking-at-separator)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2450 (viper-skip-all-separators-forward))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2451
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2452 (cond ((viper-looking-at-alpha) (viper-skip-alpha-forward "_"))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2453 ((not (viper-looking-at-alphasep)) (viper-skip-nonalphasep-forward)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2454 (viper-backward-char-carefully))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2455
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2456 (defun viper-end-of-word-p ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2457 (or (eobp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2458 (save-excursion
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2459 (cond ((viper-looking-at-alpha)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2460 (forward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2461 (not (viper-looking-at-alpha)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2462 ((not (viper-looking-at-alphasep))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2463 (forward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2464 (viper-looking-at-alphasep))))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2465
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2466
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2467 (defun viper-end-of-word (arg &optional careful)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2468 "Move point to end of current word."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2469 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2470 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2471 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2472 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2473 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2474 (viper-loop val (viper-end-of-word-kernel))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2475 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2476 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2477 (forward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2478 (viper-execute-com 'viper-end-of-word val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2479
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2480 (defun viper-end-of-Word (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2481 "Forward to end of word delimited by white character."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2482 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2483 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2484 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2485 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2486 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2487 (viper-loop val
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2488 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2489 (viper-end-of-word-kernel)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2490 (viper-skip-nonseparators 'forward)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2491 (backward-char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2492 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2493 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2494 (forward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2495 (viper-execute-com 'viper-end-of-Word val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2496
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2497 (defun viper-backward-word-kernel (val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2498 (while (> val 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2499 (backward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2500 (cond ((viper-looking-at-alpha)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2501 (viper-skip-alpha-backward "_"))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2502 ((viper-looking-at-separator)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2503 (forward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2504 (viper-skip-separators nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2505 (backward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2506 (cond ((viper-looking-at-alpha)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2507 (viper-skip-alpha-backward "_"))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2508 ((not (viper-looking-at-alphasep))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2509 (viper-skip-nonalphasep-backward))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2510 (t (forward-char))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2511 ((not (viper-looking-at-alphasep))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2512 (viper-skip-nonalphasep-backward)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2513 (setq val (1- val))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2514
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2515 (defun viper-backward-word (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2516 "Backward word."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2517 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2518 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2519 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2520 (com (viper-getcom arg)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2521 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2522 (let (i)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2523 (if (setq i (save-excursion (backward-char) (looking-at "\n")))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2524 (backward-char))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2525 (viper-move-marker-locally 'viper-com-point (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2526 (if i (forward-char))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2527 (viper-backward-word-kernel val)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2528 (if com (viper-execute-com 'viper-backward-word val com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2529
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2530 (defun viper-backward-Word (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2531 "Backward word delimited by white character."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2532 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2533 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2534 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2535 (com (viper-getcom arg)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2536 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2537 (let (i)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2538 (if (setq i (save-excursion (backward-char) (looking-at "\n")))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2539 (backward-char))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2540 (viper-move-marker-locally 'viper-com-point (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2541 (if i (forward-char))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2542 (viper-loop val
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2543 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2544 (viper-skip-separators nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2545 (viper-skip-nonseparators 'backward)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2546 (if com (viper-execute-com 'viper-backward-Word val com))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2547
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2548
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2549
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2550 ;; line commands
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2551
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2552 (defun viper-beginning-of-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2553 "Go to beginning of line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2554 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2555 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2556 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2557 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2558 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2559 (beginning-of-line val)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2560 (if com (viper-execute-com 'viper-beginning-of-line val com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2561
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2562 (defun viper-bol-and-skip-white (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2563 "Beginning of line at first non-white character."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2564 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2565 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2566 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2567 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2568 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2569 (forward-to-indentation (1- val))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2570 (if com (viper-execute-com 'viper-bol-and-skip-white val com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2571
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2572 (defun viper-goto-eol (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2573 "Go to end of line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2574 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2575 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2576 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2577 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2578 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2579 (end-of-line val)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2580 (if com (viper-execute-com 'viper-goto-eol val com))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2581 (if viper-ex-style-motion
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2582 (if (and (eolp) (not (bolp))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2583 ;; a fix for viper-change-to-eol
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2584 (not (equal viper-current-state 'insert-state)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2585 (backward-char 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2586 ))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2587
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2588
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2589 (defun viper-goto-col (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2590 "Go to ARG's column."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2591 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2592 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2593 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2594 (com (viper-getcom arg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2595 line-len)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2596 (setq line-len (- (viper-line-pos 'end) (viper-line-pos 'start)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2597 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2598 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2599 (forward-char (1- (min line-len val)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2600 (while (> (current-column) (1- val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2601 (backward-char 1))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2602 (if com (viper-execute-com 'viper-goto-col val com))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2603 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2604 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2605 (if (> val (current-column)) (error "")))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2606 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2607
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2608
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2609 (defun viper-next-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2610 "Go to next line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2611 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2612 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2613 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2614 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2615 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2616 (next-line val)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2617 (if viper-ex-style-motion
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2618 (if (and (eolp) (not (bolp))) (backward-char 1)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2619 (setq this-command 'next-line)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2620 (if com (viper-execute-com 'viper-next-line val com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2621
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2622 (defun viper-next-line-at-bol (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2623 "Next line at beginning of line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2624 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2625 (viper-leave-region-active)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2626 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2627 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2628 (if (eobp) (error "Last line in buffer")))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2629 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2630 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2631 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2632 (forward-line val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2633 (back-to-indentation)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2634 (if com (viper-execute-com 'viper-next-line-at-bol val com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2635
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2636 (defun viper-previous-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2637 "Go to previous line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2638 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2639 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2640 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2641 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2642 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2643 (previous-line val)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2644 (if viper-ex-style-motion
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2645 (if (and (eolp) (not (bolp))) (backward-char 1)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2646 (setq this-command 'previous-line)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2647 (if com (viper-execute-com 'viper-previous-line val com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2648
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2649
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2650 (defun viper-previous-line-at-bol (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2651 "Previous line at beginning of line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2652 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2653 (viper-leave-region-active)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2654 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2655 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2656 (if (bobp) (error "First line in buffer")))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2657 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2658 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2659 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2660 (forward-line (- val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2661 (back-to-indentation)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2662 (if com (viper-execute-com 'viper-previous-line val com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2663
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2664 (defun viper-change-to-eol (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2665 "Change to end of line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2666 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2667 (viper-goto-eol (cons arg ?c)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2668
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2669 (defun viper-kill-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2670 "Delete line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2671 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2672 (viper-goto-eol (cons arg ?d)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2673
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2674 (defun viper-erase-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2675 "Erase line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2676 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2677 (viper-beginning-of-line (cons arg ?d)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2678
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2679
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2680 ;;; Moving around
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2681
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2682 (defun viper-goto-line (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2683 "Go to ARG's line. Without ARG go to end of buffer."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2684 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2685 (let ((val (viper-P-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2686 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2687 (viper-move-marker-locally 'viper-com-point (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2688 (viper-deactivate-mark)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2689 (push-mark nil t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2690 (if (null val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2691 (goto-char (point-max))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2692 (goto-char (point-min))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2693 (forward-line (1- val)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2694
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2695 ;; positioning is done twice: before and after command execution
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2696 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2697 (back-to-indentation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2698
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2699 (if com (viper-execute-com 'viper-goto-line val com))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2700
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2701 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2702 (back-to-indentation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2703 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2704
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2705 ;; Find ARG's occurrence of CHAR on the current line.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2706 ;; If FORWARD then search is forward, otherwise backward. OFFSET is used to
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2707 ;; adjust point after search.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2708 (defun viper-find-char (arg char forward offset)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2709 (or (char-or-string-p char) (error ""))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2710 (let ((arg (if forward arg (- arg)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2711 (cmd (if (eq viper-intermediate-command 'viper-repeat)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2712 (nth 5 viper-d-com)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2713 (viper-array-to-string (this-command-keys))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2714 point)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2715 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2716 (save-restriction
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2717 (if (> arg 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2718 (narrow-to-region
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2719 ;; forward search begins here
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2720 (if (eolp) (error "Command `%s': At end of line" cmd) (point))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2721 ;; forward search ends here
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2722 (progn (end-of-line) (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2723 (narrow-to-region
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2724 ;; backward search begins from here
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2725 (if (bolp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2726 (error "Command `%s': At beginning of line" cmd) (point))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2727 ;; backward search ends here
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2728 (progn (beginning-of-line) (point))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2729 ;; if arg > 0, point is forwarded before search.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2730 (if (> arg 0) (goto-char (1+ (point-min)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2731 (goto-char (point-max)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2732 (if (let ((case-fold-search nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2733 (search-forward (char-to-string char) nil 0 arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2734 (setq point (point))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2735 (error "Command `%s': `%c' not found" cmd char))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2736 (goto-char (+ point (if (> arg 0) (if offset -2 -1) (if offset 1 0))))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2737
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2738 (defun viper-find-char-forward (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2739 "Find char on the line.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2740 If called interactively read the char to find from the terminal, and if
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2741 called from viper-repeat, the char last used is used. This behaviour is
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2742 controlled by the sign of prefix numeric value."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2743 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2744 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2745 (com (viper-getcom arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2746 (cmd-representation (nth 5 viper-d-com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2747 (if (> val 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2748 ;; this means that the function was called interactively
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2749 (setq viper-f-char (read-char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2750 viper-f-forward t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2751 viper-f-offset nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2752 ;; viper-repeat --- set viper-F-char from command-keys
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2753 (setq viper-F-char (if (stringp cmd-representation)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2754 (viper-seq-last-elt cmd-representation)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2755 viper-F-char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2756 viper-f-char viper-F-char)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2757 (setq val (- val)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2758 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2759 (viper-find-char
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2760 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) t nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2761 (setq val (- val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2762 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2763 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2764 (setq viper-F-char viper-f-char) ; set new viper-F-char
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2765 (forward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2766 (viper-execute-com 'viper-find-char-forward val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2767
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2768 (defun viper-goto-char-forward (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2769 "Go up to char ARG forward on line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2770 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2771 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2772 (com (viper-getcom arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2773 (cmd-representation (nth 5 viper-d-com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2774 (if (> val 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2775 ;; this means that the function was called interactively
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2776 (setq viper-f-char (read-char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2777 viper-f-forward t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2778 viper-f-offset t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2779 ;; viper-repeat --- set viper-F-char from command-keys
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2780 (setq viper-F-char (if (stringp cmd-representation)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2781 (viper-seq-last-elt cmd-representation)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2782 viper-F-char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2783 viper-f-char viper-F-char)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2784 (setq val (- val)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2785 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2786 (viper-find-char
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2787 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) t t)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2788 (setq val (- val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2789 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2790 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2791 (setq viper-F-char viper-f-char) ; set new viper-F-char
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2792 (forward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2793 (viper-execute-com 'viper-goto-char-forward val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2794
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2795 (defun viper-find-char-backward (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2796 "Find char ARG on line backward."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2797 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2798 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2799 (com (viper-getcom arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2800 (cmd-representation (nth 5 viper-d-com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2801 (if (> val 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2802 ;; this means that the function was called interactively
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2803 (setq viper-f-char (read-char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2804 viper-f-forward nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2805 viper-f-offset nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2806 ;; viper-repeat --- set viper-F-char from command-keys
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2807 (setq viper-F-char (if (stringp cmd-representation)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2808 (viper-seq-last-elt cmd-representation)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2809 viper-F-char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2810 viper-f-char viper-F-char)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2811 (setq val (- val)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2812 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2813 (viper-find-char
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2814 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) nil nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2815 (setq val (- val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2816 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2817 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2818 (setq viper-F-char viper-f-char) ; set new viper-F-char
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2819 (viper-execute-com 'viper-find-char-backward val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2820
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2821 (defun viper-goto-char-backward (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2822 "Go up to char ARG backward on line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2823 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2824 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2825 (com (viper-getcom arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2826 (cmd-representation (nth 5 viper-d-com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2827 (if (> val 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2828 ;; this means that the function was called interactively
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2829 (setq viper-f-char (read-char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2830 viper-f-forward nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2831 viper-f-offset t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2832 ;; viper-repeat --- set viper-F-char from command-keys
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2833 (setq viper-F-char (if (stringp cmd-representation)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2834 (viper-seq-last-elt cmd-representation)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2835 viper-F-char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2836 viper-f-char viper-F-char)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2837 (setq val (- val)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2838 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2839 (viper-find-char
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2840 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) nil t)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2841 (setq val (- val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2842 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2843 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2844 (setq viper-F-char viper-f-char) ; set new viper-F-char
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2845 (viper-execute-com 'viper-goto-char-backward val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2846
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2847 (defun viper-repeat-find (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2848 "Repeat previous find command."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2849 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2850 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2851 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2852 (viper-deactivate-mark)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2853 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2854 (viper-find-char val viper-f-char viper-f-forward viper-f-offset)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2855 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2856 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2857 (if viper-f-forward (forward-char))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2858 (viper-execute-com 'viper-repeat-find val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2859
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2860 (defun viper-repeat-find-opposite (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2861 "Repeat previous find command in the opposite direction."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2862 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2863 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2864 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2865 (viper-deactivate-mark)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2866 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2867 (viper-find-char val viper-f-char (not viper-f-forward) viper-f-offset)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2868 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2869 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2870 (if viper-f-forward (forward-char))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2871 (viper-execute-com 'viper-repeat-find-opposite val com)))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2872
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2873
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2874 ;; window scrolling etc.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2875
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2876 (defun viper-window-top (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2877 "Go to home window line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2878 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2879 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2880 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2881 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2882 (push-mark nil t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2883 (move-to-window-line (1- val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2884
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2885 ;; positioning is done twice: before and after command execution
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2886 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2887 (back-to-indentation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2888
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2889 (if com (viper-execute-com 'viper-window-top val com))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2890
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2891 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2892 (back-to-indentation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2893 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2894
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2895 (defun viper-window-middle (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2896 "Go to middle window line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2897 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2898 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2899 (com (viper-getCom arg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2900 lines)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2901 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2902 (push-mark nil t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2903 (if (not (pos-visible-in-window-p (point-max)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2904 (move-to-window-line (+ (/ (1- (window-height)) 2) (1- val)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2905 (setq lines (count-lines (window-start) (point-max)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2906 (move-to-window-line (+ (/ lines 2) (1- val))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2907
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2908 ;; positioning is done twice: before and after command execution
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2909 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2910 (back-to-indentation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2911
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2912 (if com (viper-execute-com 'viper-window-middle val com))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2913
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2914 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2915 (back-to-indentation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2916 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2917
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2918 (defun viper-window-bottom (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2919 "Go to last window line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2920 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2921 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2922 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2923 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2924 (push-mark nil t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2925 (move-to-window-line (- val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2926
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2927 ;; positioning is done twice: before and after command execution
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2928 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2929 (back-to-indentation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2930
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2931 (if com (viper-execute-com 'viper-window-bottom val com))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2932
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2933 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2934 (back-to-indentation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2935 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2936
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2937 (defun viper-line-to-top (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2938 "Put current line on the home line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2939 (interactive "p")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2940 (recenter (1- arg)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2941
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2942 (defun viper-line-to-middle (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2943 "Put current line on the middle line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2944 (interactive "p")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2945 (recenter (+ (1- arg) (/ (1- (window-height)) 2))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2946
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2947 (defun viper-line-to-bottom (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2948 "Put current line on the last line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2949 (interactive "p")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2950 (recenter (- (window-height) (1+ arg))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2951
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2952 ;; If point is within viper-search-scroll-threshold of window top or bottom,
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2953 ;; scroll up or down 1/7 of window height, depending on whether we are at the
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2954 ;; bottom or at the top of the window. This function is called by viper-search
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2955 ;; (which is called from viper-search-forward/backward/next). If the value of
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2956 ;; viper-search-scroll-threshold is negative - don't scroll.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2957 (defun viper-adjust-window ()
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2958 (let ((win-height (if viper-emacs-p
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2959 (1- (window-height)) ; adjust for modeline
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2960 (window-displayed-height)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2961 (pt (point))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2962 at-top-p at-bottom-p
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2963 min-scroll direction)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2964 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2965 (move-to-window-line 0) ; top
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2966 (setq at-top-p
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2967 (<= (count-lines pt (point))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2968 viper-search-scroll-threshold))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2969 (move-to-window-line -1) ; bottom
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2970 (setq at-bottom-p
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2971 (<= (count-lines pt (point)) viper-search-scroll-threshold))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2972 )
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2973 (cond (at-top-p (setq min-scroll (1- viper-search-scroll-threshold)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2974 direction 1))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2975 (at-bottom-p (setq min-scroll (1+ viper-search-scroll-threshold)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2976 direction -1)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2977 (if min-scroll
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2978 (recenter
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2979 (* (max min-scroll (/ win-height 7)) direction)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2980 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2981
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2982
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2983 ;; paren match
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2984 ;; must correct this to only match ( to ) etc. On the other hand
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2985 ;; it is good that paren match gets confused, because that way you
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2986 ;; catch _all_ imbalances.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2987
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2988 (defun viper-paren-match (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2989 "Go to the matching parenthesis."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2990 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2991 (viper-leave-region-active)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2992 (let ((com (viper-getcom arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
2993 (parse-sexp-ignore-comments viper-parse-sexp-ignore-comments)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2994 anchor-point)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2995 (if (integerp arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2996 (if (or (> arg 99) (< arg 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2997 (error "Prefix must be between 1 and 99")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2998 (goto-char
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
2999 (if (> (point-max) 80000)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3000 (* (/ (point-max) 100) arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3001 (/ (* (point-max) arg) 100)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3002 (back-to-indentation))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3003 (let (beg-lim end-lim)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3004 (if (and (eolp) (not (bolp))) (forward-char -1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3005 (if (not (looking-at "[][(){}]"))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3006 (setq anchor-point (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3007 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3008 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3009 (setq beg-lim (point))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3010 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3011 (setq end-lim (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3012 (cond ((re-search-forward "[][(){}]" end-lim t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3013 (backward-char) )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3014 ((re-search-backward "[][(){}]" beg-lim t))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3015 (t
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3016 (error "No matching character on line"))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3017 (cond ((looking-at "[\(\[{]")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3018 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3019 (forward-sexp 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3020 (if com
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3021 (viper-execute-com 'viper-paren-match nil com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3022 (backward-char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3023 (anchor-point
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3024 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3025 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3026 (viper-move-marker-locally 'viper-com-point anchor-point)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3027 (forward-char 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3028 (viper-execute-com 'viper-paren-match nil com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3029 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3030 ((looking-at "[])}]")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3031 (forward-char)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3032 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3033 (backward-sexp 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3034 (if com (viper-execute-com 'viper-paren-match nil com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3035 (t (error ""))))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3036
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3037 (defun viper-toggle-parse-sexp-ignore-comments ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3038 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3039 (setq viper-parse-sexp-ignore-comments
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3040 (not viper-parse-sexp-ignore-comments))
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3041 (princ (format
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3042 "From now on, `%%' will %signore parentheses inside comment fields"
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3043 (if viper-parse-sexp-ignore-comments "" "NOT "))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3044
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3045
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3046 ;; sentence ,paragraph and heading
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3047
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3048 (defun viper-forward-sentence (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3049 "Forward sentence."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3050 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3051 (push-mark nil t)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3052 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3053 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3054 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3055 (forward-sentence val)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3056 (if com (viper-execute-com 'viper-forward-sentence nil com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3057
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3058 (defun viper-backward-sentence (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3059 "Backward sentence."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3060 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3061 (push-mark nil t)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3062 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3063 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3064 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3065 (backward-sentence val)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3066 (if com (viper-execute-com 'viper-backward-sentence nil com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3067
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3068 (defun viper-forward-paragraph (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3069 "Forward paragraph."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3070 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3071 (push-mark nil t)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3072 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3073 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3074 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3075 (forward-paragraph val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3076 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3077 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3078 (backward-char 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3079 (viper-execute-com 'viper-forward-paragraph nil com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3080
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3081 (defun viper-backward-paragraph (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3082 "Backward paragraph."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3083 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3084 (push-mark nil t)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3085 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3086 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3087 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3088 (backward-paragraph val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3089 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3090 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3091 (forward-char 1)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3092 (viper-execute-com 'viper-backward-paragraph nil com)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3093 (backward-char 1)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3094
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3095 ;; should be mode-specific etc.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3096
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3097 (defun viper-prev-heading (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3098 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3099 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3100 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3101 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3102 (re-search-backward viper-heading-start nil t val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3103 (goto-char (match-beginning 0))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3104 (if com (viper-execute-com 'viper-prev-heading nil com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3105
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3106 (defun viper-heading-end (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3107 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3108 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3109 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3110 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3111 (re-search-forward viper-heading-end nil t val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3112 (goto-char (match-beginning 0))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3113 (if com (viper-execute-com 'viper-heading-end nil com))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3114
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3115 (defun viper-next-heading (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3116 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3117 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3118 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3119 (if com (viper-move-marker-locally 'viper-com-point (point)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3120 (end-of-line)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3121 (re-search-forward viper-heading-start nil t val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3122 (goto-char (match-beginning 0))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3123 (if com (viper-execute-com 'viper-next-heading nil com))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3124
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3125
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3126 ;; scrolling
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3127
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3128 (defun viper-scroll-screen (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3129 "Scroll to next screen."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3130 (interactive "p")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3131 (condition-case nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3132 (if (> arg 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3133 (while (> arg 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3134 (scroll-up)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3135 (setq arg (1- arg)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3136 (while (> 0 arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3137 (scroll-down)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3138 (setq arg (1+ arg))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3139 (error (beep 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3140 (if (> arg 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3141 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3142 (message "End of buffer")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3143 (goto-char (point-max)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3144 (message "Beginning of buffer")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3145 (goto-char (point-min))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3146 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3147
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3148 (defun viper-scroll-screen-back (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3149 "Scroll to previous screen."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3150 (interactive "p")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3151 (viper-scroll-screen (- arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3152
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3153 (defun viper-scroll-down (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3154 "Pull down half screen."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3155 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3156 (condition-case nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3157 (if (null arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3158 (scroll-down (/ (window-height) 2))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3159 (scroll-down arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3160 (error (beep 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3161 (message "Beginning of buffer")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3162 (goto-char (point-min)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3163
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3164 (defun viper-scroll-down-one (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3165 "Scroll up one line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3166 (interactive "p")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3167 (scroll-down arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3168
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3169 (defun viper-scroll-up (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3170 "Pull up half screen."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3171 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3172 (condition-case nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3173 (if (null arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3174 (scroll-up (/ (window-height) 2))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3175 (scroll-up arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3176 (error (beep 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3177 (message "End of buffer")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3178 (goto-char (point-max)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3179
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3180 (defun viper-scroll-up-one (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3181 "Scroll down one line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3182 (interactive "p")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3183 (scroll-up arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3184
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3185
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3186 ;; searching
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3187
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3188 (defun viper-if-string (prompt)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3189 (if (memq viper-intermediate-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3190 '(viper-command-argument viper-digit-argument viper-repeat))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3191 (setq viper-this-command-keys (this-command-keys)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3192 (let ((s (viper-read-string-with-history
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3193 prompt
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3194 nil ; no initial
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3195 'viper-search-history
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3196 (car viper-search-history))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3197 (if (not (string= s ""))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3198 (setq viper-s-string s))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3199
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3200
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3201 (defun viper-toggle-search-style (arg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3202 "Toggle the value of viper-case-fold-search/viper-re-search.
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3203 Without prefix argument, will ask which search style to toggle. With prefix
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3204 arg 1,toggles viper-case-fold-search; with arg 2 toggles viper-re-search.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3205
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3206 Although this function is bound to \\[viper-toggle-search-style], the most
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3207 convenient way to use it is to bind `//' to the macro
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3208 `1 M-x viper-toggle-search-style' and `///' to
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3209 `2 M-x viper-toggle-search-style'. In this way, hitting `//' quickly will
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3210 toggle case-fold-search and hitting `/' three times witth toggle regexp
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3211 search. Macros are more convenient in this case because they don't affect
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3212 the Emacs binding of `/'."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3213 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3214 (let (msg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3215 (cond ((or (eq arg 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3216 (and (null arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3217 (y-or-n-p (format "Search style: '%s'. Want '%s'? "
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3218 (if viper-case-fold-search
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3219 "case-insensitive" "case-sensitive")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3220 (if viper-case-fold-search
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3221 "case-sensitive"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3222 "case-insensitive")))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3223 (setq viper-case-fold-search (null viper-case-fold-search))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3224 (if viper-case-fold-search
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3225 (setq msg "Search becomes case-insensitive")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3226 (setq msg "Search becomes case-sensitive")))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3227 ((or (eq arg 2)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3228 (and (null arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3229 (y-or-n-p (format "Search style: '%s'. Want '%s'? "
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3230 (if viper-re-search
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3231 "regexp-search" "vanilla-search")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3232 (if viper-re-search
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3233 "vanilla-search"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3234 "regexp-search")))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3235 (setq viper-re-search (null viper-re-search))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3236 (if viper-re-search
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3237 (setq msg "Search becomes regexp-style")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3238 (setq msg "Search becomes vanilla-style")))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3239 (t
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3240 (setq msg "Search style remains unchanged")))
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3241 (princ msg t)))
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3242
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3243 (defun viper-set-searchstyle-toggling-macros (unset)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3244 "Set the macros for toggling the search style in Viper's vi-state.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3245 The macro that toggles case sensitivity is bound to `//', and the one that
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3246 toggles regexp search is bound to `///'.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3247 With a prefix argument, this function unsets the macros. "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3248 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3249 (or noninteractive
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3250 (if (not unset)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3251 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3252 ;; toggle case sensitivity in search
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3253 (viper-record-kbd-macro
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3254 "//" 'vi-state
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3255 [1 (meta x) v i p e r - t o g g l e - s e a r c h - s t y l e return]
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3256 't)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3257 ;; toggle regexp/vanila search
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3258 (viper-record-kbd-macro
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3259 "///" 'vi-state
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3260 [2 (meta x) v i p e r - t o g g l e - s e a r c h - s t y l e return]
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3261 't)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3262 (if (interactive-p)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3263 (message
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3264 "// and /// now toggle case-sensitivity and regexp search")))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3265 (viper-unrecord-kbd-macro "//" 'vi-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3266 (sit-for 2)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3267 (viper-unrecord-kbd-macro "///" 'vi-state))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3268
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3269
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3270 (defun viper-set-parsing-style-toggling-macro (unset)
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3271 "Set `%%%' to be a macro that toggles whether comment fields should be parsed for matching parentheses.
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3272 This is used in conjunction with the `%' command.
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3273
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3274 With a prefix argument, unsets the macro."
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3275 (interactive "P")
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3276 (or noninteractive
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3277 (if (not unset)
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3278 (progn
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3279 ;; Make %%% toggle parsing comments for matching parentheses
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3280 (viper-record-kbd-macro
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3281 "%%%" 'vi-state
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3282 [(meta x) v i p e r - t o g g l e - p a r s e - s e x p - i g n o r e - c o m m e n t s return]
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3283 't)
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3284 (if (interactive-p)
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3285 (message
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3286 "%%%%%% now toggles whether comments should be parsed for matching parentheses")))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3287 (viper-unrecord-kbd-macro "%%%" 'vi-state))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3288
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3289
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3290 (defun viper-set-emacs-state-searchstyle-macros (unset &optional arg-majormode)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3291 "Set the macros for toggling the search style in Viper's emacs-state.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3292 The macro that toggles case sensitivity is bound to `//', and the one that
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3293 toggles regexp search is bound to `///'.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3294 With a prefix argument, this function unsets the macros.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3295 If the optional prefix argument is non-nil and specifies a valid major mode,
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3296 this sets the macros only in the macros in that major mode. Otherwise,
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3297 the macros are set in the current major mode.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3298 \(When unsetting the macros, the second argument has no effect.\)"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3299 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3300 (or noninteractive
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3301 (if (not unset)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3302 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3303 ;; toggle case sensitivity in search
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3304 (viper-record-kbd-macro
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3305 "//" 'emacs-state
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3306 [1 (meta x) v i p e r - t o g g l e - s e a r c h - s t y l e return]
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3307 (or arg-majormode major-mode))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3308 ;; toggle regexp/vanila search
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3309 (viper-record-kbd-macro
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3310 "///" 'emacs-state
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3311 [2 (meta x) v i p e r - t o g g l e - s e a r c h - s t y l e return]
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3312 (or arg-majormode major-mode))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3313 (if (interactive-p)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3314 (message
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3315 "// and /// now toggle case-sensitivity and regexp search.")))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3316 (viper-unrecord-kbd-macro "//" 'emacs-state)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3317 (sit-for 2)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3318 (viper-unrecord-kbd-macro "///" 'emacs-state))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3319
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3320
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3321 (defun viper-search-forward (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3322 "Search a string forward.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3323 ARG is used to find the ARG's occurrence of the string.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3324 Null string will repeat previous search."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3325 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3326 (let ((val (viper-P-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3327 (com (viper-getcom arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3328 (old-str viper-s-string))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3329 (setq viper-s-forward t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3330 (viper-if-string "/")
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3331 ;; this is not used at present, but may be used later
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3332 (if (or (not (equal old-str viper-s-string))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3333 (not (markerp viper-local-search-start-marker))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3334 (not (marker-buffer viper-local-search-start-marker)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3335 (setq viper-local-search-start-marker (point-marker)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3336 (viper-search viper-s-string t val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3337 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3338 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3339 (viper-move-marker-locally 'viper-com-point (mark t))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3340 (viper-execute-com 'viper-search-next val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3341
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3342 (defun viper-search-backward (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3343 "Search a string backward.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3344 ARG is used to find the ARG's occurrence of the string.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3345 Null string will repeat previous search."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3346 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3347 (let ((val (viper-P-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3348 (com (viper-getcom arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3349 (old-str viper-s-string))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3350 (setq viper-s-forward nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3351 (viper-if-string "?")
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3352 ;; this is not used at present, but may be used later
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3353 (if (or (not (equal old-str viper-s-string))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3354 (not (markerp viper-local-search-start-marker))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3355 (not (marker-buffer viper-local-search-start-marker)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3356 (setq viper-local-search-start-marker (point-marker)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3357 (viper-search viper-s-string nil val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3358 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3359 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3360 (viper-move-marker-locally 'viper-com-point (mark t))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3361 (viper-execute-com 'viper-search-next val com)))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3362
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3363
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3364 ;; Search for COUNT's occurrence of STRING.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3365 ;; Search is forward if FORWARD is non-nil, otherwise backward.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3366 ;; INIT-POINT is the position where search is to start.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3367 ;; Arguments:
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3368 ;; (STRING FORW COUNT &optional NO-OFFSET INIT-POINT LIMIT FAIL-IF-NOT-FOUND)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3369 (defun viper-search (string forward arg
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3370 &optional no-offset init-point fail-if-not-found)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3371 (if (not (equal string ""))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3372 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3373 (com (viper-getcom arg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3374 (offset (not no-offset))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3375 (case-fold-search viper-case-fold-search)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3376 (start-point (or init-point (point))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3377 (viper-deactivate-mark)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3378 (if forward
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3379 (condition-case nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3380 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3381 (if offset (viper-forward-char-carefully))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3382 (if viper-re-search
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3383 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3384 (re-search-forward string nil nil val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3385 (re-search-backward string))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3386 (search-forward string nil nil val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3387 (search-backward string))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3388 (if (not (equal start-point (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3389 (push-mark start-point t)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3390 (search-failed
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3391 (if (and (not fail-if-not-found) viper-search-wrap-around-t)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3392 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3393 (message "Search wrapped around BOTTOM of buffer")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3394 (goto-char (point-min))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3395 (viper-search string forward (cons 1 com) t start-point 'fail)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3396 ;; don't wait in macros
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3397 (or executing-kbd-macro
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3398 (memq viper-intermediate-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3399 '(viper-repeat
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3400 viper-digit-argument
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3401 viper-command-argument))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3402 (sit-for 2))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3403 ;; delete the wrap-around message
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3404 (message "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3405 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3406 (goto-char start-point)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3407 (error "`%s': %s not found"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3408 string
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3409 (if viper-re-search "Pattern" "String"))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3410 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3411 ;; backward
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3412 (condition-case nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3413 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3414 (if viper-re-search
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3415 (re-search-backward string nil nil val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3416 (search-backward string nil nil val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3417 (if (not (equal start-point (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3418 (push-mark start-point t)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3419 (search-failed
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3420 (if (and (not fail-if-not-found) viper-search-wrap-around-t)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3421 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3422 (message "Search wrapped around TOP of buffer")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3423 (goto-char (point-max))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3424 (viper-search string forward (cons 1 com) t start-point 'fail)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3425 ;; don't wait in macros
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3426 (or executing-kbd-macro
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3427 (memq viper-intermediate-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3428 '(viper-repeat
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3429 viper-digit-argument
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3430 viper-command-argument))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3431 (sit-for 2))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3432 ;; delete the wrap-around message
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3433 (message "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3434 )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3435 (goto-char start-point)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3436 (error "`%s': %s not found"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3437 string
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3438 (if viper-re-search "Pattern" "String"))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3439 ))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3440 ;; pull up or down if at top/bottom of window
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3441 (viper-adjust-window)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3442 ;; highlight the result of search
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3443 ;; don't wait and don't highlight in macros
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3444 (or executing-kbd-macro
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3445 (memq viper-intermediate-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3446 '(viper-repeat viper-digit-argument viper-command-argument))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3447 (viper-flash-search-pattern))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3448 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3449
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3450 (defun viper-search-next (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3451 "Repeat previous search."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3452 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3453 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3454 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3455 (if (null viper-s-string) (error viper-NoPrevSearch))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3456 (viper-search viper-s-string viper-s-forward arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3457 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3458 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3459 (viper-move-marker-locally 'viper-com-point (mark t))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3460 (viper-execute-com 'viper-search-next val com)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3461
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3462 (defun viper-search-Next (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3463 "Repeat previous search in the reverse direction."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3464 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3465 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3466 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3467 (if (null viper-s-string) (error viper-NoPrevSearch))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3468 (viper-search viper-s-string (not viper-s-forward) arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3469 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3470 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3471 (viper-move-marker-locally 'viper-com-point (mark t))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3472 (viper-execute-com 'viper-search-Next val com)))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3473
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3474
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3475 ;; Search contents of buffer defined by one of Viper's motion commands.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3476 ;; Repeatable via `n' and `N'.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3477 (defun viper-buffer-search-enable (&optional c)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3478 (cond (c (setq viper-buffer-search-char c))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3479 ((null viper-buffer-search-char)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3480 (setq viper-buffer-search-char ?g)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3481 (define-key viper-vi-basic-map
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3482 (char-to-string viper-buffer-search-char) 'viper-command-argument)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3483 (aset viper-exec-array viper-buffer-search-char 'viper-exec-buffer-search)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3484 (setq viper-prefix-commands
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3485 (cons viper-buffer-search-char viper-prefix-commands)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3486
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3487 ;; This is a Viper wraper for isearch-forward.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3488 (defun viper-isearch-forward (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3489 "Do incremental search forward."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3490 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3491 ;; emacs bug workaround
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3492 (if (listp arg) (setq arg (car arg)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3493 (viper-exec-form-in-emacs (list 'isearch-forward arg)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3494
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3495 ;; This is a Viper wraper for isearch-backward."
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3496 (defun viper-isearch-backward (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3497 "Do incremental search backward."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3498 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3499 ;; emacs bug workaround
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3500 (if (listp arg) (setq arg (car arg)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3501 (viper-exec-form-in-emacs (list 'isearch-backward arg)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3502
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3503
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3504 ;; visiting and killing files, buffers
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3505
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3506 (defun viper-switch-to-buffer ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3507 "Switch to buffer in the current window."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3508 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3509 (let (buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3510 (setq buffer
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3511 (read-buffer
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3512 (format "Switch to buffer in this window \(%s\): "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3513 (buffer-name (other-buffer (current-buffer))))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3514 (switch-to-buffer buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3515 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3516
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3517 (defun viper-switch-to-buffer-other-window ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3518 "Switch to buffer in another window."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3519 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3520 (let (buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3521 (setq buffer
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3522 (read-buffer
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3523 (format "Switch to buffer in another window \(%s\): "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3524 (buffer-name (other-buffer (current-buffer))))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3525 (switch-to-buffer-other-window buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3526 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3527
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3528 (defun viper-kill-buffer ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3529 "Kill a buffer."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3530 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3531 (let (buffer buffer-name)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3532 (setq buffer-name
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3533 (read-buffer
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3534 (format "Kill buffer \(%s\): "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3535 (buffer-name (current-buffer)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3536 (setq buffer
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3537 (if (null buffer-name)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3538 (current-buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3539 (get-buffer buffer-name)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3540 (if (null buffer) (error "`%s': No such buffer" buffer-name))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3541 (if (or (not (buffer-modified-p buffer))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3542 (y-or-n-p
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3543 (format
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3544 "Buffer `%s' is modified, are you sure you want to kill it? "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3545 buffer-name)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3546 (kill-buffer buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3547 (error "Buffer not killed"))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3548
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3549
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3550 (defcustom viper-smart-suffix-list
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3551 '("" "tex" "c" "cc" "C" "el" "java" "html" "htm" "pl" "P" "p")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3552 "*List of suffixes that Viper automatically tries to append to filenames ending with a `.'.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3553 This is useful when you the current directory contains files with the same
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3554 prefix and many different suffixes. Usually, only one of the suffixes
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3555 represents an editable file. However, file completion will stop at the `.'
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3556 The smart suffix feature lets you hit RET in such a case, and Viper will
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3557 select the appropriate suffix.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3558
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3559 Suffixes are tried in the order given and the first suffix for which a
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3560 corresponding file exists is selected. If no file exists for any of the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3561 suffixes, the user is asked to confirm.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3562
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3563 To turn this feature off, set this variable to nil."
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3564 :type '(set string)
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3565 :group 'viper)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3566
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3567 ;; Try to add suffix to files ending with a `.'
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3568 ;; Useful when the user hits RET on a non-completed file name.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3569 (defun viper-file-add-suffix ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3570 (let ((count 0)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3571 (len (length viper-smart-suffix-list))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3572 (file (buffer-string))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3573 found key cmd suff)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3574 (goto-char (point-max))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3575 (if (and viper-smart-suffix-list (string-match "\\.$" file))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3576 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3577 (while (and (not found) (< count len))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3578 (setq suff (nth count viper-smart-suffix-list)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3579 count (1+ count))
19203
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
3580 (if (file-exists-p
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
3581 (format "%s%s" (substitute-in-file-name file) suff))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3582 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3583 (setq found t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3584 (insert suff))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3585
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3586 (if found
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3587 ()
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3588 (viper-tmp-insert-at-eob " [Please complete file name]")
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3589 (unwind-protect
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3590 (while (not (memq cmd
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3591 '(exit-minibuffer viper-exit-minibuffer)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3592 (setq cmd
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3593 (key-binding (setq key (read-key-sequence nil))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3594 (cond ((eq cmd 'self-insert-command)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3595 (if viper-xemacs-p
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3596 (insert (events-to-keys key))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3597 (insert key)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3598 ((memq cmd '(exit-minibuffer viper-exit-minibuffer))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3599 nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3600 (t (command-execute cmd)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3601 )))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3602 ))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3603
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3604
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3605
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3606
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3607 ;; yank and pop
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3608
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3609 (defsubst viper-yank (text)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3610 "Yank TEXT silently. This works correctly with Emacs's yank-pop command."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3611 (insert text)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3612 (setq this-command 'yank))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3613
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3614 (defun viper-put-back (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3615 "Put back after point/below line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3616 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3617 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3618 (text (if viper-use-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3619 (cond ((viper-valid-register viper-use-register '(digit))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3620 (current-kill
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3621 (- viper-use-register ?1) 'do-not-rotate))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3622 ((viper-valid-register viper-use-register)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3623 (get-register (downcase viper-use-register)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3624 (t (error viper-InvalidRegister viper-use-register)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3625 (current-kill 0))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3626 (if (null text)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3627 (if viper-use-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3628 (let ((reg viper-use-register))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3629 (setq viper-use-register nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3630 (error viper-EmptyRegister reg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3631 (error "")))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3632 (setq viper-use-register nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3633 (if (viper-end-with-a-newline-p text)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3634 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3635 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3636 (if (eobp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3637 (insert "\n")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3638 (forward-line 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3639 (beginning-of-line))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3640 (if (not (eolp)) (viper-forward-char-carefully)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3641 (set-marker (viper-mark-marker) (point) (current-buffer))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3642 (viper-set-destructive-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3643 (list 'viper-put-back val nil viper-use-register nil nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3644 (viper-loop val (viper-yank text)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3645 ;; Vi puts cursor on the last char when the yanked text doesn't contain a
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3646 ;; newline; it leaves the cursor at the beginning when the text contains
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3647 ;; a newline
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3648 (if (viper-same-line (point) (mark))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3649 (or (= (point) (mark)) (viper-backward-char-carefully))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3650 (exchange-point-and-mark)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3651 (if (bolp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3652 (back-to-indentation)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3653 (viper-deactivate-mark))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3654
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3655 (defun viper-Put-back (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3656 "Put back at point/above line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3657 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3658 (let ((val (viper-p-val arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3659 (text (if viper-use-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3660 (cond ((viper-valid-register viper-use-register '(digit))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3661 (current-kill
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3662 (- viper-use-register ?1) 'do-not-rotate))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3663 ((viper-valid-register viper-use-register)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3664 (get-register (downcase viper-use-register)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3665 (t (error viper-InvalidRegister viper-use-register)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3666 (current-kill 0))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3667 (if (null text)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3668 (if viper-use-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3669 (let ((reg viper-use-register))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3670 (setq viper-use-register nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3671 (error viper-EmptyRegister reg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3672 (error "")))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3673 (setq viper-use-register nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3674 (if (viper-end-with-a-newline-p text) (beginning-of-line))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3675 (viper-set-destructive-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3676 (list 'viper-Put-back val nil viper-use-register nil nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3677 (set-marker (viper-mark-marker) (point) (current-buffer))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3678 (viper-loop val (viper-yank text)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3679 ;; Vi puts cursor on the last char when the yanked text doesn't contain a
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3680 ;; newline; it leaves the cursor at the beginning when the text contains
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3681 ;; a newline
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3682 (if (viper-same-line (point) (mark))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3683 (or (= (point) (mark)) (viper-backward-char-carefully))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3684 (exchange-point-and-mark)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3685 (if (bolp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3686 (back-to-indentation)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3687 (viper-deactivate-mark))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3688
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3689
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3690 ;; Copy region to kill-ring.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3691 ;; If BEG and END do not belong to the same buffer, copy empty region.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3692 (defun viper-copy-region-as-kill (beg end)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3693 (condition-case nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3694 (copy-region-as-kill beg end)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3695 (error (copy-region-as-kill beg beg))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3696
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3697
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3698 (defun viper-delete-char (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3699 "Delete character."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3700 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3701 (let ((val (viper-p-val arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3702 (viper-set-destructive-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3703 (list 'viper-delete-char val nil nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3704 (if (> val 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3705 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3706 (let ((here (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3707 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3708 (if (> val (- (point) here))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3709 (setq val (- (point) here))))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3710 (if (and (eq val 0) (not viper-ex-style-motion)) (setq val 1))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3711 (if (and viper-ex-style-motion (eolp))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3712 (if (bolp) (error "") (setq val 0))) ; not bol---simply back 1 ch
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3713 (if viper-use-register
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3714 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3715 (cond ((viper-valid-register viper-use-register '((Letter)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3716 (viper-append-to-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3717 (downcase viper-use-register) (point) (- (point) val)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3718 ((viper-valid-register viper-use-register)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3719 (copy-to-register
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3720 viper-use-register (point) (- (point) val) nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3721 (t (error viper-InvalidRegister viper-use-register)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3722 (setq viper-use-register nil)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3723 (if viper-ex-style-motion
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3724 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3725 (delete-char val t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3726 (if (and (eolp) (not (bolp))) (backward-char 1)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3727 (if (eolp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3728 (delete-backward-char val t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3729 (delete-char val t)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3730
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3731 (defun viper-delete-backward-char (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3732 "Delete previous character. On reaching beginning of line, stop and beep."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3733 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3734 (let ((val (viper-p-val arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3735 (viper-set-destructive-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3736 (list 'viper-delete-backward-char val nil nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3737 (if (> val 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3738 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3739 (let ((here (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3740 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3741 (if (> val (- here (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3742 (setq val (- here (point)))))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3743 (if viper-use-register
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3744 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3745 (cond ((viper-valid-register viper-use-register '(Letter))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3746 (viper-append-to-register
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3747 (downcase viper-use-register) (point) (+ (point) val)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3748 ((viper-valid-register viper-use-register)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3749 (copy-to-register
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3750 viper-use-register (point) (+ (point) val) nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3751 (t (error viper-InvalidRegister viper-use-register)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3752 (setq viper-use-register nil)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3753 (if (bolp) (ding)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3754 (delete-backward-char val t))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3755
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3756 (defun viper-del-backward-char-in-insert ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3757 "Delete 1 char backwards while in insert mode."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3758 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3759 (if (and viper-ex-style-editing-in-insert (bolp))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3760 (beep 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3761 (delete-backward-char 1 t)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3762
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3763 (defun viper-del-backward-char-in-replace ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3764 "Delete one character in replace mode.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3765 If `viper-delete-backwards-in-replace' is t, then DEL key actually deletes
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3766 charecters. If it is nil, then the cursor just moves backwards, similarly
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3767 to Vi. The variable `viper-ex-style-editing-in-insert', if t, doesn't let the
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3768 cursor move past the beginning of line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3769 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3770 (cond (viper-delete-backwards-in-replace
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3771 (cond ((not (bolp))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3772 (delete-backward-char 1 t))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3773 (viper-ex-style-editing-in-insert
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3774 (beep 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3775 ((bobp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3776 (beep 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3777 (t
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3778 (delete-backward-char 1 t))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3779 (viper-ex-style-editing-in-insert
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3780 (if (bolp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3781 (beep 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3782 (backward-char 1)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3783 (t
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3784 (backward-char 1))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3785
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3786
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3787
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3788 ;; join lines.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3789
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3790 (defun viper-join-lines (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3791 "Join this line to next, if ARG is nil. Otherwise, join ARG lines."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3792 (interactive "*P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3793 (let ((val (viper-P-val arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3794 (viper-set-destructive-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3795 (list 'viper-join-lines val nil nil nil nil))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3796 (viper-loop (if (null val) 1 (1- val))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3797 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3798 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3799 (if (not (eobp))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3800 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3801 (forward-line 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3802 (delete-region (point) (1- (point)))
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3803 (fixup-whitespace)
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3804 ;; fixup-whitespace sometimes does not leave space
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3805 ;; between objects, so we insert it as in Vi
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3806 (or (looking-at " ")
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3807 (insert " ")
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3808 (backward-char 1))
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
3809 ))))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3810
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3811
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3812 ;; Replace state
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3813
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3814 (defun viper-change (beg end)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3815 (if (markerp beg) (setq beg (marker-position beg)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3816 (if (markerp end) (setq end (marker-position end)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3817 ;; beg is sometimes (mark t), which may be nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3818 (or beg (setq beg end))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3819
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3820 (viper-set-complex-command-for-undo)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3821 (if viper-use-register
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3822 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3823 (copy-to-register viper-use-register beg end nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3824 (setq viper-use-register nil)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3825 (viper-set-replace-overlay beg end)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3826 (setq last-command nil) ; separate repl text from prev kills
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3827
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3828 (if (= (viper-replace-start) (point-max))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3829 (error "End of buffer"))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3830
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3831 (setq viper-last-replace-region
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3832 (buffer-substring (viper-replace-start)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3833 (viper-replace-end)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3834
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3835 ;; protect against error while inserting "@" and other disasters
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3836 ;; (e.g., read-only buff)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3837 (condition-case conds
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3838 (if (or viper-allow-multiline-replace-regions
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3839 (viper-same-line (viper-replace-start)
19203
58c50205001d new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 19079
diff changeset
3840 (viper-replace-end)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3841 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3842 ;; tabs cause problems in replace, so untabify
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3843 (goto-char (viper-replace-end))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3844 (insert-before-markers "@") ; put placeholder after the TAB
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3845 (untabify (viper-replace-start) (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3846 ;; del @, don't put on kill ring
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3847 (delete-backward-char 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3848
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3849 (viper-set-replace-overlay-glyphs
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3850 viper-replace-region-start-delimiter
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3851 viper-replace-region-end-delimiter)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3852 ;; this move takes care of the last posn in the overlay, which
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3853 ;; has to be shifted because of insert. We can't simply insert
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3854 ;; "$" before-markers because then overlay-start will shift the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3855 ;; beginning of the overlay in case we are replacing a single
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3856 ;; character. This fixes the bug with `s' and `cl' commands.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3857 (viper-move-replace-overlay (viper-replace-start) (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3858 (goto-char (viper-replace-start))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3859 (viper-change-state-to-replace t))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3860 (kill-region (viper-replace-start)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3861 (viper-replace-end))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3862 (viper-hide-replace-overlay)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3863 (viper-change-state-to-insert))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3864 (error ;; make sure that the overlay doesn't stay.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3865 ;; go back to the original point
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3866 (goto-char (viper-replace-start))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3867 (viper-hide-replace-overlay)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3868 (viper-message-conditions conds))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3869
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3870
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3871 (defun viper-change-subr (beg end)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3872 ;; beg is sometimes (mark t), which may be nil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3873 (or beg (setq beg end))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3874 (if viper-use-register
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3875 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3876 (copy-to-register viper-use-register beg end nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3877 (setq viper-use-register nil)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3878 (kill-region beg end)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3879 (setq this-command 'viper-change)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3880 (viper-yank-last-insertion))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3881
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3882 (defun viper-toggle-case (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3883 "Toggle character case."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3884 (interactive "P")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3885 (let ((val (viper-p-val arg)) (c))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3886 (viper-set-destructive-command
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3887 (list 'viper-toggle-case val nil nil nil nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3888 (while (> val 0)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3889 (setq c (following-char))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3890 (delete-char 1 nil)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3891 (if (eq c (upcase c))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3892 (insert-char (downcase c) 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3893 (insert-char (upcase c) 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3894 (if (eolp) (backward-char 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3895 (setq val (1- val)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3896
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3897
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3898 ;; query replace
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3899
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3900 (defun viper-query-replace ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3901 "Query replace.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3902 If a null string is suplied as the string to be replaced,
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3903 the query replace mode will toggle between string replace
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3904 and regexp replace."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3905 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3906 (let (str)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3907 (setq str (viper-read-string-with-history
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3908 (if viper-re-query-replace "Query replace regexp: "
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3909 "Query replace: ")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3910 nil ; no initial
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3911 'viper-replace1-history
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3912 (car viper-replace1-history) ; default
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3913 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3914 (if (string= str "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3915 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3916 (setq viper-re-query-replace (not viper-re-query-replace))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3917 (message "Query replace mode changed to %s"
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3918 (if viper-re-query-replace "regexp replace"
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3919 "string replace")))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3920 (if viper-re-query-replace
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3921 (query-replace-regexp
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3922 str
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3923 (viper-read-string-with-history
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3924 (format "Query replace regexp `%s' with: " str)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3925 nil ; no initial
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3926 'viper-replace1-history
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3927 (car viper-replace1-history) ; default
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3928 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3929 (query-replace
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3930 str
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3931 (viper-read-string-with-history
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3932 (format "Query replace `%s' with: " str)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3933 nil ; no initial
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3934 'viper-replace1-history
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3935 (car viper-replace1-history) ; default
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3936 ))))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3937
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3938
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3939 ;; marking
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3940
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3941 (defun viper-mark-beginning-of-buffer ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3942 "Mark beginning of buffer."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3943 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3944 (push-mark (point))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3945 (goto-char (point-min))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3946 (exchange-point-and-mark)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3947 (message "Mark set at the beginning of buffer"))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3948
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3949 (defun viper-mark-end-of-buffer ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3950 "Mark end of buffer."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3951 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3952 (push-mark (point))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3953 (goto-char (point-max))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3954 (exchange-point-and-mark)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3955 (message "Mark set at the end of buffer"))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3956
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3957 (defun viper-mark-point ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3958 "Set mark at point of buffer."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3959 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3960 (let ((char (read-char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3961 (cond ((and (<= ?a char) (<= char ?z))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3962 (point-to-register (1+ (- char ?a))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3963 ((= char ?<) (viper-mark-beginning-of-buffer))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3964 ((= char ?>) (viper-mark-end-of-buffer))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3965 ((= char ?.) (viper-set-mark-if-necessary))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3966 ((= char ?,) (viper-cycle-through-mark-ring))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3967 ((= char ?D) (mark-defun))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3968 (t (error ""))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3969 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3970
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3971 ;; Algorithm: If first invocation of this command save mark on ring, goto
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3972 ;; mark, M0, and pop the most recent elt from the mark ring into mark,
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3973 ;; making it into the new mark, M1.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3974 ;; Push this mark back and set mark to the original point position, p1.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3975 ;; So, if you hit '' or `` then you can return to p1.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3976 ;;
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3977 ;; If repeated command, pop top elt from the ring into mark and
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3978 ;; jump there. This forgets the position, p1, and puts M1 back into mark.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3979 ;; Then we save the current pos, which is M0, jump to M1 and pop M2 from
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3980 ;; the ring into mark. Push M2 back on the ring and set mark to M0.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3981 ;; etc.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3982 (defun viper-cycle-through-mark-ring ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3983 "Visit previous locations on the mark ring.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3984 One can use `` and '' to temporarily jump 1 step back."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3985 (let* ((sv-pt (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3986 ;; if repeated `m,' command, pop the previously saved mark.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3987 ;; Prev saved mark is actually prev saved point. It is used if the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3988 ;; user types `` or '' and is discarded
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3989 ;; from the mark ring by the next `m,' command.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3990 ;; In any case, go to the previous or previously saved mark.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3991 ;; Then push the current mark (popped off the ring) and set current
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3992 ;; point to be the mark. Current pt as mark is discarded by the next
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3993 ;; m, command.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3994 (if (eq last-command 'viper-cycle-through-mark-ring)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3995 ()
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3996 ;; save current mark if the first iteration
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
3997 (setq mark-ring (delete (viper-mark-marker) mark-ring))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3998 (if (mark t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
3999 (push-mark (mark t) t)) )
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4000 (pop-mark)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4001 (set-mark-command 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4002 ;; don't duplicate mark on the ring
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4003 (setq mark-ring (delete (viper-mark-marker) mark-ring))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4004 (push-mark sv-pt t)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4005 (viper-deactivate-mark)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4006 (setq this-command 'viper-cycle-through-mark-ring)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4007 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4008
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4009
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4010 (defun viper-goto-mark (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4011 "Go to mark."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4012 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4013 (let ((char (read-char))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4014 (com (viper-getcom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4015 (viper-goto-mark-subr char com nil)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4016
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4017 (defun viper-goto-mark-and-skip-white (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4018 "Go to mark and skip to first non-white character on line."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4019 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4020 (let ((char (read-char))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4021 (com (viper-getCom arg)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4022 (viper-goto-mark-subr char com t)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4023
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4024 (defun viper-goto-mark-subr (char com skip-white)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4025 (if (eobp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4026 (if (bobp)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4027 (error "Empty buffer")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4028 (backward-char 1)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4029 (cond ((viper-valid-register char '(letter))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4030 (let* ((buff (current-buffer))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4031 (reg (1+ (- char ?a)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4032 (text-marker (get-register reg)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4033 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4034 (if (not (viper-valid-marker text-marker))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4035 (error viper-EmptyTextmarker char))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4036 (if (and (viper-same-line (point) viper-last-jump)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4037 (= (point) viper-last-jump-ignore))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4038 (push-mark viper-last-jump t)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4039 (push-mark nil t)) ; no msg
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4040 (viper-register-to-point reg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4041 (setq viper-last-jump (point-marker))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4042 (cond (skip-white
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4043 (back-to-indentation)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4044 (setq viper-last-jump-ignore (point))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4045 (if com
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4046 (if (equal buff (current-buffer))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4047 (viper-execute-com (if skip-white
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4048 'viper-goto-mark-and-skip-white
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4049 'viper-goto-mark)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4050 nil com)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4051 (switch-to-buffer buff)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4052 (goto-char viper-com-point)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4053 (viper-change-state-to-vi)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4054 (error "")))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4055 ((and (not skip-white) (= char ?`))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4056 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4057 (if (and (viper-same-line (point) viper-last-jump)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4058 (= (point) viper-last-jump-ignore))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4059 (goto-char viper-last-jump))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4060 (if (null (mark t)) (error "Mark is not set in this buffer"))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4061 (if (= (point) (mark t)) (pop-mark))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4062 (exchange-point-and-mark)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4063 (setq viper-last-jump (point-marker)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4064 viper-last-jump-ignore 0)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4065 (if com (viper-execute-com 'viper-goto-mark nil com)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4066 ((and skip-white (= char ?'))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4067 (if com (viper-move-marker-locally 'viper-com-point (point)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4068 (if (and (viper-same-line (point) viper-last-jump)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4069 (= (point) viper-last-jump-ignore))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4070 (goto-char viper-last-jump))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4071 (if (= (point) (mark t)) (pop-mark))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4072 (exchange-point-and-mark)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4073 (setq viper-last-jump (point))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4074 (back-to-indentation)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4075 (setq viper-last-jump-ignore (point))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4076 (if com (viper-execute-com 'viper-goto-mark-and-skip-white nil com)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4077 (t (error viper-InvalidTextmarker char))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4078
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4079 (defun viper-insert-tab ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4080 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4081 (insert-tab))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4082
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4083 (defun viper-exchange-point-and-mark ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4084 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4085 (exchange-point-and-mark)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4086 (back-to-indentation))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4087
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4088 ;; Input Mode Indentation
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4089
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4090 ;; Returns t, if the string before point matches the regexp STR.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4091 (defsubst viper-looking-back (str)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4092 (and (save-excursion (re-search-backward str nil t))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4093 (= (point) (match-end 0))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4094
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4095
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4096 (defun viper-forward-indent ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4097 "Indent forward -- `C-t' in Vi."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4098 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4099 (setq viper-cted t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4100 (indent-to (+ (current-column) viper-shift-width)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4101
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4102 (defun viper-backward-indent ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4103 "Backtab, C-d in VI"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4104 (interactive)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4105 (if viper-cted
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4106 (let ((p (point)) (c (current-column)) bol (indent t))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4107 (if (viper-looking-back "[0^]")
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4108 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4109 (if (eq ?^ (preceding-char))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4110 (setq viper-preserve-indent t))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4111 (delete-backward-char 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4112 (setq p (point))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4113 (setq indent nil)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4114 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4115 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4116 (setq bol (point)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4117 (if (re-search-backward "[^ \t]" bol 1) (forward-char))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4118 (delete-region (point) p)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4119 (if indent
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4120 (indent-to (- c viper-shift-width)))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4121 (if (or (bolp) (viper-looking-back "[^ \t]"))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4122 (setq viper-cted nil)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4123
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4124 (defun viper-autoindent ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4125 "Auto Indentation, Vi-style."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4126 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4127 (let ((col (current-indentation)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4128 (if abbrev-mode (expand-abbrev))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4129 (if viper-preserve-indent
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4130 (setq viper-preserve-indent nil)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4131 (setq viper-current-indent col))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4132 ;; don't leave whitespace lines around
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4133 (if (memq last-command
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4134 '(viper-autoindent
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4135 viper-open-line viper-Open-line
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4136 viper-replace-state-exit-cmd))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4137 (indent-to-left-margin))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4138 ;; use \n instead of newline, or else <Return> will move the insert point
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4139 ;;(newline 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4140 (insert "\n")
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4141 (if viper-auto-indent
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4142 (progn
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4143 (setq viper-cted t)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4144 (if (and viper-electric-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4145 (not
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4146 (memq major-mode '(fundamental-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4147 text-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4148 paragraph-indent-text-mode ))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4149 (indent-according-to-mode)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4150 (indent-to viper-current-indent))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4151 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4152 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4153
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4154
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4155 ;; Viewing registers
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4156
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4157 (defun viper-ket-function (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4158 "Function called by \], the ket. View registers and call \]\]."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4159 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4160 (let ((reg (read-char)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4161 (cond ((viper-valid-register reg '(letter Letter))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4162 (view-register (downcase reg)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4163 ((viper-valid-register reg '(digit))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4164 (let ((text (current-kill (- reg ?1) 'do-not-rotate)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4165 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4166 (set-buffer (get-buffer-create "*Output*"))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4167 (delete-region (point-min) (point-max))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4168 (insert (format "Register %c contains the string:\n" reg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4169 (insert text)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4170 (goto-char (point-min)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4171 (display-buffer "*Output*")))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4172 ((= ?\] reg)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4173 (viper-next-heading arg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4174 (t (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4175 viper-InvalidRegister reg)))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4176
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4177 (defun viper-brac-function (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4178 "Function called by \[, the brac. View textmarkers and call \[\["
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4179 (interactive "P")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4180 (let ((reg (read-char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4181 (cond ((= ?\[ reg)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4182 (viper-prev-heading arg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4183 ((= ?\] reg)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4184 (viper-heading-end arg))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4185 ((viper-valid-register reg '(letter))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4186 (let* ((val (get-register (1+ (- reg ?a))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4187 (buf (if (not val)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4188 (error viper-EmptyTextmarker reg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4189 (marker-buffer val)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4190 (pos (marker-position val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4191 line-no text (s pos) (e pos))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4192 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4193 (set-buffer (get-buffer-create "*Output*"))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4194 (delete-region (point-min) (point-max))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4195 (if (and buf pos)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4196 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4197 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4198 (set-buffer buf)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4199 (setq line-no (1+ (count-lines (point-min) val)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4200 (goto-char pos)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4201 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4202 (if (re-search-backward "[^ \t]" nil t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4203 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4204 (beginning-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4205 (setq s (point))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4206 (goto-char pos)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4207 (forward-line 1)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4208 (if (re-search-forward "[^ \t]" nil t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4209 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4210 (end-of-line)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4211 (setq e (point))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4212 (setq text (buffer-substring s e))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4213 (setq text (format "%s<%c>%s"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4214 (substring text 0 (- pos s))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4215 reg (substring text (- pos s)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4216 (insert
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4217 (format
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4218 "Textmarker `%c' is in buffer `%s' at line %d.\n"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4219 reg (buffer-name buf) line-no))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4220 (insert (format "Here is some text around %c:\n\n %s"
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4221 reg text)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4222 (insert (format viper-EmptyTextmarker reg)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4223 (goto-char (point-min)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4224 (display-buffer "*Output*")))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4225 (t (error viper-InvalidTextmarker reg)))))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4226
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4227
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4228
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4229 ;; commands in insertion mode
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4230
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4231 (defun viper-delete-backward-word (arg)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4232 "Delete previous word."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4233 (interactive "p")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4234 (save-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4235 (push-mark nil t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4236 (backward-word arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4237 (delete-region (point) (mark t))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4238 (pop-mark)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4239
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4240
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4241 (defun viper-set-expert-level (&optional dont-change-unless)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4242 "Sets the expert level for a Viper user.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4243 Can be called interactively to change (temporarily or permanently) the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4244 current expert level.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4245
18289
3a43376db2be new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18172
diff changeset
4246 The optional argument DONT-CHANGE-UNLESS, if not nil, says that
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4247 the level should not be changed, unless its current value is
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4248 meaningless (i.e., not one of 1,2,3,4,5).
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4249
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4250 User level determines the setting of Viper variables that are most
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4251 sensitive for VI-style look-and-feel."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4252
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4253 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4254
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4255 (if (not (natnump viper-expert-level)) (setq viper-expert-level 0))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4256
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4257 (save-window-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4258 (delete-other-windows)
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4259 ;; if 0 < viper-expert-level < viper-max-expert-level
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4260 ;; & dont-change-unless = t -- use it; else ask
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4261 (viper-ask-level dont-change-unless))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4262
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4263 (setq viper-always t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4264 viper-ex-style-motion t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4265 viper-ex-style-editing-in-insert t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4266 viper-want-ctl-h-help nil)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4267
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4268 (cond ((eq viper-expert-level 1) ; novice or beginner
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4269 (global-set-key ; in emacs-state
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4270 viper-toggle-key
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4271 (if (viper-window-display-p) 'viper-iconify 'suspend-emacs))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4272 (setq viper-no-multiple-ESC t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4273 viper-re-search t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4274 viper-vi-style-in-minibuffer t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4275 viper-search-wrap-around-t t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4276 viper-electric-mode nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4277 viper-want-emacs-keys-in-vi nil
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4278 viper-want-emacs-keys-in-insert nil))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4279
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4280 ((and (> viper-expert-level 1) (< viper-expert-level 5))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4281 ;; intermediate to guru
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4282 (setq viper-no-multiple-ESC (if (viper-window-display-p)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4283 t 'twice)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4284 viper-electric-mode t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4285 viper-want-emacs-keys-in-vi t
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4286 viper-want-emacs-keys-in-insert (> viper-expert-level 2))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4287
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4288 (if (eq viper-expert-level 4) ; respect user's ex-style motion
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4289 ; and viper-no-multiple-ESC
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4290 (progn
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4291 (setq-default
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4292 viper-ex-style-editing-in-insert
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4293 (viper-standard-value 'viper-ex-style-editing-in-insert)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4294 viper-ex-style-motion
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4295 (viper-standard-value 'viper-ex-style-motion))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4296 (setq viper-ex-style-motion
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4297 (viper-standard-value 'viper-ex-style-motion)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4298 viper-ex-style-editing-in-insert
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4299 (viper-standard-value 'viper-ex-style-editing-in-insert)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4300 viper-re-search
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4301 (viper-standard-value 'viper-re-search)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4302 viper-no-multiple-ESC
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4303 (viper-standard-value 'viper-no-multiple-ESC)))))
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4304
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4305 ;; A wizard!!
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4306 ;; Ideally, if 5 is selected, a buffer should pop up to let the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4307 ;; user toggle the values of variables.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4308 (t (setq-default viper-ex-style-editing-in-insert
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4309 (viper-standard-value 'viper-ex-style-editing-in-insert)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4310 viper-ex-style-motion
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4311 (viper-standard-value 'viper-ex-style-motion))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4312 (setq viper-want-ctl-h-help
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4313 (viper-standard-value 'viper-want-ctl-h-help)
18289
3a43376db2be new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18172
diff changeset
4314 viper-always
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4315 (viper-standard-value 'viper-always)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4316 viper-no-multiple-ESC
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4317 (viper-standard-value 'viper-no-multiple-ESC)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4318 viper-ex-style-motion
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4319 (viper-standard-value 'viper-ex-style-motion)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4320 viper-ex-style-editing-in-insert
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4321 (viper-standard-value 'viper-ex-style-editing-in-insert)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4322 viper-re-search
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4323 (viper-standard-value 'viper-re-search)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4324 viper-electric-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4325 (viper-standard-value 'viper-electric-mode)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4326 viper-want-emacs-keys-in-vi
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4327 (viper-standard-value 'viper-want-emacs-keys-in-vi)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4328 viper-want-emacs-keys-in-insert
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4329 (viper-standard-value 'viper-want-emacs-keys-in-insert))))
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4330
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4331 (viper-set-mode-vars-for viper-current-state)
18289
3a43376db2be new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18172
diff changeset
4332 (if (or viper-always
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4333 (and (> viper-expert-level 0) (> 5 viper-expert-level)))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4334 (viper-set-hooks)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4335
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4336 ;; Ask user expert level.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4337 (defun viper-ask-level (dont-change-unless)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4338 (let ((ask-buffer " *viper-ask-level*")
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4339 level-changed repeated)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4340 (save-window-excursion
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4341 (switch-to-buffer ask-buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4342
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4343 (while (or (> viper-expert-level viper-max-expert-level)
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4344 (< viper-expert-level 1)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4345 (null dont-change-unless))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4346 (erase-buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4347 (if repeated
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4348 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4349 (message "Invalid user level")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4350 (beep 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4351 (setq repeated t))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4352 (setq dont-change-unless t
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4353 level-changed t)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4354 (insert "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4355 Please specify your level of familiarity with the venomous VI PERil
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4356 (and the VI Plan for Emacs Rescue).
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4357 You can change it at any time by typing `M-x viper-set-expert-level RET'
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4358
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4359 1 -- BEGINNER: Almost all Emacs features are suppressed.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4360 Feels almost like straight Vi. File name completion and
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4361 command history in the minibuffer are thrown in as a bonus.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4362 To use Emacs productively, you must reach level 3 or higher.
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4363 2 -- MASTER: C-c now has its standard Emacs meaning in Vi command state,
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4364 so most Emacs commands can be used when Viper is in Vi state.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4365 Good progress---you are well on the way to level 3!
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4366 3 -- GRAND MASTER: Like 3, but most Emacs commands are available also
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4367 in Viper's insert state.
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4368 4 -- GURU: Like 3, but user settings are respected for viper-no-multiple-ESC,
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4369 viper-ex-style-motion, viper-ex-style-editing-in-insert, and
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4370 viper-re-search variables. Adjust these settings to your taste.
18289
3a43376db2be new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18172
diff changeset
4371 5 -- WIZARD: Like 4, but user settings are also respected for viper-always,
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4372 viper-electric-mode, viper-want-ctl-h-help, viper-want-emacs-keys-in-vi,
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4373 and viper-want-emacs-keys-in-insert. Adjust these to your taste.
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4374
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4375 Please, specify your level now: ")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4376
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4377 (setq viper-expert-level (- (viper-read-char-exclusive) ?0))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4378 ) ; end while
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4379
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4380 ;; tell the user if level was changed
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4381 (and level-changed
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4382 (progn
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4383 (insert
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4384 (format "\n\n\n\n\n\t\tYou have selected user level %d"
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4385 viper-expert-level))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4386 (if (y-or-n-p "Do you wish to make this change permanent? ")
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4387 ;; save the setting for viper-expert-level
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4388 (viper-save-setting
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4389 'viper-expert-level
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4390 (format "Saving user level %d ..." viper-expert-level)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4391 viper-custom-file-name))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4392 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4393 (bury-buffer) ; remove ask-buffer from screen
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4394 (message "")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4395 )))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4396
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4397
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4398 (defun viper-nil ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4399 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4400 (beep 1))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4401
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4402
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4403 ;; if ENFORCE-BUFFER is not nil, error if CHAR is a marker in another buffer
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4404 (defun viper-register-to-point (char &optional enforce-buffer)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4405 "Like jump-to-register, but switches to another buffer in another window."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4406 (interactive "cViper register to point: ")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4407 (let ((val (get-register char)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4408 (cond
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4409 ((and (fboundp 'frame-configuration-p)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4410 (frame-configuration-p val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4411 (set-frame-configuration val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4412 ((window-configuration-p val)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4413 (set-window-configuration val))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4414 ((viper-valid-marker val)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4415 (if (and enforce-buffer
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4416 (not (equal (current-buffer) (marker-buffer val))))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4417 (error (concat viper-EmptyTextmarker " in this buffer")
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4418 (1- (+ char ?a))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4419 (pop-to-buffer (marker-buffer val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4420 (goto-char val))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4421 ((and (consp val) (eq (car val) 'file))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4422 (find-file (cdr val)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4423 (t
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4424 (error viper-EmptyTextmarker (1- (+ char ?a)))))))
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4425
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4426
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4427 (defun viper-save-kill-buffer ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4428 "Save then kill current buffer. "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4429 (interactive)
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4430 (if (< viper-expert-level 2)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4431 (save-buffers-kill-emacs)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4432 (save-buffer)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4433 (kill-buffer (current-buffer))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4434
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4435
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4436
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4437 ;;; Bug Report
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4438
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4439 (defun viper-submit-report ()
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4440 "Submit bug report on Viper."
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4441 (interactive)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4442 (let ((reporter-prompt-for-summary-p t)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4443 (viper-device-type (viper-device-type))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4444 color-display-p frame-parameters
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4445 minibuffer-emacs-face minibuffer-vi-face minibuffer-insert-face
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4446 varlist salutation window-config)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4447
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4448 ;; If mode info is needed, add variable to `let' and then set it below,
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4449 ;; like we did with color-display-p.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4450 (setq color-display-p (if (viper-window-display-p)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4451 (viper-color-display-p)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4452 'non-x)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4453 minibuffer-vi-face (if (viper-has-face-support-p)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4454 (viper-get-face viper-minibuffer-vi-face)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4455 'non-x)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4456 minibuffer-insert-face (if (viper-has-face-support-p)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4457 (viper-get-face
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4458 viper-minibuffer-insert-face)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4459 'non-x)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4460 minibuffer-emacs-face (if (viper-has-face-support-p)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4461 (viper-get-face
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4462 viper-minibuffer-emacs-face)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4463 'non-x)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4464 frame-parameters (if (fboundp 'frame-parameters)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4465 (frame-parameters (selected-frame))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4466
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4467 (setq varlist (list 'viper-vi-minibuffer-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4468 'viper-insert-minibuffer-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4469 'viper-vi-intercept-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4470 'viper-vi-local-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4471 'viper-vi-kbd-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4472 'viper-vi-global-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4473 'viper-vi-state-modifier-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4474 'viper-vi-diehard-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4475 'viper-vi-basic-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4476 'viper-replace-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4477 'viper-insert-intercept-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4478 'viper-insert-local-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4479 'viper-insert-kbd-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4480 'viper-insert-global-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4481 'viper-insert-state-modifier-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4482 'viper-insert-diehard-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4483 'viper-insert-basic-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4484 'viper-emacs-intercept-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4485 'viper-emacs-local-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4486 'viper-emacs-kbd-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4487 'viper-emacs-global-user-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4488 'viper-emacs-state-modifier-minor-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4489 'viper-automatic-iso-accents
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4490 'viper-want-emacs-keys-in-insert
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4491 'viper-want-emacs-keys-in-vi
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4492 'viper-keep-point-on-undo
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4493 'viper-no-multiple-ESC
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4494 'viper-electric-mode
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4495 'viper-ESC-key
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4496 'viper-want-ctl-h-help
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4497 'viper-ex-style-editing-in-insert
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4498 'viper-delete-backwards-in-replace
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4499 'viper-vi-style-in-minibuffer
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4500 'viper-vi-state-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4501 'viper-insert-state-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4502 'viper-replace-state-hook
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4503 'viper-emacs-state-hook
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4504 'ex-cycle-other-window
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4505 'ex-cycle-through-non-files
18839
1405083241e8 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18289
diff changeset
4506 'viper-expert-level
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4507 'major-mode
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4508 'viper-device-type
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4509 'color-display-p
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4510 'frame-parameters
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4511 'minibuffer-vi-face
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4512 'minibuffer-insert-face
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4513 'minibuffer-emacs-face
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4514 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4515 (setq salutation "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4516 Congratulations! You may have unearthed a bug in Viper!
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4517 Please mail a concise, accurate summary of the problem to the address above.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4518
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4519 -------------------------------------------------------------------")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4520 (setq window-config (current-window-configuration))
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4521 (with-output-to-temp-buffer " *viper-info*"
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4522 (switch-to-buffer " *viper-info*")
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4523 (delete-other-windows)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4524 (princ "
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4525 PLEASE FOLLOW THESE PROCEDURES
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4526 ------------------------------
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4527
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4528 Before reporting a bug, please verify that it is related to Viper, and is
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4529 not cause by other packages you are using.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4530
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4531 Don't report compilation warnings, unless you are certain that there is a
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4532 problem. These warnings are normal and unavoidable.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4533
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4534 Please note that users should not modify variables and keymaps other than
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4535 those advertised in the manual. Such `customization' is likely to crash
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4536 Viper, as it would any other improperly customized Emacs package.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4537
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4538 If you are reporting an error message received while executing one of the
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4539 Viper commands, type:
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4540
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4541 M-x set-variable <Return> debug-on-error <Return> t <Return>
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4542
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4543 Then reproduce the error. The above command will cause Emacs to produce a
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4544 back trace of the execution that leads to the error. Please include this
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4545 trace in your bug report.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4546
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4547 If you believe that one of Viper's commands goes into an infinite loop
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4548 \(e.g., Emacs freezes\), type:
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4549
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4550 M-x set-variable <Return> debug-on-quit <Return> t <Return>
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4551
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4552 Then reproduce the problem. Wait for a few seconds, then type C-g to abort
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4553 the current command. Include the resulting back trace in the bug report.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4554
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4555 Mail anyway (y or n)? ")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4556 (if (y-or-n-p "Mail anyway? ")
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4557 ()
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4558 (set-window-configuration window-config)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4559 (error "Bug report aborted")))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4560
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4561 (require 'reporter)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4562 (set-window-configuration window-config)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4563
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4564 (reporter-submit-bug-report "kifer@cs.sunysb.edu"
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4565 (viper-version)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4566 varlist
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4567 nil 'delete-other-windows
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4568 salutation)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4569 ))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4570
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4571
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4572
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4573
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4574 ;; Smoothes out the difference between Emacs' unread-command-events
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4575 ;; and XEmacs unread-command-event. Arg is a character, an event, a list of
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4576 ;; events or a sequence of keys.
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4577 ;;
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4578 ;; Due to the way unread-command-events in Emacs (not XEmacs), a non-event
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4579 ;; symbol in unread-command-events list may cause Emacs to turn this symbol
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4580 ;; into an event. Below, we delete nil from event lists, since nil is the most
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4581 ;; common symbol that might appear in this wrong context.
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4582 (defun viper-set-unread-command-events (arg)
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4583 (if viper-emacs-p
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4584 (setq
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4585 unread-command-events
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4586 (let ((new-events
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4587 (cond ((eventp arg) (list arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4588 ((listp arg) arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4589 ((sequencep arg)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4590 (listify-key-sequence arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4591 (t (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4592 "viper-set-unread-command-events: Invalid argument, %S"
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4593 arg)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4594 (if (not (eventp nil))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4595 (setq new-events (delq nil new-events)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4596 (append new-events unread-command-events)))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4597 ;; XEmacs
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4598 (setq
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4599 unread-command-events
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4600 (append
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4601 (cond ((viper-characterp arg) (list (character-to-event arg)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4602 ((eventp arg) (list arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4603 ((stringp arg) (mapcar 'character-to-event arg))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4604 ((vectorp arg) (append arg nil)) ; turn into list
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4605 ((listp arg) (viper-eventify-list-xemacs arg))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4606 (t (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4607 "viper-set-unread-command-events: Invalid argument, %S" arg)))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4608 unread-command-events))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4609
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4610 ;; list is assumed to be a list of events of characters
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4611 (defun viper-eventify-list-xemacs (lis)
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4612 (mapcar
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4613 (function (lambda (elt)
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4614 (cond ((viper-characterp elt) (character-to-event elt))
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4615 ((eventp elt) elt)
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4616 (t (error
19078
46326a66c27c new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents: 18958
diff changeset
4617 "viper-eventify-list-xemacs: can't convert to event, %S"
18129
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4618 elt)))))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4619 lis))
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4620
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4621
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4622
e92598964ee6 new version
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
diff changeset
4623 ;;; viper-cmd.el ends here