Mercurial > emacs
annotate lisp/emulation/viper-cmd.el @ 27819:2a6f200db73d
(specbind): Remove references to
keyword_symbols_constant_flag.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 23 Feb 2000 10:44:03 +0000 |
parents | 2ddbff6366e9 |
children | 42f9a58e0fc4 |
rev | line source |
---|---|
18129 | 1 ;;; viper-cmd.el --- Vi command support for Viper |
2 ;; Copyright (C) 1997 Free Software Foundation, Inc. | |
3 | |
19905
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
4 ;; This file is part of GNU Emacs. |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
5 |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
6 ;; GNU Emacs is free software; you can redistribute it and/or modify |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
7 ;; it under the terms of the GNU General Public License as published by |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
8 ;; the Free Software Foundation; either version 2, or (at your option) |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
9 ;; any later version. |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
10 |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
11 ;; GNU Emacs is distributed in the hope that it will be useful, |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
12 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
14 ;; GNU General Public License for more details. |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
15 |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
16 ;; You should have received a copy of the GNU General Public License |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
17 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
18 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
19 ;; Boston, MA 02111-1307, USA. |
18129 | 20 |
21 ;; Code | |
22 | |
23 (provide 'viper-cmd) | |
18172 | 24 (require 'advice) |
18129 | 25 |
26 ;; Compiler pacifier | |
19078 | 27 (defvar viper-minibuffer-current-face) |
28 (defvar viper-minibuffer-insert-face) | |
29 (defvar viper-minibuffer-vi-face) | |
30 (defvar viper-minibuffer-emacs-face) | |
18289 | 31 (defvar viper-always) |
19078 | 32 (defvar viper-mode-string) |
33 (defvar viper-custom-file-name) | |
18129 | 34 (defvar iso-accents-mode) |
19462 | 35 (defvar quail-mode) |
36 (defvar quail-current-str) | |
18129 | 37 (defvar zmacs-region-stays) |
38 (defvar mark-even-if-inactive) | |
39 | |
18172 | 40 ;; loading happens only in non-interactive compilation |
41 ;; in order to spare non-viperized emacs from being viperized | |
42 (if noninteractive | |
43 (eval-when-compile | |
44 (let ((load-path (cons (expand-file-name ".") load-path))) | |
45 (or (featurep 'viper-util) | |
46 (load "viper-util.el" nil nil 'nosuffix)) | |
47 (or (featurep 'viper-keym) | |
48 (load "viper-keym.el" nil nil 'nosuffix)) | |
49 (or (featurep 'viper-mous) | |
50 (load "viper-mous.el" nil nil 'nosuffix)) | |
51 (or (featurep 'viper-macs) | |
52 (load "viper-macs.el" nil nil 'nosuffix)) | |
53 (or (featurep 'viper-ex) | |
54 (load "viper-ex.el" nil nil 'nosuffix)) | |
55 ))) | |
18129 | 56 ;; end pacifier |
57 | |
58 | |
59 (require 'viper-util) | |
60 (require 'viper-keym) | |
61 (require 'viper-mous) | |
62 (require 'viper-macs) | |
63 (require 'viper-ex) | |
64 | |
65 | |
66 | |
67 ;; Generic predicates | |
68 | |
69 ;; These test functions are shamelessly lifted from vip 4.4.2 by Aamod Sane | |
70 | |
71 ;; generate test functions | |
72 ;; given symbol foo, foo-p is the test function, foos is the set of | |
73 ;; Viper command keys | |
19078 | 74 ;; (macroexpand '(viper-test-com-defun foo)) |
18129 | 75 ;; (defun foo-p (com) (consp (memq (if (< com 0) (- com) com) foos))) |
76 | |
19078 | 77 (defmacro viper-test-com-defun (name) |
18129 | 78 (let* ((snm (symbol-name name)) |
79 (nm-p (intern (concat snm "-p"))) | |
80 (nms (intern (concat snm "s")))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
81 `(defun ,nm-p (com) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
82 (consp (memq (if (and (viper-characterp com) (< com 0)) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
83 (- com) com) ,nms))))) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
84 |
18129 | 85 ;; Variables for defining VI commands |
86 | |
87 ;; Modifying commands that can be prefixes to movement commands | |
19078 | 88 (defconst viper-prefix-commands '(?c ?d ?y ?! ?= ?# ?< ?> ?\")) |
89 ;; define viper-prefix-command-p | |
90 (viper-test-com-defun viper-prefix-command) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
91 |
18129 | 92 ;; Commands that are pairs eg. dd. r and R here are a hack |
19078 | 93 (defconst viper-charpair-commands '(?c ?d ?y ?! ?= ?< ?> ?r ?R)) |
94 ;; define viper-charpair-command-p | |
95 (viper-test-com-defun viper-charpair-command) | |
96 | |
97 (defconst viper-movement-commands '(?b ?B ?e ?E ?f ?F ?G ?h ?H ?j ?k ?l | |
18129 | 98 ?H ?M ?L ?n ?t ?T ?w ?W ?$ ?% |
99 ?^ ?( ?) ?- ?+ ?| ?{ ?} ?[ ?] ?' ?` | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
100 ?\; ?, ?0 ?? ?/ ?\ ?\C-m |
19078 | 101 space return |
102 delete backspace | |
18129 | 103 ) |
104 "Movement commands") | |
19078 | 105 ;; define viper-movement-command-p |
106 (viper-test-com-defun viper-movement-command) | |
18129 | 107 |
18839 | 108 ;; Vi digit commands |
19078 | 109 (defconst viper-digit-commands '(?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9)) |
110 | |
111 ;; define viper-digit-command-p | |
112 (viper-test-com-defun viper-digit-command) | |
18129 | 113 |
114 ;; Commands that can be repeated by . (dotted) | |
19078 | 115 (defconst viper-dotable-commands '(?c ?d ?C ?s ?S ?D ?> ?<)) |
116 ;; define viper-dotable-command-p | |
117 (viper-test-com-defun viper-dotable-command) | |
18129 | 118 |
119 ;; Commands that can follow a # | |
19078 | 120 (defconst viper-hash-commands '(?c ?C ?g ?q ?s)) |
121 ;; define viper-hash-command-p | |
122 (viper-test-com-defun viper-hash-command) | |
18129 | 123 |
124 ;; Commands that may have registers as prefix | |
19078 | 125 (defconst viper-regsuffix-commands '(?d ?y ?Y ?D ?p ?P ?x ?X)) |
126 ;; define viper-regsuffix-command-p | |
127 (viper-test-com-defun viper-regsuffix-command) | |
128 | |
129 (defconst viper-vi-commands (append viper-movement-commands | |
130 viper-digit-commands | |
131 viper-dotable-commands | |
132 viper-charpair-commands | |
133 viper-hash-commands | |
134 viper-prefix-commands | |
135 viper-regsuffix-commands) | |
18129 | 136 "The list of all commands in Vi-state.") |
19078 | 137 ;; define viper-vi-command-p |
138 (viper-test-com-defun viper-vi-command) | |
18129 | 139 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
140 ;; Where viper saves mark. This mark is resurrected by m^ |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
141 (defvar viper-saved-mark nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
142 |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
143 |
18129 | 144 |
145 ;;; CODE | |
146 | |
147 ;; sentinels | |
148 | |
19078 | 149 ;; Runs viper-after-change-functions inside after-change-functions |
150 (defun viper-after-change-sentinel (beg end len) | |
21940 | 151 (run-hook-with-args 'viper-after-change-functions beg end len)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
152 |
19078 | 153 ;; Runs viper-before-change-functions inside before-change-functions |
154 (defun viper-before-change-sentinel (beg end) | |
21940 | 155 (run-hook-with-args 'viper-before-change-functions beg end)) |
18129 | 156 |
19078 | 157 (defsubst viper-post-command-sentinel () |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
158 (run-hooks 'viper-post-command-hooks) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
159 (if (eq viper-current-state 'vi-state) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
160 (viper-restore-cursor-color 'after-insert-mode))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
161 |
19078 | 162 (defsubst viper-pre-command-sentinel () |
163 (run-hooks 'viper-pre-command-hooks)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
164 |
18129 | 165 ;; Needed so that Viper will be able to figure the last inserted |
166 ;; chunk of text with reasonable accuracy. | |
19078 | 167 (defsubst viper-insert-state-post-command-sentinel () |
168 (if (and (memq viper-current-state '(insert-state replace-state)) | |
169 viper-insert-point | |
170 (>= (point) viper-insert-point)) | |
171 (setq viper-last-posn-while-in-insert-state (point-marker))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
172 (or (viper-overlay-p viper-replace-overlay) |
18129 | 173 (progn |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
174 (viper-set-replace-overlay (point-min) (point-min)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
175 (viper-hide-replace-overlay))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
176 (if (eq viper-current-state 'insert-state) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
177 (let ((has-saved-cursor-color-in-insert-mode |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
178 (stringp (viper-get-saved-cursor-color-in-insert-mode)))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
179 (or has-saved-cursor-color-in-insert-mode |
19078 | 180 (string= (viper-get-cursor-color) viper-insert-state-cursor-color) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
181 ;; save current color, if not already saved |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
182 (viper-save-cursor-color 'before-insert-mode)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
183 ;; set insert mode cursor color |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
184 (viper-change-cursor-color viper-insert-state-cursor-color))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
185 |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
186 (if (and (memq this-command '(dabbrev-expand hippie-expand)) |
19078 | 187 (integerp viper-pre-command-point) |
19756 | 188 (markerp viper-insert-point) |
189 (marker-position viper-insert-point) | |
19078 | 190 (> viper-insert-point viper-pre-command-point)) |
19756 | 191 (viper-move-marker-locally viper-insert-point viper-pre-command-point)) |
18129 | 192 ) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
193 |
19078 | 194 (defsubst viper-insert-state-pre-command-sentinel () |
18129 | 195 (or (memq this-command '(self-insert-command)) |
19078 | 196 (memq (viper-event-key last-command-event) |
18129 | 197 '(up down left right (meta f) (meta b) |
198 (control n) (control p) (control f) (control b))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
199 (viper-restore-cursor-color 'after-insert-mode)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
200 (if (and (memq this-command '(dabbrev-expand hippie-expand)) |
19078 | 201 (markerp viper-insert-point) |
202 (marker-position viper-insert-point)) | |
203 (setq viper-pre-command-point (marker-position viper-insert-point)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
204 |
19078 | 205 (defsubst viper-R-state-post-command-sentinel () |
18129 | 206 ;; Restoring cursor color is needed despite |
19078 | 207 ;; viper-replace-state-pre-command-sentinel: When you jump to another buffer |
208 ;; in another frame, the pre-command hook won't change cursor color to | |
209 ;; default in that other frame. So, if the second frame cursor was red and | |
210 ;; we set the point outside the replacement region, then the cursor color | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
211 ;; will remain red. Restoring the default, below, prevents this. |
19078 | 212 (if (and (<= (viper-replace-start) (point)) |
213 (<= (point) (viper-replace-end))) | |
214 (viper-change-cursor-color viper-replace-overlay-cursor-color) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
215 (viper-restore-cursor-color 'after-replace-mode) |
18129 | 216 )) |
217 | |
218 ;; to speed up, don't change cursor color before self-insert | |
219 ;; and common move commands | |
19078 | 220 (defsubst viper-replace-state-pre-command-sentinel () |
18129 | 221 (or (memq this-command '(self-insert-command)) |
19078 | 222 (memq (viper-event-key last-command-event) |
18129 | 223 '(up down left right (meta f) (meta b) |
224 (control n) (control p) (control f) (control b))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
225 (viper-restore-cursor-color 'after-replace-mode))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
226 |
26702
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
227 |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
228 ;; Make sure we don't delete more than needed. |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
229 ;; This is executed at viper-last-posn-in-replace-region |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
230 (defsubst viper-trim-replace-chars-to-delete-if-necessary () |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
231 (setq viper-replace-chars-to-delete |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
232 (max 0 |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
233 (min viper-replace-chars-to-delete |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
234 ;; Don't delete more than to the end of repl overlay |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
235 (viper-chars-in-region |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
236 (viper-replace-end) viper-last-posn-in-replace-region) |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
237 ;; point is viper-last-posn-in-replace-region now |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
238 ;; So, this limits deletion to the end of line |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
239 (viper-chars-in-region (point) (viper-line-pos 'end)) |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
240 )))) |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
241 |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
242 |
19078 | 243 (defun viper-replace-state-post-command-sentinel () |
18129 | 244 ;; Restoring cursor color is needed despite |
19078 | 245 ;; viper-replace-state-pre-command-sentinel: When one jumps to another buffer |
18129 | 246 ;; in another frame, the pre-command hook won't change cursor color to |
247 ;; default in that other frame. So, if the second frame cursor was red and | |
248 ;; we set the point outside the replacement region, then the cursor color | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
249 ;; will remain red. Restoring the default, below, fixes this problem. |
18129 | 250 ;; |
251 ;; We optimize for self-insert-command's here, since they either don't change | |
252 ;; cursor color or, if they terminate replace mode, the color will be changed | |
19078 | 253 ;; in viper-finish-change |
18129 | 254 (or (memq this-command '(self-insert-command)) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
255 (viper-restore-cursor-color 'after-replace-mode)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
256 (cond |
19078 | 257 ((eq viper-current-state 'replace-state) |
18129 | 258 ;; delete characters to compensate for inserted chars. |
19078 | 259 (let ((replace-boundary (viper-replace-end))) |
18129 | 260 (save-excursion |
19078 | 261 (goto-char viper-last-posn-in-replace-region) |
19462 | 262 (viper-trim-replace-chars-to-delete-if-necessary) |
19078 | 263 (delete-char viper-replace-chars-to-delete) |
19462 | 264 (setq viper-replace-chars-to-delete 0) |
18129 | 265 ;; terminate replace mode if reached replace limit |
19462 | 266 (if (= viper-last-posn-in-replace-region (viper-replace-end)) |
267 (viper-finish-change))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
268 |
19462 | 269 (if (viper-pos-within-region |
270 (point) (viper-replace-start) replace-boundary) | |
18129 | 271 (progn |
19078 | 272 ;; the state may have changed in viper-finish-change above |
273 (if (eq viper-current-state 'replace-state) | |
274 (viper-change-cursor-color viper-replace-overlay-cursor-color)) | |
275 (setq viper-last-posn-in-replace-region (point-marker)))) | |
18129 | 276 )) |
19462 | 277 ;; terminate replace mode if changed Viper states. |
278 (t (viper-finish-change)))) | |
18129 | 279 |
280 | |
281 ;; changing mode | |
282 | |
283 ;; Change state to NEW-STATE---either emacs-state, vi-state, or insert-state. | |
19078 | 284 (defun viper-change-state (new-state) |
285 ;; Keep viper-post/pre-command-hooks fresh. | |
286 ;; We remove then add viper-post/pre-command-sentinel since it is very | |
287 ;; desirable that viper-pre-command-sentinel is the last hook and | |
288 ;; viper-post-command-sentinel is the first hook. | |
21940 | 289 |
290 (make-local-hook 'viper-after-change-functions) | |
291 (make-local-hook 'viper-before-change-functions) | |
292 (make-local-hook 'viper-post-command-hooks) | |
293 (make-local-hook 'viper-pre-command-hooks) | |
294 | |
19078 | 295 (remove-hook 'post-command-hook 'viper-post-command-sentinel) |
296 (add-hook 'post-command-hook 'viper-post-command-sentinel) | |
297 (remove-hook 'pre-command-hook 'viper-pre-command-sentinel) | |
298 (add-hook 'pre-command-hook 'viper-pre-command-sentinel t) | |
18129 | 299 ;; These hooks will be added back if switching to insert/replace mode |
21940 | 300 (remove-hook 'viper-post-command-hooks |
301 'viper-insert-state-post-command-sentinel 'local) | |
302 (remove-hook 'viper-pre-command-hooks | |
303 'viper-insert-state-pre-command-sentinel 'local) | |
19078 | 304 (setq viper-intermediate-command nil) |
18129 | 305 (cond ((eq new-state 'vi-state) |
19078 | 306 (cond ((member viper-current-state '(insert-state replace-state)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
307 |
19078 | 308 ;; move viper-last-posn-while-in-insert-state |
18129 | 309 ;; This is a normal hook that is executed in insert/replace |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
310 ;; states after each command. In Vi/Emacs state, it does |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
311 ;; nothing. We need to execute it here to make sure that |
18129 | 312 ;; the last posn was recorded when we hit ESC. |
313 ;; It may be left unrecorded if the last thing done in | |
314 ;; insert/repl state was dabbrev-expansion or abbrev | |
315 ;; expansion caused by hitting ESC | |
19078 | 316 (viper-insert-state-post-command-sentinel) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
317 |
18129 | 318 (condition-case conds |
319 (progn | |
19078 | 320 (viper-save-last-insertion |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
321 viper-insert-point |
19078 | 322 viper-last-posn-while-in-insert-state) |
323 (if viper-began-as-replace | |
324 (setq viper-began-as-replace nil) | |
18129 | 325 ;; repeat insert commands if numerical arg > 1 |
326 (save-excursion | |
19078 | 327 (viper-repeat-insert-command)))) |
18129 | 328 (error |
19078 | 329 (viper-message-conditions conds))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
330 |
19078 | 331 (if (> (length viper-last-insertion) 0) |
332 (viper-push-onto-ring viper-last-insertion | |
333 'viper-insertion-ring)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
334 |
26702
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
335 (if viper-ESC-moves-cursor-back |
18129 | 336 (or (bolp) (backward-char 1)))) |
337 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
338 |
18129 | 339 ;; insert or replace |
340 ((memq new-state '(insert-state replace-state)) | |
19078 | 341 (if (memq viper-current-state '(emacs-state vi-state)) |
342 (viper-move-marker-locally 'viper-insert-point (point))) | |
343 (viper-move-marker-locally | |
344 'viper-last-posn-while-in-insert-state (point)) | |
21940 | 345 (add-hook 'viper-post-command-hooks |
346 'viper-insert-state-post-command-sentinel t 'local) | |
347 (add-hook 'viper-pre-command-hooks | |
348 'viper-insert-state-pre-command-sentinel t 'local)) | |
18129 | 349 ) ; outermost cond |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
350 |
18129 | 351 ;; Nothing needs to be done to switch to emacs mode! Just set some |
19078 | 352 ;; variables, which is already done in viper-change-state-to-emacs! |
353 | |
19462 | 354 ;; ISO accents |
355 ;; always turn off iso-accents-mode in vi-state, or else we won't be able to | |
356 ;; use the keys `,',^ , as they will do accents instead of Vi actions. | |
357 (cond ((eq new-state 'vi-state) (viper-set-iso-accents-mode nil));accents off | |
358 (viper-automatic-iso-accents (viper-set-iso-accents-mode t));accents on | |
359 (t (viper-set-iso-accents-mode nil))) | |
360 ;; Always turn off quail mode in vi state | |
361 (cond ((eq new-state 'vi-state) (viper-set-input-method nil)) ;intl input off | |
362 (viper-special-input-method (viper-set-input-method t)) ;intl input on | |
363 (t (viper-set-input-method nil))) | |
364 | |
19078 | 365 (setq viper-current-state new-state) |
19462 | 366 |
367 (viper-update-syntax-classes) | |
19078 | 368 (viper-normalize-minor-mode-map-alist) |
369 (viper-adjust-keys-for new-state) | |
370 (viper-set-mode-vars-for new-state) | |
371 (viper-refresh-mode-line) | |
18129 | 372 ) |
373 | |
374 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
375 |
19078 | 376 (defun viper-adjust-keys-for (state) |
18129 | 377 "Make necessary adjustments to keymaps before entering STATE." |
378 (cond ((memq state '(insert-state replace-state)) | |
19078 | 379 (if viper-auto-indent |
18129 | 380 (progn |
19078 | 381 (define-key viper-insert-basic-map "\C-m" 'viper-autoindent) |
382 (if viper-want-emacs-keys-in-insert | |
18129 | 383 ;; expert |
19078 | 384 (define-key viper-insert-basic-map "\C-j" nil) |
18129 | 385 ;; novice |
19078 | 386 (define-key viper-insert-basic-map "\C-j" 'viper-autoindent))) |
387 (define-key viper-insert-basic-map "\C-m" nil) | |
388 (define-key viper-insert-basic-map "\C-j" nil)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
389 |
19078 | 390 (setq viper-insert-diehard-minor-mode |
391 (not viper-want-emacs-keys-in-insert)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
392 |
19078 | 393 (if viper-want-ctl-h-help |
19891 | 394 (progn |
395 (define-key viper-insert-basic-map "\C-h" 'help-command) | |
396 (define-key viper-replace-map "\C-h" 'help-command)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
397 (define-key viper-insert-basic-map |
19891 | 398 "\C-h" 'viper-del-backward-char-in-insert) |
19462 | 399 (define-key viper-replace-map |
19891 | 400 "\C-h" 'viper-del-backward-char-in-replace)) |
401 ;; In XEmacs, C-h overrides backspace, so we make sure it doesn't. | |
402 (define-key viper-insert-basic-map | |
403 [backspace] 'viper-del-backward-char-in-insert) | |
404 (define-key viper-replace-map | |
405 [backspace] 'viper-del-backward-char-in-replace) | |
406 ) ; end insert/replace case | |
18129 | 407 (t ; Vi state |
19078 | 408 (setq viper-vi-diehard-minor-mode (not viper-want-emacs-keys-in-vi)) |
409 (if viper-want-ctl-h-help | |
19891 | 410 (define-key viper-vi-basic-map "\C-h" 'help-command) |
411 (define-key viper-vi-basic-map "\C-h" 'viper-backward-char)) | |
412 ;; In XEmacs, C-h overrides backspace, so we make sure it doesn't. | |
413 (define-key viper-vi-basic-map [backspace] 'viper-backward-char)) | |
18129 | 414 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
415 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
416 |
18129 | 417 ;; Normalizes minor-mode-map-alist by putting Viper keymaps first. |
418 ;; This ensures that Viper bindings are in effect, regardless of which minor | |
419 ;; modes were turned on by the user or by other packages. | |
19078 | 420 (defun viper-normalize-minor-mode-map-alist () |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
421 (setq minor-mode-map-alist |
19078 | 422 (viper-append-filter-alist |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
423 (list (cons 'viper-vi-intercept-minor-mode viper-vi-intercept-map) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
424 (cons 'viper-vi-minibuffer-minor-mode viper-minibuffer-map) |
19078 | 425 (cons 'viper-vi-local-user-minor-mode viper-vi-local-user-map) |
426 (cons 'viper-vi-kbd-minor-mode viper-vi-kbd-map) | |
427 (cons 'viper-vi-global-user-minor-mode viper-vi-global-user-map) | |
428 (cons 'viper-vi-state-modifier-minor-mode | |
18129 | 429 (if (keymapp |
19203 | 430 (cdr (assoc major-mode |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
431 viper-vi-state-modifier-alist))) |
19078 | 432 (cdr (assoc major-mode viper-vi-state-modifier-alist)) |
433 viper-empty-keymap)) | |
434 (cons 'viper-vi-diehard-minor-mode viper-vi-diehard-map) | |
435 (cons 'viper-vi-basic-minor-mode viper-vi-basic-map) | |
19203 | 436 (cons 'viper-insert-intercept-minor-mode |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
437 viper-insert-intercept-map) |
19078 | 438 (cons 'viper-replace-minor-mode viper-replace-map) |
439 ;; viper-insert-minibuffer-minor-mode must come after | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
440 ;; viper-replace-minor-mode |
19078 | 441 (cons 'viper-insert-minibuffer-minor-mode |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
442 viper-minibuffer-map) |
19078 | 443 (cons 'viper-insert-local-user-minor-mode |
444 viper-insert-local-user-map) | |
445 (cons 'viper-insert-kbd-minor-mode viper-insert-kbd-map) | |
446 (cons 'viper-insert-global-user-minor-mode | |
447 viper-insert-global-user-map) | |
448 (cons 'viper-insert-state-modifier-minor-mode | |
18129 | 449 (if (keymapp |
19203 | 450 (cdr (assoc major-mode |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
451 viper-insert-state-modifier-alist))) |
19203 | 452 (cdr (assoc major-mode |
453 viper-insert-state-modifier-alist)) | |
19078 | 454 viper-empty-keymap)) |
455 (cons 'viper-insert-diehard-minor-mode viper-insert-diehard-map) | |
456 (cons 'viper-insert-basic-minor-mode viper-insert-basic-map) | |
457 (cons 'viper-emacs-intercept-minor-mode | |
458 viper-emacs-intercept-map) | |
459 (cons 'viper-emacs-local-user-minor-mode | |
460 viper-emacs-local-user-map) | |
461 (cons 'viper-emacs-kbd-minor-mode viper-emacs-kbd-map) | |
462 (cons 'viper-emacs-global-user-minor-mode | |
463 viper-emacs-global-user-map) | |
464 (cons 'viper-emacs-state-modifier-minor-mode | |
18129 | 465 (if (keymapp |
466 (cdr | |
19078 | 467 (assoc major-mode viper-emacs-state-modifier-alist))) |
18129 | 468 (cdr |
19078 | 469 (assoc major-mode viper-emacs-state-modifier-alist)) |
470 viper-empty-keymap)) | |
18129 | 471 ) |
472 minor-mode-map-alist))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
473 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
474 |
18129 | 475 |
476 ;; Viper mode-changing commands and utilities | |
477 | |
478 ;; Modifies mode-line-buffer-identification. | |
19078 | 479 (defun viper-refresh-mode-line () |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
480 (setq viper-mode-string |
19078 | 481 (cond ((eq viper-current-state 'emacs-state) viper-emacs-state-id) |
482 ((eq viper-current-state 'vi-state) viper-vi-state-id) | |
483 ((eq viper-current-state 'replace-state) viper-replace-state-id) | |
484 ((eq viper-current-state 'insert-state) viper-insert-state-id))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
485 |
18129 | 486 ;; Sets Viper mode string in global-mode-string |
487 (force-mode-line-update)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
488 |
18129 | 489 |
490 ;; Switch from Insert state to Vi state. | |
19078 | 491 (defun viper-exit-insert-state () |
18129 | 492 (interactive) |
19078 | 493 (viper-change-state-to-vi)) |
494 | |
495 (defun viper-set-mode-vars-for (state) | |
18129 | 496 "Sets Viper minor mode variables to put Viper's state STATE in effect." |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
497 |
18129 | 498 ;; Emacs state |
19078 | 499 (setq viper-vi-minibuffer-minor-mode nil |
500 viper-insert-minibuffer-minor-mode nil | |
501 viper-vi-intercept-minor-mode nil | |
502 viper-insert-intercept-minor-mode nil | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
503 |
19078 | 504 viper-vi-local-user-minor-mode nil |
505 viper-vi-kbd-minor-mode nil | |
506 viper-vi-global-user-minor-mode nil | |
507 viper-vi-state-modifier-minor-mode nil | |
508 viper-vi-diehard-minor-mode nil | |
509 viper-vi-basic-minor-mode nil | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
510 |
19078 | 511 viper-replace-minor-mode nil |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
512 |
19078 | 513 viper-insert-local-user-minor-mode nil |
514 viper-insert-kbd-minor-mode nil | |
515 viper-insert-global-user-minor-mode nil | |
516 viper-insert-state-modifier-minor-mode nil | |
517 viper-insert-diehard-minor-mode nil | |
518 viper-insert-basic-minor-mode nil | |
519 viper-emacs-intercept-minor-mode t | |
520 viper-emacs-local-user-minor-mode t | |
521 viper-emacs-kbd-minor-mode (not (viper-is-in-minibuffer)) | |
522 viper-emacs-global-user-minor-mode t | |
523 viper-emacs-state-modifier-minor-mode t | |
18129 | 524 ) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
525 |
18129 | 526 ;; Vi state |
527 (if (eq state 'vi-state) ; adjust for vi-state | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
528 (setq |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
529 viper-vi-intercept-minor-mode t |
19078 | 530 viper-vi-minibuffer-minor-mode (viper-is-in-minibuffer) |
531 viper-vi-local-user-minor-mode t | |
532 viper-vi-kbd-minor-mode (not (viper-is-in-minibuffer)) | |
533 viper-vi-global-user-minor-mode t | |
534 viper-vi-state-modifier-minor-mode t | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
535 ;; don't let the diehard keymap block command completion |
18129 | 536 ;; and other things in the minibuffer |
19078 | 537 viper-vi-diehard-minor-mode (not |
538 (or viper-want-emacs-keys-in-vi | |
539 (viper-is-in-minibuffer))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
540 viper-vi-basic-minor-mode t |
19078 | 541 viper-emacs-intercept-minor-mode nil |
542 viper-emacs-local-user-minor-mode nil | |
543 viper-emacs-kbd-minor-mode nil | |
544 viper-emacs-global-user-minor-mode nil | |
545 viper-emacs-state-modifier-minor-mode nil | |
18129 | 546 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
547 |
18129 | 548 ;; Insert and Replace states |
549 (if (member state '(insert-state replace-state)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
550 (setq |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
551 viper-insert-intercept-minor-mode t |
19078 | 552 viper-replace-minor-mode (eq state 'replace-state) |
553 viper-insert-minibuffer-minor-mode (viper-is-in-minibuffer) | |
554 viper-insert-local-user-minor-mode t | |
555 viper-insert-kbd-minor-mode (not (viper-is-in-minibuffer)) | |
556 viper-insert-global-user-minor-mode t | |
557 viper-insert-state-modifier-minor-mode t | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
558 ;; don't let the diehard keymap block command completion |
18129 | 559 ;; and other things in the minibuffer |
19078 | 560 viper-insert-diehard-minor-mode (not |
561 (or | |
562 viper-want-emacs-keys-in-insert | |
563 (viper-is-in-minibuffer))) | |
564 viper-insert-basic-minor-mode t | |
565 viper-emacs-intercept-minor-mode nil | |
566 viper-emacs-local-user-minor-mode nil | |
567 viper-emacs-kbd-minor-mode nil | |
568 viper-emacs-global-user-minor-mode nil | |
569 viper-emacs-state-modifier-minor-mode nil | |
18129 | 570 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
571 |
18129 | 572 ;; minibuffer faces |
19078 | 573 (if (viper-has-face-support-p) |
574 (setq viper-minibuffer-current-face | |
575 (cond ((eq state 'emacs-state) viper-minibuffer-emacs-face) | |
576 ((eq state 'vi-state) viper-minibuffer-vi-face) | |
18129 | 577 ((memq state '(insert-state replace-state)) |
19078 | 578 viper-minibuffer-insert-face)))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
579 |
19078 | 580 (if (viper-is-in-minibuffer) |
581 (viper-set-minibuffer-overlay)) | |
18129 | 582 ) |
583 | |
584 ;; This also takes care of the annoying incomplete lines in files. | |
585 ;; Also, this fixes `undo' to work vi-style for complex commands. | |
19078 | 586 (defun viper-change-state-to-vi () |
18129 | 587 "Change Viper state to Vi." |
588 (interactive) | |
19078 | 589 (if (and viper-first-time (not (viper-is-in-minibuffer))) |
18129 | 590 (viper-mode) |
591 (if overwrite-mode (overwrite-mode nil)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
592 (or (viper-overlay-p viper-replace-overlay) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
593 (viper-set-replace-overlay (point-min) (point-min))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
594 (viper-hide-replace-overlay) |
18129 | 595 (if abbrev-mode (expand-abbrev)) |
596 (if (and auto-fill-function (> (current-column) fill-column)) | |
597 (funcall auto-fill-function)) | |
598 ;; don't leave whitespace lines around | |
599 (if (and (memq last-command | |
19078 | 600 '(viper-autoindent |
601 viper-open-line viper-Open-line | |
602 viper-replace-state-exit-cmd)) | |
603 (viper-over-whitespace-line)) | |
18129 | 604 (indent-to-left-margin)) |
19078 | 605 (viper-add-newline-at-eob-if-necessary) |
19462 | 606 (viper-adjust-undo) |
19078 | 607 (viper-change-state 'vi-state) |
18129 | 608 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
609 (viper-restore-cursor-color 'after-insert-mode) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
610 |
19462 | 611 ;; Protect against user errors in hooks |
18129 | 612 (condition-case conds |
19078 | 613 (run-hooks 'viper-vi-state-hook) |
18129 | 614 (error |
19078 | 615 (viper-message-conditions conds))))) |
616 | |
617 (defun viper-change-state-to-insert () | |
18129 | 618 "Change Viper state to Insert." |
619 (interactive) | |
19078 | 620 (viper-change-state 'insert-state) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
621 |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
622 (or (viper-overlay-p viper-replace-overlay) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
623 (viper-set-replace-overlay (point-min) (point-min))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
624 (viper-hide-replace-overlay) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
625 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
626 (let ((has-saved-cursor-color-in-insert-mode |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
627 (stringp (viper-get-saved-cursor-color-in-insert-mode)))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
628 (or has-saved-cursor-color-in-insert-mode |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
629 (string= (viper-get-cursor-color) viper-insert-state-cursor-color) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
630 (viper-save-cursor-color 'before-insert-mode)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
631 (viper-change-cursor-color viper-insert-state-cursor-color)) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
632 |
19462 | 633 ;; Protect against user errors in hooks |
18129 | 634 (condition-case conds |
19078 | 635 (run-hooks 'viper-insert-state-hook) |
18129 | 636 (error |
19078 | 637 (viper-message-conditions conds)))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
638 |
19078 | 639 (defsubst viper-downgrade-to-insert () |
640 (setq viper-current-state 'insert-state | |
19203 | 641 viper-replace-minor-mode nil)) |
18129 | 642 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
643 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
644 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
645 ;; Change to replace state. When the end of replacement region is reached, |
18129 | 646 ;; replace state changes to insert state. |
19078 | 647 (defun viper-change-state-to-replace (&optional non-R-cmd) |
648 (viper-change-state 'replace-state) | |
18129 | 649 ;; Run insert-state-hook |
650 (condition-case conds | |
19078 | 651 (run-hooks 'viper-insert-state-hook 'viper-replace-state-hook) |
18129 | 652 (error |
19078 | 653 (viper-message-conditions conds))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
654 |
18129 | 655 (if non-R-cmd |
19078 | 656 (viper-start-replace) |
18129 | 657 ;; 'R' is implemented using Emacs's overwrite-mode |
19078 | 658 (viper-start-R-mode)) |
18129 | 659 ) |
660 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
661 |
19078 | 662 (defun viper-change-state-to-emacs () |
18129 | 663 "Change Viper state to Emacs." |
664 (interactive) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
665 (or (viper-overlay-p viper-replace-overlay) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
666 (viper-set-replace-overlay (point-min) (point-min))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
667 (viper-hide-replace-overlay) |
19078 | 668 (viper-change-state 'emacs-state) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
669 |
19462 | 670 ;; Protect agains user errors in hooks |
18129 | 671 (condition-case conds |
19078 | 672 (run-hooks 'viper-emacs-state-hook) |
18129 | 673 (error |
19078 | 674 (viper-message-conditions conds)))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
675 |
18129 | 676 ;; escape to emacs mode termporarily |
19078 | 677 (defun viper-escape-to-emacs (arg &optional events) |
18129 | 678 "Escape to Emacs state from Vi state for one Emacs command. |
679 ARG is used as the prefix value for the executed command. If | |
680 EVENTS is a list of events, which become the beginning of the command." | |
681 (interactive "P") | |
682 (if (= last-command-char ?\\) | |
683 (message "Switched to EMACS state for the next command...")) | |
19078 | 684 (viper-escape-to-state arg events 'emacs-state)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
685 |
18129 | 686 ;; escape to Vi mode termporarily |
19078 | 687 (defun viper-escape-to-vi (arg) |
18129 | 688 "Escape from Emacs state to Vi state for one Vi 1-character command. |
689 If the Vi command that the user types has a prefix argument, e.g., `d2w', then | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
690 Vi's prefix argument will be used. Otherwise, the prefix argument passed to |
19078 | 691 `viper-escape-to-vi' is used." |
18129 | 692 (interactive "P") |
693 (message "Switched to VI state for the next command...") | |
19078 | 694 (viper-escape-to-state arg nil 'vi-state)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
695 |
18129 | 696 ;; Escape to STATE mode for one Emacs command. |
19078 | 697 (defun viper-escape-to-state (arg events state) |
18129 | 698 ;;(let (com key prefix-arg) |
699 (let (com key) | |
700 ;; this temporarily turns off Viper's minor mode keymaps | |
19078 | 701 (viper-set-mode-vars-for state) |
702 (viper-normalize-minor-mode-map-alist) | |
703 (if events (viper-set-unread-command-events events)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
704 |
18129 | 705 ;; protect against keyboard quit and other errors |
706 (condition-case nil | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
707 (let (viper-vi-kbd-minor-mode |
19078 | 708 viper-insert-kbd-minor-mode |
709 viper-emacs-kbd-minor-mode) | |
18129 | 710 (unwind-protect |
711 (progn | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
712 (setq com (key-binding (setq key |
19078 | 713 (if viper-xemacs-p |
18129 | 714 (read-key-sequence nil) |
715 (read-key-sequence nil t))))) | |
716 ;; In case of binding indirection--chase definitions. | |
717 ;; Have to do it here because we execute this command under | |
718 ;; different keymaps, so command-execute may not do the | |
719 ;; right thing there | |
720 (while (vectorp com) (setq com (key-binding com)))) | |
721 nil) | |
722 ;; Execute command com in the original Viper state, not in state | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
723 ;; `state'. Otherwise, if we switch buffers while executing the |
18129 | 724 ;; escaped to command, Viper's mode vars will remain those of |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
725 ;; `state'. When we return to the orig buffer, the bindings will be |
18129 | 726 ;; screwed up. |
19078 | 727 (viper-set-mode-vars-for viper-current-state) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
728 |
18129 | 729 ;; this-command, last-command-char, last-command-event |
730 (setq this-command com) | |
19078 | 731 (if viper-xemacs-p ; XEmacs represents key sequences as vectors |
732 (setq last-command-event | |
733 (viper-copy-event (viper-seq-last-elt key)) | |
18129 | 734 last-command-char (event-to-character last-command-event)) |
735 ;; Emacs represents them as sequences (str or vec) | |
19078 | 736 (setq last-command-event |
737 (viper-copy-event (viper-seq-last-elt key)) | |
18129 | 738 last-command-char last-command-event)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
739 |
18129 | 740 (if (commandp com) |
741 (progn | |
742 (setq prefix-arg (or prefix-arg arg)) | |
743 (command-execute com))) | |
744 ) | |
745 (quit (ding)) | |
746 (error (beep 1)))) | |
747 ;; set state in the new buffer | |
19078 | 748 (viper-set-mode-vars-for viper-current-state)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
749 |
19078 | 750 (defun viper-exec-form-in-vi (form) |
18129 | 751 "Execute FORM in Vi state, regardless of the Ccurrent Vi state." |
752 (let ((buff (current-buffer)) | |
753 result) | |
19078 | 754 (viper-set-mode-vars-for 'vi-state) |
18129 | 755 |
756 (condition-case nil | |
19078 | 757 (let (viper-vi-kbd-minor-mode) ; execute without kbd macros |
758 (setq result (eval form)) | |
759 ) | |
18129 | 760 (error |
761 (signal 'quit nil))) | |
762 | |
763 (if (not (equal buff (current-buffer))) ; cmd switched buffer | |
764 (save-excursion | |
765 (set-buffer buff) | |
19078 | 766 (viper-set-mode-vars-for viper-current-state))) |
767 (viper-set-mode-vars-for viper-current-state) | |
18129 | 768 result)) |
769 | |
19078 | 770 (defun viper-exec-form-in-emacs (form) |
18129 | 771 "Execute FORM in Emacs, temporarily disabling Viper's minor modes. |
19078 | 772 Similar to viper-escape-to-emacs, but accepts forms rather than keystrokes." |
18129 | 773 (let ((buff (current-buffer)) |
774 result) | |
19078 | 775 (viper-set-mode-vars-for 'emacs-state) |
18129 | 776 (setq result (eval form)) |
777 (if (not (equal buff (current-buffer))) ; cmd switched buffer | |
778 (save-excursion | |
779 (set-buffer buff) | |
19078 | 780 (viper-set-mode-vars-for viper-current-state))) |
781 (viper-set-mode-vars-for viper-current-state) | |
18129 | 782 result)) |
783 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
784 |
18129 | 785 ;; This is needed because minor modes sometimes override essential Viper |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
786 ;; bindings. By letting Viper know which files these modes are in, it will |
18129 | 787 ;; arrange to reorganize minor-mode-map-alist so that things will work right. |
19078 | 788 (defun viper-harness-minor-mode (load-file) |
18129 | 789 "Familiarize Viper with a minor mode defined in LOAD_FILE. |
790 Minor modes that have their own keymaps may overshadow Viper keymaps. | |
791 This function is designed to make Viper aware of the packages that define | |
792 such minor modes. | |
793 Usage: | |
19078 | 794 (viper-harness-minor-mode load-file) |
18129 | 795 |
796 LOAD-FILE is a name of the file where the specific minor mode is defined. | |
797 Suffixes such as .el or .elc should be stripped." | |
798 | |
799 (interactive "sEnter name of the load file: ") | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
800 |
19078 | 801 (eval-after-load load-file '(viper-normalize-minor-mode-map-alist)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
802 |
18129 | 803 ;; Change the default for minor-mode-map-alist each time a harnessed minor |
804 ;; mode adds its own keymap to the a-list. | |
19078 | 805 (eval-after-load |
18129 | 806 load-file '(setq-default minor-mode-map-alist minor-mode-map-alist)) |
807 ) | |
808 | |
809 | |
19078 | 810 (defun viper-ESC (arg) |
18129 | 811 "Emulate ESC key in Emacs. |
19078 | 812 Prevents multiple escape keystrokes if viper-no-multiple-ESC is true. |
813 If viper-no-multiple-ESC is 'twice double ESC would ding in vi-state. | |
18129 | 814 Other ESC sequences are emulated via the current Emacs's major mode |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
815 keymap. This is more convenient on TTYs, since this won't block |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
816 function keys such as up,down, etc. ESC will also will also work as |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
817 a Meta key in this case. When viper-no-multiple-ESC is nil, ESC functions |
18129 | 818 as a Meta key and any number of multiple escapes is allowed." |
819 (interactive "P") | |
820 (let (char) | |
19078 | 821 (cond ((and (not viper-no-multiple-ESC) (eq viper-current-state 'vi-state)) |
822 (setq char (viper-read-char-exclusive)) | |
823 (viper-escape-to-emacs arg (list ?\e char) )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
824 ((and (eq viper-no-multiple-ESC 'twice) |
19078 | 825 (eq viper-current-state 'vi-state)) |
826 (setq char (viper-read-char-exclusive)) | |
827 (if (= char (string-to-char viper-ESC-key)) | |
18129 | 828 (ding) |
19078 | 829 (viper-escape-to-emacs arg (list ?\e char) ))) |
18129 | 830 (t (ding))) |
831 )) | |
832 | |
19078 | 833 (defun viper-alternate-Meta-key (arg) |
18129 | 834 "Simulate Emacs Meta key." |
835 (interactive "P") | |
836 (sit-for 1) (message "ESC-") | |
19078 | 837 (viper-escape-to-emacs arg '(?\e))) |
838 | |
839 (defun viper-toggle-key-action () | |
840 "Action bound to `viper-toggle-key'." | |
18129 | 841 (interactive) |
19078 | 842 (if (and (< viper-expert-level 2) (equal viper-toggle-key "\C-z")) |
843 (if (viper-window-display-p) | |
844 (viper-iconify) | |
18129 | 845 (suspend-emacs)) |
19078 | 846 (viper-change-state-to-emacs))) |
18129 | 847 |
848 | |
849 ;; Intercept ESC sequences on dumb terminals. | |
850 ;; Based on the idea contributed by Marcelino Veiga Tuimil <mveiga@dit.upm.es> | |
851 | |
852 ;; Check if last key was ESC and if so try to reread it as a function key. | |
853 ;; But only if there are characters to read during a very short time. | |
854 ;; Returns the last event, if any. | |
19078 | 855 (defun viper-envelop-ESC-key () |
18129 | 856 (let ((event last-input-event) |
857 (keyseq [nil]) | |
858 inhibit-quit) | |
19078 | 859 (if (viper-ESC-event-p event) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
860 (progn |
19078 | 861 (if (viper-fast-keysequence-p) |
18129 | 862 (progn |
863 (let (minor-mode-map-alist) | |
19078 | 864 (viper-set-unread-command-events event) |
18129 | 865 (setq keyseq |
866 (funcall | |
867 (ad-get-orig-definition 'read-key-sequence) nil)) | |
868 ) ; let | |
869 ;; If keyseq translates into something that still has ESC | |
870 ;; at the beginning, separate ESC from the rest of the seq. | |
871 ;; In XEmacs we check for events that are keypress meta-key | |
872 ;; and convert them into [escape key] | |
873 ;; | |
874 ;; This is needed for the following reason: | |
875 ;; If ESC is the first symbol, we interpret it as if the | |
876 ;; user typed ESC and then quickly some other symbols. | |
877 ;; If ESC is not the first one, then the key sequence | |
878 ;; entered was apparently translated into a function key or | |
879 ;; something (e.g., one may have | |
880 ;; (define-key function-key-map "\e[192z" [f11]) | |
881 ;; which would translate the escape-sequence generated by | |
882 ;; f11 in an xterm window into the symbolic key f11. | |
883 ;; | |
884 ;; If `first-key' is not an ESC event, we make it into the | |
885 ;; last-command-event in order to pretend that this key was | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
886 ;; pressed. This is needed to allow arrow keys to be bound to |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
887 ;; macros. Otherwise, viper-exec-mapped-kbd-macro will think |
19078 | 888 ;; that the last event was ESC and so it'll execute whatever is |
18129 | 889 ;; bound to ESC. (Viper macros can't be bound to |
890 ;; ESC-sequences). | |
891 (let* ((first-key (elt keyseq 0)) | |
892 (key-mod (event-modifiers first-key))) | |
19078 | 893 (cond ((viper-ESC-event-p first-key) |
18129 | 894 ;; put keys following ESC on the unread list |
895 ;; and return ESC as the key-sequence | |
19078 | 896 (viper-set-unread-command-events (subseq keyseq 1)) |
18129 | 897 (setq last-input-event event |
19078 | 898 keyseq (if viper-emacs-p |
18129 | 899 "\e" |
900 (vector (character-to-event ?\e))))) | |
19078 | 901 ((and viper-xemacs-p |
18129 | 902 (key-press-event-p first-key) |
903 (equal '(meta) key-mod)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
904 (viper-set-unread-command-events |
18129 | 905 (vconcat (vector |
906 (character-to-event (event-key first-key))) | |
907 (subseq keyseq 1))) | |
908 (setq last-input-event event | |
909 keyseq (vector (character-to-event ?\e)))) | |
910 ((eventp first-key) | |
19078 | 911 (setq last-command-event |
912 (viper-copy-event first-key))) | |
18129 | 913 )) |
914 ) ; end progn | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
915 |
18129 | 916 ;; this is escape event with nothing after it |
917 ;; put in unread-command-event and then re-read | |
19078 | 918 (viper-set-unread-command-events event) |
18129 | 919 (setq keyseq |
920 (funcall (ad-get-orig-definition 'read-key-sequence) nil)) | |
921 )) | |
922 ;; not an escape event | |
923 (setq keyseq (vector event))) | |
924 keyseq)) | |
925 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
926 |
18129 | 927 |
928 ;; Listen to ESC key. | |
929 ;; If a sequence of keys starting with ESC is issued with very short delays, | |
930 ;; interpret these keys in Emacs mode, so ESC won't be interpreted as a Vi key. | |
19078 | 931 (defun viper-intercept-ESC-key () |
18129 | 932 "Function that implements ESC key in Viper emulation of Vi." |
933 (interactive) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
934 (let ((cmd (or (key-binding (viper-envelop-ESC-key)) |
18129 | 935 '(lambda () (interactive) (error ""))))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
936 |
18129 | 937 ;; call the actual function to execute ESC (if no other symbols followed) |
938 ;; or the key bound to the ESC sequence (if the sequence was issued | |
939 ;; with very short delay between characters. | |
19078 | 940 (if (eq cmd 'viper-intercept-ESC-key) |
18129 | 941 (setq cmd |
19078 | 942 (cond ((eq viper-current-state 'vi-state) |
943 'viper-ESC) | |
944 ((eq viper-current-state 'insert-state) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
945 'viper-exit-insert-state) |
19078 | 946 ((eq viper-current-state 'replace-state) |
947 'viper-replace-state-exit-cmd) | |
948 (t 'viper-change-state-to-vi) | |
18129 | 949 ))) |
950 (call-interactively cmd))) | |
951 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
952 |
18129 | 953 |
954 | |
955 ;; prefix argument for Vi mode | |
956 | |
957 ;; In Vi mode, prefix argument is a dotted pair (NUM . COM) where NUM | |
958 ;; represents the numeric value of the prefix argument and COM represents | |
959 ;; command prefix such as "c", "d", "m" and "y". | |
960 | |
961 ;; Get value part of prefix-argument ARG. | |
19078 | 962 (defsubst viper-p-val (arg) |
18129 | 963 (cond ((null arg) 1) |
964 ((consp arg) | |
965 (if (or (null (car arg)) (equal (car arg) '(nil))) | |
966 1 (car arg))) | |
967 (t arg))) | |
968 | |
969 ;; Get raw value part of prefix-argument ARG. | |
19078 | 970 (defsubst viper-P-val (arg) |
18129 | 971 (cond ((consp arg) (car arg)) |
972 (t arg))) | |
973 | |
974 ;; Get com part of prefix-argument ARG. | |
19078 | 975 (defsubst viper-getcom (arg) |
18129 | 976 (cond ((null arg) nil) |
977 ((consp arg) (cdr arg)) | |
978 (t nil))) | |
979 | |
980 ;; Get com part of prefix-argument ARG and modify it. | |
19078 | 981 (defun viper-getCom (arg) |
982 (let ((com (viper-getcom arg))) | |
983 (cond ((equal com ?c) ?c) | |
984 ;; Previously, ?c was being converted to ?C, but this prevented | |
985 ;; multiline replace regions. | |
986 ;;((equal com ?c) ?C) | |
18129 | 987 ((equal com ?d) ?D) |
988 ((equal com ?y) ?Y) | |
989 (t com)))) | |
990 | |
991 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
992 ;; Compute numeric prefix arg value. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
993 ;; Invoked by EVENT. COM is the command part obtained so far. |
21940 | 994 (defun viper-prefix-arg-value (event-char com) |
19078 | 995 (let ((viper-intermediate-command 'viper-digit-argument) |
996 value func) | |
18129 | 997 ;; read while number |
21940 | 998 (while (and (viper-characterp event-char) |
999 (>= event-char ?0) (<= event-char ?9)) | |
1000 (setq value (+ (* (if (integerp value) value 0) 10) (- event-char ?0))) | |
1001 (setq event-char (viper-read-event-convert-to-char))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1002 |
18129 | 1003 (setq prefix-arg value) |
1004 (if com (setq prefix-arg (cons prefix-arg com))) | |
21940 | 1005 (while (eq event-char ?U) |
19078 | 1006 (viper-describe-arg prefix-arg) |
21940 | 1007 (setq event-char (viper-read-event-convert-to-char))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1008 |
19078 | 1009 (if (or com (and (not (eq viper-current-state 'vi-state)) |
18129 | 1010 ;; make sure it is a Vi command |
21940 | 1011 (viper-characterp event-char) |
1012 (viper-vi-command-p event-char) | |
18129 | 1013 )) |
1014 ;; If appears to be one of the vi commands, | |
1015 ;; then execute it with funcall and clear prefix-arg in order to not | |
1016 ;; confuse subsequent commands | |
1017 (progn | |
1018 ;; last-command-char is the char we want emacs to think was typed | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1019 ;; last. If com is not nil, the viper-digit-argument command was |
19078 | 1020 ;; called from within viper-prefix-arg command, such as `d', `w', |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1021 ;; etc., i.e., the user typed, say, d2. In this case, `com' would be |
19078 | 1022 ;; `d', `w', etc. If viper-digit-argument was invoked by |
1023 ;; viper-escape-to-vi (which is indicated by the fact that the | |
21940 | 1024 ;; current state is not vi-state), then `event-char' represents the |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1025 ;; vi command to be executed (e.g., `d', `w', etc). Again, |
19078 | 1026 ;; last-command-char must make emacs believe that this is the command |
1027 ;; we typed. | |
21940 | 1028 (cond ((eq event-char 'return) (setq event-char ?\C-m)) |
1029 ((eq event-char 'delete) (setq event-char ?\C-?)) | |
1030 ((eq event-char 'backspace) (setq event-char ?\C-h)) | |
1031 ((eq event-char 'space) (setq event-char ?\ ))) | |
1032 (setq last-command-char (or com event-char)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1033 (setq func (viper-exec-form-in-vi |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1034 `(key-binding (char-to-string ,event-char)))) |
18129 | 1035 (funcall func prefix-arg) |
1036 (setq prefix-arg nil)) | |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1037 ;; some other command -- let emacs do it in its own way |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1038 (viper-set-unread-command-events event-char)) |
18129 | 1039 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1040 |
18129 | 1041 |
1042 ;; Vi operator as prefix argument." | |
19078 | 1043 (defun viper-prefix-arg-com (char value com) |
18129 | 1044 (let ((cont t) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1045 cmd-info |
18958 | 1046 cmd-to-exec-at-end) |
18129 | 1047 (while (and cont |
1048 (memq char | |
1049 (list ?c ?d ?y ?! ?< ?> ?= ?# ?r ?R ?\" | |
19078 | 1050 viper-buffer-search-char))) |
18129 | 1051 (if com |
1052 ;; this means that we already have a command character, so we | |
1053 ;; construct a com list and exit while. however, if char is " | |
1054 ;; it is an error. | |
1055 (progn | |
1056 ;; new com is (CHAR . OLDCOM) | |
1057 (if (memq char '(?# ?\")) (error "")) | |
1058 (setq com (cons char com)) | |
1059 (setq cont nil)) | |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1060 ;; If com is nil we set com as char, and read more. Again, if char is |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1061 ;; ", we read the name of register and store it in viper-use-register. |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1062 ;; if char is !, =, or #, a complete com is formed so we exit the while |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1063 ;; loop. |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1064 (cond ((memq char '(?! ?=)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1065 (setq com char) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1066 (setq char (read-char)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1067 (setq cont nil)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1068 ((= char ?#) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1069 ;; read a char and encode it as com |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1070 (setq com (+ 128 (read-char))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1071 (setq char (read-char))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1072 ((= char ?\") |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1073 (let ((reg (read-char))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1074 (if (viper-valid-register reg) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1075 (setq viper-use-register reg) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1076 (error "")) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1077 (setq char (read-char)))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1078 (t |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1079 (setq com char) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1080 (setq char (read-char)))))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1081 |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1082 (if (atom com) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1083 ;; `com' is a single char, so we construct the command argument |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1084 ;; and if `char' is `?', we describe the arg; otherwise |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1085 ;; we prepare the command that will be executed at the end. |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1086 (progn |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1087 (setq cmd-info (cons value com)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1088 (while (= char ?U) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1089 (viper-describe-arg cmd-info) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1090 (setq char (read-char))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1091 ;; `char' is a movement cmd, a digit arg cmd, or a register cmd---so we |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1092 ;; execute it at the very end |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1093 (or (viper-movement-command-p char) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1094 (viper-digit-command-p char) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1095 (viper-regsuffix-command-p char) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1096 (= char ?!) ; bang command |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1097 (error "")) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1098 (setq cmd-to-exec-at-end |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1099 (viper-exec-form-in-vi |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1100 `(key-binding (char-to-string ,char))))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1101 |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1102 ;; as com is non-nil, this means that we have a command to execute |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1103 (if (memq (car com) '(?r ?R)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1104 ;; execute apropriate region command. |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1105 (let ((char (car com)) (com (cdr com))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1106 (setq prefix-arg (cons value com)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1107 (if (= char ?r) (viper-region prefix-arg) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1108 (viper-Region prefix-arg)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1109 ;; reset prefix-arg |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1110 (setq prefix-arg nil)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1111 ;; otherwise, reset prefix arg and call appropriate command |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1112 (setq value (if (null value) 1 value)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1113 (setq prefix-arg nil) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1114 (cond |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1115 ;; If we change ?C to ?c here, then cc will enter replacement mode |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1116 ;; rather than deleting lines. However, it will affect 1 less line than |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1117 ;; normal. We decided to not use replacement mode here and follow Vi, |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1118 ;; since replacement mode on n full lines can be achieved with nC. |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1119 ((equal com '(?c . ?c)) (viper-line (cons value ?C))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1120 ((equal com '(?d . ?d)) (viper-line (cons value ?D))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1121 ((equal com '(?d . ?y)) (viper-yank-defun)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1122 ((equal com '(?y . ?y)) (viper-line (cons value ?Y))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1123 ((equal com '(?< . ?<)) (viper-line (cons value ?<))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1124 ((equal com '(?> . ?>)) (viper-line (cons value ?>))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1125 ((equal com '(?! . ?!)) (viper-line (cons value ?!))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1126 ((equal com '(?= . ?=)) (viper-line (cons value ?=))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1127 (t (error ""))))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1128 |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1129 (if cmd-to-exec-at-end |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1130 (progn |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1131 (setq last-command-char char) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1132 (setq last-command-event |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1133 (viper-copy-event |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1134 (if viper-xemacs-p (character-to-event char) char))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1135 (condition-case nil |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1136 (funcall cmd-to-exec-at-end cmd-info) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1137 (error |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1138 (error ""))))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1139 )) |
18129 | 1140 |
19078 | 1141 (defun viper-describe-arg (arg) |
18129 | 1142 (let (val com) |
19078 | 1143 (setq val (viper-P-val arg) |
1144 com (viper-getcom arg)) | |
18129 | 1145 (if (null val) |
1146 (if (null com) | |
1147 (message "Value is nil, and command is nil") | |
1148 (message "Value is nil, and command is `%c'" com)) | |
1149 (if (null com) | |
1150 (message "Value is `%d', and command is nil" val) | |
1151 (message "Value is `%d', and command is `%c'" val com))))) | |
1152 | |
19078 | 1153 (defun viper-digit-argument (arg) |
18129 | 1154 "Begin numeric argument for the next command." |
1155 (interactive "P") | |
19078 | 1156 (viper-leave-region-active) |
1157 (viper-prefix-arg-value | |
18129 | 1158 last-command-char (if (consp arg) (cdr arg) nil))) |
1159 | |
19078 | 1160 (defun viper-command-argument (arg) |
18129 | 1161 "Accept a motion command as an argument." |
1162 (interactive "P") | |
19078 | 1163 (let ((viper-intermediate-command 'viper-command-argument)) |
18129 | 1164 (condition-case nil |
19078 | 1165 (viper-prefix-arg-com |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1166 last-command-char |
18129 | 1167 (cond ((null arg) nil) |
1168 ((consp arg) (car arg)) | |
1169 ((integerp arg) arg) | |
19078 | 1170 (t (error viper-InvalidCommandArgument))) |
18129 | 1171 (cond ((null arg) nil) |
1172 ((consp arg) (cdr arg)) | |
1173 ((integerp arg) nil) | |
19078 | 1174 (t (error viper-InvalidCommandArgument)))) |
1175 (quit (setq viper-use-register nil) | |
18129 | 1176 (signal 'quit nil))) |
19078 | 1177 (viper-deactivate-mark))) |
18129 | 1178 |
1179 | |
1180 ;; repeat last destructive command | |
1181 | |
1182 ;; Append region to text in register REG. | |
1183 ;; START and END are buffer positions indicating what to append. | |
19078 | 1184 (defsubst viper-append-to-register (reg start end) |
18129 | 1185 (set-register reg (concat (if (stringp (get-register reg)) |
1186 (get-register reg) "") | |
1187 (buffer-substring start end)))) | |
1188 | |
19078 | 1189 ;; Saves last inserted text for possible use by viper-repeat command. |
1190 (defun viper-save-last-insertion (beg end) | |
19756 | 1191 (condition-case nil |
1192 (setq viper-last-insertion (buffer-substring beg end)) | |
1193 (error | |
1194 ;; beg or end marker are somehow screwed up | |
1195 (setq viper-last-insertion nil))) | |
19078 | 1196 (setq viper-last-insertion (buffer-substring beg end)) |
1197 (or (< (length viper-d-com) 5) | |
1198 (setcar (nthcdr 4 viper-d-com) viper-last-insertion)) | |
1199 (or (null viper-command-ring) | |
1200 (ring-empty-p viper-command-ring) | |
18129 | 1201 (progn |
19078 | 1202 (setcar (nthcdr 4 (viper-current-ring-item viper-command-ring)) |
1203 viper-last-insertion) | |
18129 | 1204 ;; del most recent elt, if identical to the second most-recent |
19078 | 1205 (viper-cleanup-ring viper-command-ring))) |
18129 | 1206 ) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1207 |
19078 | 1208 (defsubst viper-yank-last-insertion () |
1209 "Inserts the text saved by the previous viper-save-last-insertion command." | |
18129 | 1210 (condition-case nil |
19078 | 1211 (insert viper-last-insertion) |
18129 | 1212 (error nil))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1213 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1214 |
18129 | 1215 ;; define functions to be executed |
1216 | |
1217 ;; invoked by the `C' command | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1218 (defun viper-exec-change (m-com com) |
19078 | 1219 (or (and (markerp viper-com-point) (marker-position viper-com-point)) |
1220 (set-marker viper-com-point (point) (current-buffer))) | |
18129 | 1221 ;; handle C cmd at the eol and at eob. |
19078 | 1222 (if (or (and (eolp) (= viper-com-point (point))) |
1223 (= viper-com-point (point-max))) | |
18129 | 1224 (progn |
1225 (insert " ")(backward-char 1))) | |
19078 | 1226 (if (= viper-com-point (point)) |
1227 (viper-forward-char-carefully)) | |
1228 (set-mark viper-com-point) | |
1229 (if (eq m-com 'viper-next-line-at-bol) | |
1230 (viper-enlarge-region (mark t) (point))) | |
1231 (if (< (point) (mark t)) | |
1232 (exchange-point-and-mark)) | |
1233 (if (eq (preceding-char) ?\n) | |
1234 (viper-backward-char-carefully)) ; give back the newline | |
18129 | 1235 (if (= com ?c) |
19078 | 1236 (viper-change (mark t) (point)) |
1237 (viper-change-subr (mark t) (point)))) | |
1238 | |
1239 ;; this is invoked by viper-substitute-line | |
1240 (defun viper-exec-Change (m-com com) | |
18129 | 1241 (save-excursion |
19078 | 1242 (set-mark viper-com-point) |
1243 (viper-enlarge-region (mark t) (point)) | |
1244 (if viper-use-register | |
18129 | 1245 (progn |
19078 | 1246 (cond ((viper-valid-register viper-use-register '(letter digit)) |
18129 | 1247 (copy-to-register |
19078 | 1248 viper-use-register (mark t) (point) nil)) |
1249 ((viper-valid-register viper-use-register '(Letter)) | |
1250 (viper-append-to-register | |
1251 (downcase viper-use-register) (mark t) (point))) | |
1252 (t (setq viper-use-register nil) | |
1253 (error viper-InvalidRegister viper-use-register))) | |
1254 (setq viper-use-register nil))) | |
18129 | 1255 (delete-region (mark t) (point))) |
1256 (open-line 1) | |
19078 | 1257 (if (= com ?C) |
1258 (viper-change-state-to-insert) | |
1259 (viper-yank-last-insertion))) | |
1260 | |
1261 (defun viper-exec-delete (m-com com) | |
1262 (or (and (markerp viper-com-point) (marker-position viper-com-point)) | |
1263 (set-marker viper-com-point (point) (current-buffer))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1264 (let (chars-deleted) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1265 (if viper-use-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1266 (progn |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1267 (cond ((viper-valid-register viper-use-register '(letter digit)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1268 (copy-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1269 viper-use-register viper-com-point (point) nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1270 ((viper-valid-register viper-use-register '(Letter)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1271 (viper-append-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1272 (downcase viper-use-register) viper-com-point (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1273 (t (setq viper-use-register nil) |
19078 | 1274 (error viper-InvalidRegister viper-use-register))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1275 (setq viper-use-register nil))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1276 (setq last-command |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1277 (if (eq last-command 'd-command) 'kill-region nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1278 (setq chars-deleted (abs (- (point) viper-com-point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1279 (if (> chars-deleted viper-change-notification-threshold) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1280 (message "Deleted %d characters" chars-deleted)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1281 (kill-region viper-com-point (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1282 (setq this-command 'd-command) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1283 (if viper-ex-style-motion |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1284 (if (and (eolp) (not (bolp))) (backward-char 1))))) |
18129 | 1285 |
19078 | 1286 (defun viper-exec-Delete (m-com com) |
18129 | 1287 (save-excursion |
19078 | 1288 (set-mark viper-com-point) |
1289 (viper-enlarge-region (mark t) (point)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1290 (let (lines-deleted) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1291 (if viper-use-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1292 (progn |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1293 (cond ((viper-valid-register viper-use-register '(letter digit)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1294 (copy-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1295 viper-use-register (mark t) (point) nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1296 ((viper-valid-register viper-use-register '(Letter)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1297 (viper-append-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1298 (downcase viper-use-register) (mark t) (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1299 (t (setq viper-use-register nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1300 (error viper-InvalidRegister viper-use-register))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1301 (setq viper-use-register nil))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1302 (setq last-command |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1303 (if (eq last-command 'D-command) 'kill-region nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1304 (setq lines-deleted (count-lines (point) viper-com-point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1305 (if (> lines-deleted viper-change-notification-threshold) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1306 (message "Deleted %d lines" lines-deleted)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1307 (kill-region (mark t) (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1308 (if (eq m-com 'viper-line) (setq this-command 'D-command))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1309 (back-to-indentation))) |
18129 | 1310 |
21940 | 1311 ;; save region |
19078 | 1312 (defun viper-exec-yank (m-com com) |
1313 (or (and (markerp viper-com-point) (marker-position viper-com-point)) | |
1314 (set-marker viper-com-point (point) (current-buffer))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1315 (let (chars-saved) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1316 (if viper-use-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1317 (progn |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1318 (cond ((viper-valid-register viper-use-register '(letter digit)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1319 (copy-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1320 viper-use-register viper-com-point (point) nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1321 ((viper-valid-register viper-use-register '(Letter)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1322 (viper-append-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1323 (downcase viper-use-register) viper-com-point (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1324 (t (setq viper-use-register nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1325 (error viper-InvalidRegister viper-use-register))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1326 (setq viper-use-register nil))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1327 (setq last-command nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1328 (copy-region-as-kill viper-com-point (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1329 (setq chars-saved (abs (- (point) viper-com-point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1330 (if (> chars-saved viper-change-notification-threshold) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1331 (message "Saved %d characters" chars-saved)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1332 (goto-char viper-com-point))) |
19078 | 1333 |
21940 | 1334 ;; save lines |
19078 | 1335 (defun viper-exec-Yank (m-com com) |
18129 | 1336 (save-excursion |
19078 | 1337 (set-mark viper-com-point) |
1338 (viper-enlarge-region (mark t) (point)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1339 (let (lines-saved) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1340 (if viper-use-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1341 (progn |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1342 (cond ((viper-valid-register viper-use-register '(letter digit)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1343 (copy-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1344 viper-use-register (mark t) (point) nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1345 ((viper-valid-register viper-use-register '(Letter)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1346 (viper-append-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1347 (downcase viper-use-register) (mark t) (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1348 (t (setq viper-use-register nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1349 (error viper-InvalidRegister viper-use-register))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1350 (setq viper-use-register nil))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1351 (setq last-command nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1352 (copy-region-as-kill (mark t) (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1353 (setq lines-saved (count-lines (mark t) (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1354 (if (> lines-saved viper-change-notification-threshold) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1355 (message "Saved %d lines" lines-saved)))) |
19078 | 1356 (viper-deactivate-mark) |
1357 (goto-char viper-com-point)) | |
1358 | |
1359 (defun viper-exec-bang (m-com com) | |
18129 | 1360 (save-excursion |
19078 | 1361 (set-mark viper-com-point) |
1362 (viper-enlarge-region (mark t) (point)) | |
18958 | 1363 (exchange-point-and-mark) |
18129 | 1364 (shell-command-on-region |
1365 (mark t) (point) | |
1366 (if (= com ?!) | |
19078 | 1367 (setq viper-last-shell-com |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1368 (viper-read-string-with-history |
18129 | 1369 "!" |
1370 nil | |
19078 | 1371 'viper-shell-history |
1372 (car viper-shell-history) | |
18129 | 1373 )) |
19078 | 1374 viper-last-shell-com) |
18129 | 1375 t))) |
1376 | |
19078 | 1377 (defun viper-exec-equals (m-com com) |
18129 | 1378 (save-excursion |
19078 | 1379 (set-mark viper-com-point) |
1380 (viper-enlarge-region (mark t) (point)) | |
18129 | 1381 (if (> (mark t) (point)) (exchange-point-and-mark)) |
1382 (indent-region (mark t) (point) nil))) | |
1383 | |
19078 | 1384 (defun viper-exec-shift (m-com com) |
18129 | 1385 (save-excursion |
19078 | 1386 (set-mark viper-com-point) |
1387 (viper-enlarge-region (mark t) (point)) | |
18129 | 1388 (if (> (mark t) (point)) (exchange-point-and-mark)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1389 (indent-rigidly (mark t) (point) |
18129 | 1390 (if (= com ?>) |
19078 | 1391 viper-shift-width |
1392 (- viper-shift-width)))) | |
18129 | 1393 ;; return point to where it was before shift |
19078 | 1394 (goto-char viper-com-point)) |
18129 | 1395 |
1396 ;; this is needed because some commands fake com by setting it to ?r, which | |
1397 ;; denotes repeated insert command. | |
19078 | 1398 (defsubst viper-exec-dummy (m-com com) |
18129 | 1399 nil) |
1400 | |
19078 | 1401 (defun viper-exec-buffer-search (m-com com) |
1402 (setq viper-s-string (buffer-substring (point) viper-com-point)) | |
1403 (setq viper-s-forward t) | |
1404 (setq viper-search-history (cons viper-s-string viper-search-history)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1405 (setq viper-intermediate-command 'viper-exec-buffer-search) |
19078 | 1406 (viper-search viper-s-string viper-s-forward 1)) |
1407 | |
1408 (defvar viper-exec-array (make-vector 128 nil)) | |
18129 | 1409 |
1410 ;; Using a dispatch array allows adding functions like buffer search | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1411 ;; without affecting other functions. Buffer search can now be bound |
18129 | 1412 ;; to any character. |
1413 | |
19078 | 1414 (aset viper-exec-array ?c 'viper-exec-change) |
1415 (aset viper-exec-array ?C 'viper-exec-Change) | |
1416 (aset viper-exec-array ?d 'viper-exec-delete) | |
1417 (aset viper-exec-array ?D 'viper-exec-Delete) | |
1418 (aset viper-exec-array ?y 'viper-exec-yank) | |
1419 (aset viper-exec-array ?Y 'viper-exec-Yank) | |
1420 (aset viper-exec-array ?r 'viper-exec-dummy) | |
1421 (aset viper-exec-array ?! 'viper-exec-bang) | |
1422 (aset viper-exec-array ?< 'viper-exec-shift) | |
1423 (aset viper-exec-array ?> 'viper-exec-shift) | |
1424 (aset viper-exec-array ?= 'viper-exec-equals) | |
18129 | 1425 |
1426 | |
1427 | |
1428 ;; This function is called by various movement commands to execute a | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1429 ;; destructive command on the region specified by the movement command. For |
19078 | 1430 ;; instance, if the user types cw, then the command viper-forward-word will |
1431 ;; call viper-execute-com to execute viper-exec-change, which eventually will | |
1432 ;; call viper-change to invoke the replace mode on the region. | |
18129 | 1433 ;; |
19078 | 1434 ;; The var viper-d-com is set to (M-COM VAL COM REG INSETED-TEXT COMMAND-KEYS) |
1435 ;; via a call to viper-set-destructive-command, for later use by viper-repeat. | |
1436 (defun viper-execute-com (m-com val com) | |
1437 (let ((reg viper-use-register)) | |
18129 | 1438 ;; this is the special command `#' |
1439 (if (> com 128) | |
19078 | 1440 (viper-special-prefix-com (- com 128)) |
1441 (let ((fn (aref viper-exec-array (if (< com 0) (- com) com)))) | |
18129 | 1442 (if (null fn) |
19078 | 1443 (error "%c: %s" com viper-InvalidViCommand) |
18129 | 1444 (funcall fn m-com com)))) |
19078 | 1445 (if (viper-dotable-command-p com) |
1446 (viper-set-destructive-command | |
18129 | 1447 (list m-com val |
1448 (if (memq com (list ?c ?C ?!)) (- com) com) | |
1449 reg nil nil))) | |
1450 )) | |
1451 | |
1452 | |
19078 | 1453 (defun viper-repeat (arg) |
18129 | 1454 "Re-execute last destructive command. |
19078 | 1455 Use the info in viper-d-com, which has the form |
18129 | 1456 \(com val ch reg inserted-text command-keys\), |
1457 where `com' is the command to be re-executed, `val' is the | |
1458 argument to `com', `ch' is a flag for repeat, and `reg' is optional; | |
1459 if it exists, it is the name of the register for `com'. | |
1460 If the prefix argument, ARG, is non-nil, it is used instead of `val'." | |
1461 (interactive "P") | |
1462 (let ((save-point (point)) ; save point before repeating prev cmd | |
1463 ;; Pass along that we are repeating a destructive command | |
19078 | 1464 ;; This tells viper-set-destructive-command not to update |
1465 ;; viper-command-ring | |
1466 (viper-intermediate-command 'viper-repeat)) | |
1467 (if (eq last-command 'viper-undo) | |
1468 ;; if the last command was viper-undo, then undo-more | |
1469 (viper-undo-more) | |
1470 ;; otherwise execute the command stored in viper-d-com. if arg is | |
1471 ;; non-nil its prefix value is used as new prefix value for the command. | |
1472 (let ((m-com (car viper-d-com)) | |
1473 (val (viper-P-val arg)) | |
1474 (com (nth 2 viper-d-com)) | |
1475 (reg (nth 3 viper-d-com))) | |
1476 (if (null val) (setq val (nth 1 viper-d-com))) | |
18129 | 1477 (if (null m-com) (error "No previous command to repeat.")) |
19078 | 1478 (setq viper-use-register reg) |
1479 (if (nth 4 viper-d-com) ; text inserted by command | |
1480 (setq viper-last-insertion (nth 4 viper-d-com) | |
1481 viper-d-char (nth 4 viper-d-com))) | |
18129 | 1482 (funcall m-com (cons val com)) |
19078 | 1483 (cond ((and (< save-point (point)) viper-keep-point-on-repeat) |
18839 | 1484 (goto-char save-point)) ; go back to before repeat. |
19462 | 1485 ((and (< save-point (point)) viper-ex-style-editing) |
18839 | 1486 (or (bolp) (backward-char 1)))) |
18129 | 1487 (if (and (eolp) (not (bolp))) |
1488 (backward-char 1)) | |
1489 )) | |
19462 | 1490 (viper-adjust-undo) ; take care of undo |
18129 | 1491 ;; If the prev cmd was rotating the command ring, this means that `.' has |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1492 ;; just executed a command from that ring. So, push it on the ring again. |
19078 | 1493 ;; If we are just executing previous command , then don't push viper-d-com |
1494 ;; because viper-d-com is not fully constructed in this case (its keys and | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1495 ;; the inserted text may be nil). Besides, in this case, the command |
18129 | 1496 ;; executed by `.' is already on the ring. |
19078 | 1497 (if (eq last-command 'viper-display-current-destructive-command) |
1498 (viper-push-onto-ring viper-d-com 'viper-command-ring)) | |
1499 (viper-deactivate-mark) | |
18129 | 1500 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1501 |
19078 | 1502 (defun viper-repeat-from-history () |
18129 | 1503 "Repeat a destructive command from history. |
19078 | 1504 Doesn't change viper-command-ring in any way, so `.' will work as before |
18129 | 1505 executing this command. |
1506 This command is supposed to be bound to a two-character Vi macro where | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1507 the second character is a digit 0 to 9. The digit indicates which |
18129 | 1508 history command to execute. `<char>0' is equivalent to `.', `<char>1' |
1509 invokes the command before that, etc." | |
1510 (interactive) | |
19078 | 1511 (let* ((viper-intermediate-command 'repeating-display-destructive-command) |
1512 (idx (cond (viper-this-kbd-macro | |
18129 | 1513 (string-to-number |
19078 | 1514 (symbol-name (elt viper-this-kbd-macro 1)))) |
18129 | 1515 (t 0))) |
1516 (num idx) | |
19078 | 1517 (viper-d-com viper-d-com)) |
18129 | 1518 |
1519 (or (and (numberp num) (<= 0 num) (<= num 9)) | |
1520 (progn | |
1521 (setq idx 0 | |
1522 num 0) | |
1523 (message | |
19078 | 1524 "`viper-repeat-from-history' must be invoked as a Vi macro bound to `<key><digit>'"))) |
18129 | 1525 (while (< 0 num) |
19078 | 1526 (setq viper-d-com (viper-special-ring-rotate1 viper-command-ring -1)) |
18129 | 1527 (setq num (1- num))) |
19078 | 1528 (viper-repeat nil) |
18129 | 1529 (while (> idx num) |
19078 | 1530 (viper-special-ring-rotate1 viper-command-ring 1) |
18129 | 1531 (setq num (1+ num))) |
1532 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1533 |
18129 | 1534 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1535 ;; The hash-command. It is invoked interactively by the key sequence #<char>. |
19078 | 1536 ;; The chars that can follow `#' are determined by viper-hash-command-p |
1537 (defun viper-special-prefix-com (char) | |
18129 | 1538 (cond ((= char ?c) |
19078 | 1539 (downcase-region (min viper-com-point (point)) |
1540 (max viper-com-point (point)))) | |
18129 | 1541 ((= char ?C) |
19078 | 1542 (upcase-region (min viper-com-point (point)) |
1543 (max viper-com-point (point)))) | |
18129 | 1544 ((= char ?g) |
19078 | 1545 (push-mark viper-com-point t) |
1546 (viper-global-execute)) | |
18129 | 1547 ((= char ?q) |
19078 | 1548 (push-mark viper-com-point t) |
1549 (viper-quote-region)) | |
1550 ((= char ?s) (funcall viper-spell-function viper-com-point (point))) | |
1551 (t (error "#%c: %s" char viper-InvalidViCommand)))) | |
18129 | 1552 |
1553 | |
1554 ;; undoing | |
1555 | |
19078 | 1556 (defun viper-undo () |
18129 | 1557 "Undo previous change." |
1558 (interactive) | |
1559 (message "undo!") | |
1560 (let ((modified (buffer-modified-p)) | |
1561 (before-undo-pt (point-marker)) | |
1562 (after-change-functions after-change-functions) | |
1563 undo-beg-posn undo-end-posn) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1564 |
18129 | 1565 ;; no need to remove this hook, since this var has scope inside a let. |
1566 (add-hook 'after-change-functions | |
1567 '(lambda (beg end len) | |
1568 (setq undo-beg-posn beg | |
1569 undo-end-posn (or end beg)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1570 |
18129 | 1571 (undo-start) |
1572 (undo-more 2) | |
1573 (setq undo-beg-posn (or undo-beg-posn before-undo-pt) | |
1574 undo-end-posn (or undo-end-posn undo-beg-posn)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1575 |
18129 | 1576 (goto-char undo-beg-posn) |
1577 (sit-for 0) | |
19078 | 1578 (if (and viper-keep-point-on-undo |
18129 | 1579 (pos-visible-in-window-p before-undo-pt)) |
1580 (progn | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1581 (push-mark (point-marker) t) |
19078 | 1582 (viper-sit-for-short 300) |
18129 | 1583 (goto-char undo-end-posn) |
19078 | 1584 (viper-sit-for-short 300) |
19462 | 1585 (if (and (> (viper-chars-in-region undo-beg-posn before-undo-pt) 1) |
1586 (> (viper-chars-in-region undo-end-posn before-undo-pt) 1)) | |
18129 | 1587 (goto-char before-undo-pt) |
1588 (goto-char undo-beg-posn))) | |
1589 (push-mark before-undo-pt t)) | |
1590 (if (and (eolp) (not (bolp))) (backward-char 1)) | |
1591 (if (not modified) (set-buffer-modified-p t))) | |
19078 | 1592 (setq this-command 'viper-undo)) |
18129 | 1593 |
1594 ;; Continue undoing previous changes. | |
19078 | 1595 (defun viper-undo-more () |
18129 | 1596 (message "undo more!") |
1597 (condition-case nil | |
1598 (undo-more 1) | |
1599 (error (beep) | |
1600 (message "No further undo information in this buffer"))) | |
1601 (if (and (eolp) (not (bolp))) (backward-char 1)) | |
19078 | 1602 (setq this-command 'viper-undo)) |
18129 | 1603 |
1604 ;; The following two functions are used to set up undo properly. | |
1605 ;; In VI, unlike Emacs, if you open a line, say, and add a bunch of lines, | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1606 ;; they are undone all at once. |
19078 | 1607 (defun viper-adjust-undo () |
19462 | 1608 (if viper-undo-needs-adjustment |
1609 (let ((inhibit-quit t) | |
1610 tmp tmp2) | |
1611 (setq viper-undo-needs-adjustment nil) | |
1612 (if (listp buffer-undo-list) | |
1613 (if (setq tmp (memq viper-buffer-undo-list-mark buffer-undo-list)) | |
1614 (progn | |
1615 (setq tmp2 (cdr tmp)) ; the part after mark | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1616 |
19462 | 1617 ;; cut tail from buffer-undo-list temporarily by direct |
1618 ;; manipulation with pointers in buffer-undo-list | |
1619 (setcdr tmp nil) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1620 |
19462 | 1621 (setq buffer-undo-list (delq nil buffer-undo-list)) |
1622 (setq buffer-undo-list | |
1623 (delq viper-buffer-undo-list-mark buffer-undo-list)) | |
1624 ;; restore tail of buffer-undo-list | |
1625 (setq buffer-undo-list (nconc buffer-undo-list tmp2))) | |
1626 (setq buffer-undo-list (delq nil buffer-undo-list))))) | |
1627 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1628 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1629 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1630 (defun viper-set-complex-command-for-undo () |
18129 | 1631 (if (listp buffer-undo-list) |
19078 | 1632 (if (not viper-undo-needs-adjustment) |
18129 | 1633 (let ((inhibit-quit t)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1634 (setq buffer-undo-list |
19078 | 1635 (cons viper-buffer-undo-list-mark buffer-undo-list)) |
1636 (setq viper-undo-needs-adjustment t))))) | |
18129 | 1637 |
1638 | |
1639 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1640 |
19078 | 1641 (defun viper-display-current-destructive-command () |
1642 (let ((text (nth 4 viper-d-com)) | |
1643 (keys (nth 5 viper-d-com)) | |
18129 | 1644 (max-text-len 30)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1645 |
19078 | 1646 (setq this-command 'viper-display-current-destructive-command) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1647 |
18129 | 1648 (message " `.' runs %s%s" |
19078 | 1649 (concat "`" (viper-array-to-string keys) "'") |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1650 (viper-abbreviate-string |
19079 | 1651 (if viper-xemacs-p |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1652 (replace-in-string |
19462 | 1653 (cond ((characterp text) (char-to-string text)) |
1654 ((stringp text) text) | |
1655 (t "")) | |
1656 "\n" "^J") | |
19079 | 1657 text) |
1658 max-text-len | |
1659 " inserting `" "'" " .......")) | |
18129 | 1660 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1661 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1662 |
19078 | 1663 ;; don't change viper-d-com if it was viper-repeat command invoked with `.' |
18129 | 1664 ;; or in some other way (non-interactively). |
19078 | 1665 (defun viper-set-destructive-command (list) |
1666 (or (eq viper-intermediate-command 'viper-repeat) | |
18129 | 1667 (progn |
19078 | 1668 (setq viper-d-com list) |
1669 (setcar (nthcdr 5 viper-d-com) | |
1670 (viper-array-to-string (if (arrayp viper-this-command-keys) | |
1671 viper-this-command-keys | |
1672 (this-command-keys)))) | |
1673 (viper-push-onto-ring viper-d-com 'viper-command-ring))) | |
1674 (setq viper-this-command-keys nil)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1675 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1676 |
19078 | 1677 (defun viper-prev-destructive-command (next) |
18129 | 1678 "Find previous destructive command in the history of destructive commands. |
1679 With prefix argument, find next destructive command." | |
1680 (interactive "P") | |
19078 | 1681 (let (cmd viper-intermediate-command) |
1682 (if (eq last-command 'viper-display-current-destructive-command) | |
18129 | 1683 ;; repeated search through command history |
19078 | 1684 (setq viper-intermediate-command |
1685 'repeating-display-destructive-command) | |
18129 | 1686 ;; first search through command history--set temp ring |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1687 (setq viper-temp-command-ring (copy-list viper-command-ring))) |
18129 | 1688 (setq cmd (if next |
19078 | 1689 (viper-special-ring-rotate1 viper-temp-command-ring 1) |
1690 (viper-special-ring-rotate1 viper-temp-command-ring -1))) | |
18129 | 1691 (if (null cmd) |
1692 () | |
19078 | 1693 (setq viper-d-com cmd)) |
1694 (viper-display-current-destructive-command))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1695 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1696 |
19078 | 1697 (defun viper-next-destructive-command () |
18129 | 1698 "Find next destructive command in the history of destructive commands." |
1699 (interactive) | |
19078 | 1700 (viper-prev-destructive-command 'next)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1701 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1702 |
19078 | 1703 (defun viper-insert-prev-from-insertion-ring (arg) |
18129 | 1704 "Cycle through insertion ring in the direction of older insertions. |
1705 Undoes previous insertion and inserts new. | |
1706 With prefix argument, cycles in the direction of newer elements. | |
1707 In minibuffer, this command executes whatever the invocation key is bound | |
1708 to in the global map, instead of cycling through the insertion ring." | |
1709 (interactive "P") | |
19078 | 1710 (let (viper-intermediate-command) |
1711 (if (eq last-command 'viper-insert-from-insertion-ring) | |
18129 | 1712 (progn ; repeated search through insertion history |
19078 | 1713 (setq viper-intermediate-command 'repeating-insertion-from-ring) |
1714 (if (eq viper-current-state 'replace-state) | |
18129 | 1715 (undo 1) |
19078 | 1716 (if viper-last-inserted-string-from-insertion-ring |
18129 | 1717 (backward-delete-char |
19078 | 1718 (length viper-last-inserted-string-from-insertion-ring)))) |
18129 | 1719 ) |
1720 ;;first search through insertion history | |
19078 | 1721 (setq viper-temp-insertion-ring (copy-list viper-insertion-ring))) |
1722 (setq this-command 'viper-insert-from-insertion-ring) | |
18129 | 1723 ;; so that things will be undone properly |
1724 (setq buffer-undo-list (cons nil buffer-undo-list)) | |
19078 | 1725 (setq viper-last-inserted-string-from-insertion-ring |
1726 (viper-special-ring-rotate1 viper-temp-insertion-ring (if arg 1 -1))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1727 |
19078 | 1728 ;; this change of viper-intermediate-command must come after |
1729 ;; viper-special-ring-rotate1, so that the ring will rotate, but before the | |
18129 | 1730 ;; insertion. |
19078 | 1731 (setq viper-intermediate-command nil) |
1732 (if viper-last-inserted-string-from-insertion-ring | |
1733 (insert viper-last-inserted-string-from-insertion-ring)) | |
18129 | 1734 )) |
1735 | |
19078 | 1736 (defun viper-insert-next-from-insertion-ring () |
18129 | 1737 "Cycle through insertion ring in the direction of older insertions. |
1738 Undo previous insertion and inserts new." | |
1739 (interactive) | |
19078 | 1740 (viper-insert-prev-from-insertion-ring 'next)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1741 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1742 |
18129 | 1743 |
1744 ;; some region utilities | |
1745 | |
1746 ;; If at the last line of buffer, add \\n before eob, if newline is missing. | |
19078 | 1747 (defun viper-add-newline-at-eob-if-necessary () |
18129 | 1748 (save-excursion |
1749 (end-of-line) | |
1750 ;; make sure all lines end with newline, unless in the minibuffer or | |
1751 ;; when requested otherwise (require-final-newline is nil) | |
1752 (if (and (eobp) | |
1753 (not (bolp)) | |
1754 require-final-newline | |
19078 | 1755 (not (viper-is-in-minibuffer)) |
18129 | 1756 (not buffer-read-only)) |
1757 (insert "\n")))) | |
1758 | |
19078 | 1759 (defun viper-yank-defun () |
18129 | 1760 (mark-defun) |
1761 (copy-region-as-kill (point) (mark t))) | |
1762 | |
1763 ;; Enlarge region between BEG and END. | |
19078 | 1764 (defun viper-enlarge-region (beg end) |
18129 | 1765 (or beg (setq beg end)) ; if beg is nil, set to end |
1766 (or end (setq end beg)) ; if end is nil, set to beg | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1767 |
18129 | 1768 (if (< beg end) |
1769 (progn (goto-char beg) (set-mark end)) | |
1770 (goto-char end) | |
1771 (set-mark beg)) | |
1772 (beginning-of-line) | |
1773 (exchange-point-and-mark) | |
1774 (if (or (not (eobp)) (not (bolp))) (forward-line 1)) | |
1775 (if (not (eobp)) (beginning-of-line)) | |
1776 (if (> beg end) (exchange-point-and-mark))) | |
1777 | |
1778 | |
1779 ;; Quote region by each line with a user supplied string. | |
19078 | 1780 (defun viper-quote-region () |
20343 | 1781 (let ((quote-str viper-quote-string) |
1782 (donot-change-dafault t)) | |
1783 (setq quote-str | |
1784 (viper-read-string-with-history | |
1785 "Quote string: " | |
1786 nil | |
1787 'viper-quote-region-history | |
1788 (cond ((string-match "tex.*-mode" (symbol-name major-mode)) "%%") | |
1789 ((string-match "java.*-mode" (symbol-name major-mode)) "//") | |
1790 ((string-match "perl.*-mode" (symbol-name major-mode)) "#") | |
1791 ((string-match "lisp.*-mode" (symbol-name major-mode)) ";;") | |
1792 ((memq major-mode '(c-mode cc-mode c++-mode)) "//") | |
1793 ((memq major-mode '(sh-mode shell-mode)) "#") | |
1794 (t (setq donot-change-dafault nil) | |
1795 quote-str)))) | |
1796 (or donot-change-dafault | |
1797 (setq viper-quote-string quote-str)) | |
1798 (viper-enlarge-region (point) (mark t)) | |
1799 (if (> (point) (mark t)) (exchange-point-and-mark)) | |
1800 (insert quote-str) | |
18129 | 1801 (beginning-of-line) |
20343 | 1802 (forward-line 1) |
1803 (while (and (< (point) (mark t)) (bolp)) | |
1804 (insert quote-str) | |
1805 (beginning-of-line) | |
1806 (forward-line 1)))) | |
18129 | 1807 |
1808 ;; Tells whether BEG is on the same line as END. | |
1809 ;; If one of the args is nil, it'll return nil. | |
19078 | 1810 (defun viper-same-line (beg end) |
18129 | 1811 (let ((selective-display nil) |
1812 (incr 0) | |
1813 temp) | |
1814 (if (and beg end (> beg end)) | |
1815 (setq temp beg | |
1816 beg end | |
1817 end temp)) | |
1818 (if (and beg end) | |
1819 (cond ((or (> beg (point-max)) (> end (point-max))) ; out of range | |
1820 nil) | |
1821 (t | |
1822 ;; This 'if' is needed because Emacs treats the next empty line | |
1823 ;; as part of the previous line. | |
19078 | 1824 (if (= (viper-line-pos 'start) end) |
18129 | 1825 (setq incr 1)) |
1826 (<= (+ incr (count-lines beg end)) 1)))) | |
1827 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1828 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1829 |
18129 | 1830 ;; Check if the string ends with a newline. |
19078 | 1831 (defun viper-end-with-a-newline-p (string) |
18129 | 1832 (or (string= string "") |
19078 | 1833 (= (viper-seq-last-elt string) ?\n))) |
1834 | |
1835 (defun viper-tmp-insert-at-eob (msg) | |
18129 | 1836 (let ((savemax (point-max))) |
1837 (goto-char savemax) | |
1838 (insert msg) | |
1839 (sit-for 2) | |
1840 (goto-char savemax) (delete-region (point) (point-max)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1841 )) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1842 |
18129 | 1843 |
1844 | |
1845 ;;; Minibuffer business | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1846 |
19078 | 1847 (defsubst viper-set-minibuffer-style () |
1848 (add-hook 'minibuffer-setup-hook 'viper-minibuffer-setup-sentinel)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1849 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1850 |
19078 | 1851 (defun viper-minibuffer-setup-sentinel () |
1852 (let ((hook (if viper-vi-style-in-minibuffer | |
1853 'viper-change-state-to-insert | |
1854 'viper-change-state-to-emacs))) | |
18129 | 1855 (funcall hook) |
1856 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1857 |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1858 ;; Thie is a temp hook that uses free variables init-message and initial. |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1859 ;; A dirty feature, but it is the simplest way to have it do the right thing. |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1860 (defun viper-minibuffer-standard-hook () |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1861 (if (stringp init-message) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1862 (viper-tmp-insert-at-eob init-message)) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1863 (if (stringp initial) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1864 (progn |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1865 ;; don't wait if we have unread events or in kbd macro |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1866 (or unread-command-events |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1867 executing-kbd-macro |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1868 (sit-for 840)) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1869 (if (fboundp 'minibuffer-prompt-end) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1870 (delete-region (minibuffer-prompt-end) (point-max)) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1871 (erase-buffer)) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1872 (insert initial))) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1873 (viper-minibuffer-setup-sentinel)) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1874 |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1875 (defsubst viper-minibuffer-real-start () |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1876 (if (fboundp 'minibuffer-prompt-end) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1877 (minibuffer-prompt-end) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1878 (point-min))) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1879 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1880 |
19756 | 1881 ;; Interpret last event in the local map first; if fails, use exit-minibuffer. |
1882 ;; Run viper-minibuffer-exit-hook before exiting. | |
19078 | 1883 (defun viper-exit-minibuffer () |
19756 | 1884 "Exit minibuffer Viper way." |
18129 | 1885 (interactive) |
1886 (let (command) | |
1887 (setq command (local-key-binding (char-to-string last-command-char))) | |
19756 | 1888 (run-hooks 'viper-minibuffer-exit-hook) |
18129 | 1889 (if command |
1890 (command-execute command) | |
1891 (exit-minibuffer)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1892 |
19756 | 1893 |
1894 (defcustom viper-smart-suffix-list | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1895 '("" "tex" "c" "cc" "C" "el" "java" "html" "htm" "pl" "flr" "P" "p") |
19905
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
1896 "*List of suffixes that Viper tries to append to filenames ending with a `.'. |
19756 | 1897 This is useful when you the current directory contains files with the same |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1898 prefix and many different suffixes. Usually, only one of the suffixes |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1899 represents an editable file. However, file completion will stop at the `.' |
19756 | 1900 The smart suffix feature lets you hit RET in such a case, and Viper will |
1901 select the appropriate suffix. | |
1902 | |
1903 Suffixes are tried in the order given and the first suffix for which a | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1904 corresponding file exists is selected. If no file exists for any of the |
19756 | 1905 suffixes, the user is asked to confirm. |
1906 | |
1907 To turn this feature off, set this variable to nil." | |
19905
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
1908 :type '(repeat string) |
20003 | 1909 :group 'viper-misc) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1910 |
19756 | 1911 |
1912 ;; Try to add a suitable suffix to files whose name ends with a `.' | |
1913 ;; Useful when the user hits RET on a non-completed file name. | |
1914 ;; Used as a minibuffer exit hook in read-file-name | |
1915 (defun viper-file-add-suffix () | |
1916 (let ((count 0) | |
1917 (len (length viper-smart-suffix-list)) | |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1918 (file (buffer-substring-no-properties |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1919 (viper-minibuffer-real-start) (point-max))) |
19756 | 1920 found key cmd suff) |
1921 (goto-char (point-max)) | |
1922 (if (and viper-smart-suffix-list (string-match "\\.$" file)) | |
1923 (progn | |
1924 (while (and (not found) (< count len)) | |
1925 (setq suff (nth count viper-smart-suffix-list) | |
1926 count (1+ count)) | |
1927 (if (file-exists-p | |
1928 (format "%s%s" (substitute-in-file-name file) suff)) | |
1929 (progn | |
1930 (setq found t) | |
1931 (insert suff)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1932 |
19756 | 1933 (if found |
1934 () | |
1935 (viper-tmp-insert-at-eob " [Please complete file name]") | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1936 (unwind-protect |
19756 | 1937 (while (not (memq cmd |
1938 '(exit-minibuffer viper-exit-minibuffer))) | |
1939 (setq cmd | |
1940 (key-binding (setq key (read-key-sequence nil)))) | |
1941 (cond ((eq cmd 'self-insert-command) | |
1942 (if viper-xemacs-p | |
1943 (insert (events-to-keys key)) | |
1944 (insert key))) | |
1945 ((memq cmd '(exit-minibuffer viper-exit-minibuffer)) | |
1946 nil) | |
1947 (t (command-execute cmd))) | |
1948 ))) | |
1949 )))) | |
1950 | |
1951 | |
1952 (defun viper-minibuffer-trim-tail () | |
1953 "Delete junk at the end of the first line of the minibuffer input. | |
1954 Remove this function from `viper-minibuffer-exit-hook', if this causes | |
1955 problems." | |
1956 (if (viper-is-in-minibuffer) | |
1957 (progn | |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1958 (goto-char (viper-minibuffer-real-start)) |
19756 | 1959 (end-of-line) |
1960 (delete-region (point) (point-max))))) | |
1961 | |
18129 | 1962 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1963 ;;; Reading string with history |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1964 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1965 (defun viper-read-string-with-history (prompt &optional initial |
20343 | 1966 history-var default keymap |
1967 init-message) | |
18129 | 1968 ;; Read string, prompting with PROMPT and inserting the INITIAL |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1969 ;; value. Uses HISTORY-VAR. DEFAULT is the default value to accept if the |
20343 | 1970 ;; input is an empty string. |
18129 | 1971 ;; Default value is displayed until the user types something in the |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1972 ;; minibuffer. |
20343 | 1973 ;; KEYMAP is used, if given, instead of minibuffer-local-map. |
1974 ;; INIT-MESSAGE is the message temporarily displayed after entering the | |
1975 ;; minibuffer. | |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
1976 (let ((minibuffer-setup-hook 'viper-minibuffer-standard-hook) |
18129 | 1977 (val "") |
1978 (padding "") | |
1979 temp-msg) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1980 |
18129 | 1981 (setq keymap (or keymap minibuffer-local-map) |
1982 initial (or initial "") | |
1983 temp-msg (if default | |
1984 (format "(default: %s) " default) | |
1985 "")) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1986 |
19078 | 1987 (setq viper-incomplete-ex-cmd nil) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1988 (setq val (read-from-minibuffer prompt |
18129 | 1989 (concat temp-msg initial val padding) |
1990 keymap nil history-var)) | |
1991 (setq minibuffer-setup-hook nil | |
19078 | 1992 padding (viper-array-to-string (this-command-keys)) |
18129 | 1993 temp-msg "") |
1994 ;; the following tries to be smart about what to put in history | |
1995 (if (not (string= val (car (eval history-var)))) | |
1996 (set history-var (cons val (eval history-var)))) | |
1997 (if (or (string= (nth 0 (eval history-var)) (nth 1 (eval history-var))) | |
1998 (string= (nth 0 (eval history-var)) "")) | |
1999 (set history-var (cdr (eval history-var)))) | |
19078 | 2000 ;; If the user enters nothing but the prev cmd wasn't viper-ex, |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2001 ;; viper-command-argument, or `! shell-command', this probably means |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2002 ;; that the user typed something then erased. Return "" in this case, not |
18129 | 2003 ;; the default---the default is too confusing in this case. |
2004 (cond ((and (string= val "") | |
2005 (not (string= prompt "!")) ; was a `! shell-command' | |
2006 (not (memq last-command | |
19078 | 2007 '(viper-ex |
2008 viper-command-argument | |
18129 | 2009 t) |
2010 ))) | |
2011 "") | |
2012 ((string= val "") (or default "")) | |
2013 (t val)) | |
2014 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2015 |
18129 | 2016 |
2017 | |
2018 ;; insertion commands | |
2019 | |
2020 ;; Called when state changes from Insert Vi command mode. | |
2021 ;; Repeats the insertion command if Insert state was entered with prefix | |
2022 ;; argument > 1. | |
19078 | 2023 (defun viper-repeat-insert-command () |
2024 (let ((i-com (car viper-d-com)) | |
2025 (val (nth 1 viper-d-com)) | |
2026 (char (nth 2 viper-d-com))) | |
18129 | 2027 (if (and val (> val 1)) ; first check that val is non-nil |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2028 (progn |
19078 | 2029 (setq viper-d-com (list i-com (1- val) ?r nil nil nil)) |
2030 (viper-repeat nil) | |
2031 (setq viper-d-com (list i-com val char nil nil nil)) | |
18129 | 2032 )))) |
2033 | |
19078 | 2034 (defun viper-insert (arg) |
18129 | 2035 "Insert before point." |
2036 (interactive "P") | |
19078 | 2037 (viper-set-complex-command-for-undo) |
2038 (let ((val (viper-p-val arg)) | |
2039 (com (viper-getcom arg))) | |
2040 (viper-set-destructive-command (list 'viper-insert val ?r nil nil nil)) | |
18129 | 2041 (if com |
19078 | 2042 (viper-loop val (viper-yank-last-insertion)) |
2043 (viper-change-state-to-insert)))) | |
2044 | |
2045 (defun viper-append (arg) | |
18129 | 2046 "Append after point." |
2047 (interactive "P") | |
19078 | 2048 (viper-set-complex-command-for-undo) |
2049 (let ((val (viper-p-val arg)) | |
2050 (com (viper-getcom arg))) | |
2051 (viper-set-destructive-command (list 'viper-append val ?r nil nil nil)) | |
18129 | 2052 (if (not (eolp)) (forward-char)) |
2053 (if (equal com ?r) | |
19078 | 2054 (viper-loop val (viper-yank-last-insertion)) |
2055 (viper-change-state-to-insert)))) | |
2056 | |
2057 (defun viper-Append (arg) | |
18129 | 2058 "Append at end of line." |
2059 (interactive "P") | |
19078 | 2060 (viper-set-complex-command-for-undo) |
2061 (let ((val (viper-p-val arg)) | |
2062 (com (viper-getcom arg))) | |
2063 (viper-set-destructive-command (list 'viper-Append val ?r nil nil nil)) | |
18129 | 2064 (end-of-line) |
2065 (if (equal com ?r) | |
19078 | 2066 (viper-loop val (viper-yank-last-insertion)) |
2067 (viper-change-state-to-insert)))) | |
2068 | |
2069 (defun viper-Insert (arg) | |
18129 | 2070 "Insert before first non-white." |
2071 (interactive "P") | |
19078 | 2072 (viper-set-complex-command-for-undo) |
2073 (let ((val (viper-p-val arg)) | |
2074 (com (viper-getcom arg))) | |
2075 (viper-set-destructive-command (list 'viper-Insert val ?r nil nil nil)) | |
18129 | 2076 (back-to-indentation) |
2077 (if (equal com ?r) | |
19078 | 2078 (viper-loop val (viper-yank-last-insertion)) |
2079 (viper-change-state-to-insert)))) | |
2080 | |
2081 (defun viper-open-line (arg) | |
18129 | 2082 "Open line below." |
2083 (interactive "P") | |
19078 | 2084 (viper-set-complex-command-for-undo) |
2085 (let ((val (viper-p-val arg)) | |
2086 (com (viper-getcom arg))) | |
2087 (viper-set-destructive-command (list 'viper-open-line val ?r nil nil nil)) | |
18129 | 2088 (let ((col (current-indentation))) |
2089 (if (equal com ?r) | |
19078 | 2090 (viper-loop val |
18129 | 2091 (end-of-line) |
2092 (newline 1) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2093 (if viper-auto-indent |
18129 | 2094 (progn |
19078 | 2095 (setq viper-cted t) |
2096 (if viper-electric-mode | |
18129 | 2097 (indent-according-to-mode) |
2098 (indent-to col)) | |
2099 )) | |
19462 | 2100 (viper-yank-last-insertion)) |
18129 | 2101 (end-of-line) |
2102 (newline 1) | |
19078 | 2103 (if viper-auto-indent |
18129 | 2104 (progn |
19078 | 2105 (setq viper-cted t) |
2106 (if viper-electric-mode | |
18129 | 2107 (indent-according-to-mode) |
2108 (indent-to col)))) | |
19078 | 2109 (viper-change-state-to-insert))))) |
2110 | |
2111 (defun viper-Open-line (arg) | |
18129 | 2112 "Open line above." |
2113 (interactive "P") | |
19078 | 2114 (viper-set-complex-command-for-undo) |
2115 (let ((val (viper-p-val arg)) | |
2116 (com (viper-getcom arg))) | |
2117 (viper-set-destructive-command (list 'viper-Open-line val ?r nil nil nil)) | |
18129 | 2118 (let ((col (current-indentation))) |
2119 (if (equal com ?r) | |
19078 | 2120 (viper-loop val |
18129 | 2121 (beginning-of-line) |
2122 (open-line 1) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2123 (if viper-auto-indent |
18129 | 2124 (progn |
19078 | 2125 (setq viper-cted t) |
2126 (if viper-electric-mode | |
18129 | 2127 (indent-according-to-mode) |
2128 (indent-to col)) | |
2129 )) | |
19462 | 2130 (viper-yank-last-insertion)) |
18129 | 2131 (beginning-of-line) |
2132 (open-line 1) | |
19078 | 2133 (if viper-auto-indent |
18129 | 2134 (progn |
19078 | 2135 (setq viper-cted t) |
2136 (if viper-electric-mode | |
18129 | 2137 (indent-according-to-mode) |
2138 (indent-to col)) | |
2139 )) | |
19078 | 2140 (viper-change-state-to-insert))))) |
2141 | |
2142 (defun viper-open-line-at-point (arg) | |
18129 | 2143 "Open line at point." |
2144 (interactive "P") | |
19078 | 2145 (viper-set-complex-command-for-undo) |
2146 (let ((val (viper-p-val arg)) | |
2147 (com (viper-getcom arg))) | |
2148 (viper-set-destructive-command | |
2149 (list 'viper-open-line-at-point val ?r nil nil nil)) | |
18129 | 2150 (if (equal com ?r) |
19078 | 2151 (viper-loop val |
18129 | 2152 (open-line 1) |
19462 | 2153 (viper-yank-last-insertion)) |
18129 | 2154 (open-line 1) |
19078 | 2155 (viper-change-state-to-insert)))) |
2156 | |
2157 (defun viper-substitute (arg) | |
18129 | 2158 "Substitute characters." |
2159 (interactive "P") | |
19078 | 2160 (let ((val (viper-p-val arg)) |
2161 (com (viper-getcom arg))) | |
18129 | 2162 (push-mark nil t) |
2163 (forward-char val) | |
2164 (if (equal com ?r) | |
19078 | 2165 (viper-change-subr (mark t) (point)) |
2166 (viper-change (mark t) (point))) | |
2167 (viper-set-destructive-command (list 'viper-substitute val ?r nil nil nil)) | |
18129 | 2168 )) |
2169 | |
19078 | 2170 ;; Command bound to S |
2171 (defun viper-substitute-line (arg) | |
18129 | 2172 "Substitute lines." |
2173 (interactive "p") | |
19078 | 2174 (viper-set-complex-command-for-undo) |
2175 (viper-line (cons arg ?C))) | |
18129 | 2176 |
2177 ;; Prepare for replace | |
19078 | 2178 (defun viper-start-replace () |
2179 (setq viper-began-as-replace t | |
2180 viper-sitting-in-replace t | |
19462 | 2181 viper-replace-chars-to-delete 0) |
21940 | 2182 (add-hook |
2183 'viper-after-change-functions 'viper-replace-mode-spy-after t 'local) | |
2184 (add-hook | |
2185 'viper-before-change-functions 'viper-replace-mode-spy-before t 'local) | |
18129 | 2186 ;; this will get added repeatedly, but no harm |
19078 | 2187 (add-hook 'after-change-functions 'viper-after-change-sentinel t) |
2188 (add-hook 'before-change-functions 'viper-before-change-sentinel t) | |
21940 | 2189 (viper-move-marker-locally |
2190 'viper-last-posn-in-replace-region (viper-replace-start)) | |
2191 (add-hook | |
2192 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel | |
2193 t 'local) | |
2194 (add-hook | |
2195 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel t 'local) | |
18129 | 2196 ;; guard against a smartie who switched from R-replace to normal replace |
21940 | 2197 (remove-hook |
2198 'viper-post-command-hooks 'viper-R-state-post-command-sentinel 'local) | |
18129 | 2199 (if overwrite-mode (overwrite-mode nil)) |
2200 ) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2201 |
18129 | 2202 |
19078 | 2203 (defun viper-replace-mode-spy-before (beg end) |
19462 | 2204 (setq viper-replace-region-chars-deleted (viper-chars-in-region beg end)) |
2205 ) | |
2206 | |
2207 ;; Invoked as an after-change-function to calculate how many chars have to be | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2208 ;; deleted. This function may be called several times within a single command, |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2209 ;; if this command performs several separate buffer changes. Therefore, if |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2210 ;; adds up the number of chars inserted and subtracts the number of chars |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2211 ;; deleted. |
19078 | 2212 (defun viper-replace-mode-spy-after (beg end length) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2213 (if (memq viper-intermediate-command |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2214 '(dabbrev-expand hippie-expand repeating-insertion-from-ring)) |
19462 | 2215 ;; Take special care of text insertion from insertion ring inside |
2216 ;; replacement overlays. | |
18129 | 2217 (progn |
19078 | 2218 (setq viper-replace-chars-to-delete 0) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2219 (viper-move-marker-locally |
19078 | 2220 'viper-last-posn-in-replace-region (point))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2221 |
19462 | 2222 (let* ((real-end (min end (viper-replace-end))) |
2223 (column-shift (- (save-excursion (goto-char real-end) | |
2224 (current-column)) | |
2225 (save-excursion (goto-char beg) | |
2226 (current-column)))) | |
2227 (chars-deleted 0)) | |
2228 | |
2229 (if (> length 0) | |
2230 (setq chars-deleted viper-replace-region-chars-deleted)) | |
2231 (setq viper-replace-region-chars-deleted 0) | |
2232 (setq viper-replace-chars-to-delete | |
2233 (+ viper-replace-chars-to-delete | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2234 (- |
19462 | 2235 ;; if column shift is bigger, due to a TAB insertion, take |
2236 ;; column-shift instead of the number of inserted chars | |
2237 (max (viper-chars-in-region beg real-end) | |
2238 ;; This test accounts for Chinese/Japanese/... chars, | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2239 ;; which occupy 2 columns instead of one. If we use |
19462 | 2240 ;; column-shift here, we may delete two chars instead of |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2241 ;; one when the user types one Chinese character. |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2242 ;; Deleting two would be OK, if they were European chars, |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2243 ;; but it is not OK if they are Chinese chars. |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2244 ;; Since it is hard to |
19462 | 2245 ;; figure out which characters are being deleted in any |
2246 ;; given region, we decided to treat Eastern and European | |
2247 ;; characters equally, even though Eastern chars may | |
2248 ;; occupy more columns. | |
2249 (if (memq this-command '(self-insert-command | |
2250 quoted-insert viper-insert-tab)) | |
2251 column-shift | |
2252 0)) | |
2253 ;; the number of deleted chars | |
2254 chars-deleted))) | |
2255 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2256 (viper-move-marker-locally |
19078 | 2257 'viper-last-posn-in-replace-region |
19462 | 2258 (max (if (> end (viper-replace-end)) (viper-replace-end) end) |
19078 | 2259 (or (marker-position viper-last-posn-in-replace-region) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2260 (viper-replace-start)) |
18129 | 2261 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2262 |
18129 | 2263 ))) |
2264 | |
19462 | 2265 |
2266 ;; Delete stuff between viper-last-posn-in-replace-region and the end of | |
2267 ;; viper-replace-overlay-marker, if viper-last-posn-in-replace-region is within | |
2268 ;; the overlay and current point is before the end of the overlay. | |
2269 ;; Don't delete anything if current point is past the end of the overlay. | |
2270 (defun viper-finish-change () | |
21940 | 2271 (remove-hook |
2272 'viper-after-change-functions 'viper-replace-mode-spy-after 'local) | |
2273 (remove-hook | |
2274 'viper-before-change-functions 'viper-replace-mode-spy-before 'local) | |
2275 (remove-hook | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2276 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel 'local) |
21940 | 2277 (remove-hook |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2278 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel 'local) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2279 (viper-restore-cursor-color 'after-replace-mode) |
19078 | 2280 (setq viper-sitting-in-replace nil) ; just in case we'll need to know it |
18129 | 2281 (save-excursion |
19462 | 2282 (if (and viper-replace-overlay |
2283 (viper-pos-within-region viper-last-posn-in-replace-region | |
2284 (viper-replace-start) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2285 (viper-replace-end)) |
19462 | 2286 (< (point) (viper-replace-end))) |
2287 (delete-region | |
2288 viper-last-posn-in-replace-region (viper-replace-end)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2289 |
19078 | 2290 (if (eq viper-current-state 'replace-state) |
2291 (viper-downgrade-to-insert)) | |
2292 ;; replace mode ended => nullify viper-last-posn-in-replace-region | |
2293 (viper-move-marker-locally 'viper-last-posn-in-replace-region nil) | |
2294 (viper-hide-replace-overlay) | |
2295 (viper-refresh-mode-line) | |
2296 (viper-put-string-on-kill-ring viper-last-replace-region) | |
18129 | 2297 ) |
2298 | |
2299 ;; Make STRING be the first element of the kill ring. | |
19078 | 2300 (defun viper-put-string-on-kill-ring (string) |
18129 | 2301 (setq kill-ring (cons string kill-ring)) |
2302 (if (> (length kill-ring) kill-ring-max) | |
2303 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil)) | |
2304 (setq kill-ring-yank-pointer kill-ring)) | |
2305 | |
19078 | 2306 (defun viper-finish-R-mode () |
21940 | 2307 (remove-hook |
2308 'viper-post-command-hooks 'viper-R-state-post-command-sentinel 'local) | |
2309 (remove-hook | |
2310 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel 'local) | |
19078 | 2311 (viper-downgrade-to-insert)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2312 |
19078 | 2313 (defun viper-start-R-mode () |
18129 | 2314 ;; Leave arg as 1, not t: XEmacs insists that it must be a pos number |
2315 (overwrite-mode 1) | |
21940 | 2316 (add-hook |
2317 'viper-post-command-hooks 'viper-R-state-post-command-sentinel t 'local) | |
2318 (add-hook | |
2319 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel t 'local) | |
18129 | 2320 ;; guard against a smartie who switched from R-replace to normal replace |
21940 | 2321 (remove-hook |
2322 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel 'local) | |
18129 | 2323 ) |
2324 | |
2325 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2326 |
19078 | 2327 (defun viper-replace-state-exit-cmd () |
18129 | 2328 "Binding for keys that cause Replace state to switch to Vi or to Insert. |
2329 These keys are ESC, RET, and LineFeed" | |
2330 (interactive) | |
19462 | 2331 (if overwrite-mode ; if in replace mode invoked via 'R' |
19078 | 2332 (viper-finish-R-mode) |
19462 | 2333 (viper-finish-change)) |
18129 | 2334 (let (com) |
19078 | 2335 (if (eq this-command 'viper-intercept-ESC-key) |
2336 (setq com 'viper-exit-insert-state) | |
2337 (viper-set-unread-command-events last-input-char) | |
18129 | 2338 (setq com (key-binding (read-key-sequence nil)))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2339 |
18129 | 2340 (condition-case conds |
2341 (command-execute com) | |
2342 (error | |
19078 | 2343 (viper-message-conditions conds))) |
18129 | 2344 ) |
19078 | 2345 (viper-hide-replace-overlay)) |
2346 | |
2347 | |
2348 (defun viper-replace-state-carriage-return () | |
2349 "Carriage return in Viper replace state." | |
18129 | 2350 (interactive) |
2351 ;; If Emacs start supporting overlay maps, as it currently supports | |
19078 | 2352 ;; text-property maps, we could do away with viper-replace-minor-mode and |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2353 ;; just have keymap attached to replace overlay. Then the "if part" of this |
18129 | 2354 ;; statement can be deleted. |
19078 | 2355 (if (or (< (point) (viper-replace-start)) |
2356 (> (point) (viper-replace-end))) | |
2357 (let (viper-replace-minor-mode com) | |
2358 (viper-set-unread-command-events last-input-char) | |
18129 | 2359 (setq com (key-binding (read-key-sequence nil))) |
2360 (condition-case conds | |
2361 (command-execute com) | |
2362 (error | |
19078 | 2363 (viper-message-conditions conds)))) |
2364 (if (not viper-allow-multiline-replace-regions) | |
2365 (viper-replace-state-exit-cmd) | |
2366 (if (viper-same-line (point) (viper-replace-end)) | |
2367 (viper-replace-state-exit-cmd) | |
2368 ;; delete the rest of line | |
2369 (delete-region (point) (viper-line-pos 'end)) | |
2370 (save-excursion | |
2371 (end-of-line) | |
2372 (if (eobp) (error "Last line in buffer"))) | |
2373 ;; skip to the next line | |
2374 (forward-line 1) | |
2375 (back-to-indentation) | |
2376 )))) | |
18129 | 2377 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2378 |
18129 | 2379 ;; This is the function bound to 'R'---unlimited replace. |
2380 ;; Similar to Emacs's own overwrite-mode. | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2381 (defun viper-overwrite (arg) |
18129 | 2382 "Begin overwrite mode." |
2383 (interactive "P") | |
19078 | 2384 (let ((val (viper-p-val arg)) |
2385 (com (viper-getcom arg)) (len)) | |
2386 (viper-set-destructive-command (list 'viper-overwrite val ?r nil nil nil)) | |
18129 | 2387 (if com |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2388 (progn |
19078 | 2389 ;; Viper saves inserted text in viper-last-insertion |
2390 (setq len (length viper-last-insertion)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2391 (delete-char len) |
19078 | 2392 (viper-loop val (viper-yank-last-insertion))) |
2393 (setq last-command 'viper-overwrite) | |
2394 (viper-set-complex-command-for-undo) | |
2395 (viper-set-replace-overlay (point) (viper-line-pos 'end)) | |
2396 (viper-change-state-to-replace) | |
18129 | 2397 ))) |
2398 | |
2399 | |
2400 ;; line commands | |
2401 | |
19078 | 2402 (defun viper-line (arg) |
18129 | 2403 (let ((val (car arg)) |
2404 (com (cdr arg))) | |
19078 | 2405 (viper-move-marker-locally 'viper-com-point (point)) |
18129 | 2406 (if (not (eobp)) |
19078 | 2407 (viper-next-line-carefully (1- val))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2408 ;; the following ensures that dd, cc, D, yy will do the right thing on the |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2409 ;; last line of buffer when this line has no \n. |
19078 | 2410 (viper-add-newline-at-eob-if-necessary) |
2411 (viper-execute-com 'viper-line val com)) | |
18129 | 2412 (if (and (eobp) (not (bobp))) (forward-line -1)) |
2413 ) | |
2414 | |
19078 | 2415 (defun viper-yank-line (arg) |
18129 | 2416 "Yank ARG lines (in Vi's sense)." |
2417 (interactive "P") | |
19078 | 2418 (let ((val (viper-p-val arg))) |
2419 (viper-line (cons val ?Y)))) | |
18129 | 2420 |
2421 | |
2422 ;; region commands | |
2423 | |
19078 | 2424 (defun viper-region (arg) |
18129 | 2425 "Execute command on a region." |
2426 (interactive "P") | |
19078 | 2427 (let ((val (viper-P-val arg)) |
2428 (com (viper-getcom arg))) | |
2429 (viper-move-marker-locally 'viper-com-point (point)) | |
18129 | 2430 (exchange-point-and-mark) |
19078 | 2431 (viper-execute-com 'viper-region val com))) |
2432 | |
2433 (defun viper-Region (arg) | |
18129 | 2434 "Execute command on a Region." |
2435 (interactive "P") | |
19078 | 2436 (let ((val (viper-P-val arg)) |
2437 (com (viper-getCom arg))) | |
2438 (viper-move-marker-locally 'viper-com-point (point)) | |
18129 | 2439 (exchange-point-and-mark) |
19078 | 2440 (viper-execute-com 'viper-Region val com))) |
2441 | |
2442 (defun viper-replace-char (arg) | |
18129 | 2443 "Replace the following ARG chars by the character read." |
2444 (interactive "P") | |
2445 (if (and (eolp) (bolp)) (error "No character to replace here")) | |
19078 | 2446 (let ((val (viper-p-val arg)) |
2447 (com (viper-getcom arg))) | |
2448 (viper-replace-char-subr com val) | |
18129 | 2449 (if (and (eolp) (not (bolp))) (forward-char 1)) |
19462 | 2450 (setq viper-this-command-keys |
2451 (format "%sr" (if (integerp arg) arg ""))) | |
19078 | 2452 (viper-set-destructive-command |
2453 (list 'viper-replace-char val ?r nil viper-d-char nil)) | |
18129 | 2454 )) |
2455 | |
19078 | 2456 (defun viper-replace-char-subr (com arg) |
19462 | 2457 (let (char) |
18129 | 2458 (setq char (if (equal com ?r) |
19078 | 2459 viper-d-char |
18129 | 2460 (read-char))) |
19462 | 2461 (let (inhibit-quit) ; preserve consistency of undo-list and iso-accents |
2462 (if (and viper-automatic-iso-accents (memq char '(?' ?\" ?^ ?~))) | |
2463 ;; get European characters | |
2464 (progn | |
2465 (viper-set-iso-accents-mode t) | |
2466 (viper-set-unread-command-events char) | |
2467 (setq char (aref (read-key-sequence nil) 0)) | |
2468 (viper-set-iso-accents-mode nil))) | |
2469 (viper-set-complex-command-for-undo) | |
2470 (if (eq char ?\C-m) (setq char ?\n)) | |
2471 (if (and viper-special-input-method (fboundp 'quail-start-translation)) | |
2472 ;; get Intl. characters | |
2473 (progn | |
2474 (viper-set-input-method t) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2475 (setq last-command-event |
19462 | 2476 (viper-copy-event |
2477 (if viper-xemacs-p (character-to-event char) char))) | |
2478 (delete-char 1 t) | |
2479 (condition-case nil | |
2480 (if com | |
2481 (insert char) | |
2482 (if viper-emacs-p | |
2483 (quail-start-translation 1) | |
2484 (quail-start-translation))) | |
2485 (error)) | |
2486 ;; quail translation failed | |
2487 (if (and (not (stringp quail-current-str)) | |
2488 (not (viper-characterp quail-current-str))) | |
2489 (progn | |
2490 (viper-adjust-undo) | |
2491 (undo-start) | |
2492 (undo-more 1) | |
2493 (viper-set-input-method nil) | |
2494 (error "Composing character failed, changes undone"))) | |
2495 ;; quail translation seems ok | |
2496 (or com | |
2497 ;;(setq char quail-current-str)) | |
2498 (setq char (viper-char-at-pos 'backward))) | |
2499 (setq viper-d-char char) | |
2500 (viper-loop (1- (if (> arg 0) arg (- arg))) | |
2501 (delete-char 1 t) | |
2502 (insert char)) | |
2503 (viper-set-input-method nil)) | |
2504 (delete-char arg t) | |
2505 (setq viper-d-char char) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2506 (viper-loop (if (> arg 0) arg (- arg)) |
19462 | 2507 (insert char))) |
2508 (viper-adjust-undo) | |
2509 (backward-char arg)))) | |
18129 | 2510 |
2511 | |
2512 ;; basic cursor movement. j, k, l, h commands. | |
2513 | |
19078 | 2514 (defun viper-forward-char (arg) |
18129 | 2515 "Move point right ARG characters (left if ARG negative). |
2516 On reaching end of line, stop and signal error." | |
2517 (interactive "P") | |
19078 | 2518 (viper-leave-region-active) |
2519 (let ((val (viper-p-val arg)) | |
2520 (com (viper-getcom arg))) | |
2521 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2522 (if viper-ex-style-motion | |
18129 | 2523 (progn |
2524 ;; the boundary condition check gets weird here because | |
2525 ;; forward-char may be the parameter of a delete, and 'dl' works | |
2526 ;; just like 'x' for the last char on a line, so we have to allow | |
19078 | 2527 ;; the forward motion before the 'viper-execute-com', but, of |
18129 | 2528 ;; course, 'dl' doesn't work on an empty line, so we have to |
19078 | 2529 ;; catch that condition before 'viper-execute-com' |
18129 | 2530 (if (and (eolp) (bolp)) (error "") (forward-char val)) |
19078 | 2531 (if com (viper-execute-com 'viper-forward-char val com)) |
18129 | 2532 (if (eolp) (progn (backward-char 1) (error "")))) |
2533 (forward-char val) | |
19078 | 2534 (if com (viper-execute-com 'viper-forward-char val com))))) |
2535 | |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2536 |
19078 | 2537 (defun viper-backward-char (arg) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2538 "Move point left ARG characters (right if ARG negative). |
18129 | 2539 On reaching beginning of line, stop and signal error." |
2540 (interactive "P") | |
19078 | 2541 (viper-leave-region-active) |
2542 (let ((val (viper-p-val arg)) | |
2543 (com (viper-getcom arg))) | |
2544 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2545 (if viper-ex-style-motion | |
18129 | 2546 (progn |
2547 (if (bolp) (error "") (backward-char val)) | |
19078 | 2548 (if com (viper-execute-com 'viper-backward-char val com))) |
18129 | 2549 (backward-char val) |
19078 | 2550 (if com (viper-execute-com 'viper-backward-char val com))))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2551 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2552 |
18129 | 2553 ;; Like forward-char, but doesn't move at end of buffer. |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2554 ;; Returns distance traveled |
19462 | 2555 ;; (positive or 0, if arg positive; negative if arg negative). |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2556 (defun viper-forward-char-carefully (&optional arg) |
18129 | 2557 (setq arg (or arg 1)) |
19462 | 2558 (let ((pt (point))) |
2559 (condition-case nil | |
2560 (forward-char arg) | |
2561 (error)) | |
2562 (if (< (point) pt) ; arg was negative | |
2563 (- (viper-chars-in-region pt (point))) | |
2564 (viper-chars-in-region pt (point))))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2565 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2566 |
19462 | 2567 ;; Like backward-char, but doesn't move at beg of buffer. |
2568 ;; Returns distance traveled | |
2569 ;; (negative or 0, if arg positive; positive if arg negative). | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2570 (defun viper-backward-char-carefully (&optional arg) |
18129 | 2571 (setq arg (or arg 1)) |
19462 | 2572 (let ((pt (point))) |
2573 (condition-case nil | |
2574 (backward-char arg) | |
2575 (error)) | |
2576 (if (> (point) pt) ; arg was negative | |
2577 (viper-chars-in-region pt (point)) | |
2578 (- (viper-chars-in-region pt (point)))))) | |
18129 | 2579 |
19078 | 2580 (defun viper-next-line-carefully (arg) |
18129 | 2581 (condition-case nil |
2582 (next-line arg) | |
2583 (error nil))) | |
2584 | |
2585 | |
2586 | |
2587 ;;; Word command | |
2588 | |
19078 | 2589 ;; Words are formed from alpha's and nonalphas - <sp>,\t\n are separators for |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2590 ;; word movement. When executed with a destructive command, \n is usually left |
19078 | 2591 ;; untouched for the last word. Viper uses syntax table to determine what is a |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2592 ;; word and what is a separator. However, \n is always a separator. Also, if |
19078 | 2593 ;; viper-syntax-preference is 'vi, then `_' is part of the word. |
18129 | 2594 |
2595 ;; skip only one \n | |
19078 | 2596 (defun viper-skip-separators (forward) |
18129 | 2597 (if forward |
2598 (progn | |
19078 | 2599 (viper-skip-all-separators-forward 'within-line) |
18129 | 2600 (if (looking-at "\n") |
2601 (progn | |
2602 (forward-char) | |
19078 | 2603 (viper-skip-all-separators-forward 'within-line)))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2604 ;; check for eob and white space before it. move off of eob |
22283
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
2605 (if (and (eobp) (save-excursion |
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
2606 (viper-backward-char-carefully) |
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
2607 (viper-looking-at-separator))) |
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
2608 (viper-backward-char-carefully)) |
19078 | 2609 (viper-skip-all-separators-backward 'within-line) |
19462 | 2610 (viper-backward-char-carefully) |
18129 | 2611 (if (looking-at "\n") |
19078 | 2612 (viper-skip-all-separators-backward 'within-line) |
22283
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
2613 (or (bobp) (forward-char))))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2614 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2615 |
19078 | 2616 (defun viper-forward-word-kernel (val) |
18129 | 2617 (while (> val 0) |
19078 | 2618 (cond ((viper-looking-at-alpha) |
2619 (viper-skip-alpha-forward "_") | |
2620 (viper-skip-separators t)) | |
2621 ((viper-looking-at-separator) | |
2622 (viper-skip-separators t)) | |
2623 ((not (viper-looking-at-alphasep)) | |
2624 (viper-skip-nonalphasep-forward) | |
2625 (viper-skip-separators t))) | |
18129 | 2626 (setq val (1- val)))) |
2627 | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2628 ;; first skip non-newline separators backward, then skip \n. Then, if TWICE is |
19462 | 2629 ;; non-nil, skip non-\n back again, but don't overshoot the limit LIM. |
2630 (defun viper-separator-skipback-special (twice lim) | |
2631 (let ((prev-char (viper-char-at-pos 'backward)) | |
2632 (saved-point (point))) | |
2633 ;; skip non-newline separators backward | |
2634 (while (and (not (memq prev-char '(nil \n))) | |
2635 (< lim (point)) | |
2636 ;; must be non-newline separator | |
2637 (if (eq viper-syntax-preference 'strict-vi) | |
2638 (memq prev-char '(?\ ?\t)) | |
2639 (memq (char-syntax prev-char) '(?\ ?-)))) | |
2640 (viper-backward-char-carefully) | |
2641 (setq prev-char (viper-char-at-pos 'backward))) | |
2642 | |
2643 (if (and (< lim (point)) (eq prev-char ?\n)) | |
2644 (backward-char) | |
2645 ;; If we skipped to the next word and the prefix of this line doesn't | |
2646 ;; consist of separators preceded by a newline, then don't skip backwards | |
2647 ;; at all. | |
2648 (goto-char saved-point)) | |
2649 (setq prev-char (viper-char-at-pos 'backward)) | |
2650 | |
2651 ;; skip again, but make sure we don't overshoot the limit | |
2652 (if twice | |
2653 (while (and (not (memq prev-char '(nil \n))) | |
2654 (< lim (point)) | |
2655 ;; must be non-newline separator | |
2656 (if (eq viper-syntax-preference 'strict-vi) | |
2657 (memq prev-char '(?\ ?\t)) | |
2658 (memq (char-syntax prev-char) '(?\ ?-)))) | |
2659 (viper-backward-char-carefully) | |
2660 (setq prev-char (viper-char-at-pos 'backward)))) | |
2661 | |
2662 (if (= (point) lim) | |
2663 (viper-forward-char-carefully)) | |
2664 )) | |
18129 | 2665 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2666 |
19078 | 2667 (defun viper-forward-word (arg) |
18129 | 2668 "Forward word." |
2669 (interactive "P") | |
19078 | 2670 (viper-leave-region-active) |
2671 (let ((val (viper-p-val arg)) | |
2672 (com (viper-getcom arg))) | |
2673 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2674 (viper-forward-word-kernel val) | |
18129 | 2675 (if com (progn |
2676 (cond ((memq com (list ?c (- ?c))) | |
19462 | 2677 (viper-separator-skipback-special 'twice viper-com-point)) |
18129 | 2678 ;; Yank words including the whitespace, but not newline |
2679 ((memq com (list ?y (- ?y))) | |
19462 | 2680 (viper-separator-skipback-special nil viper-com-point)) |
19078 | 2681 ((viper-dotable-command-p com) |
19462 | 2682 (viper-separator-skipback-special nil viper-com-point))) |
19078 | 2683 (viper-execute-com 'viper-forward-word val com))))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2684 |
18129 | 2685 |
19078 | 2686 (defun viper-forward-Word (arg) |
18129 | 2687 "Forward word delimited by white characters." |
2688 (interactive "P") | |
19078 | 2689 (viper-leave-region-active) |
2690 (let ((val (viper-p-val arg)) | |
2691 (com (viper-getcom arg))) | |
2692 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2693 (viper-loop val | |
2694 (viper-skip-nonseparators 'forward) | |
19462 | 2695 (viper-skip-separators t)) |
18129 | 2696 (if com (progn |
2697 (cond ((memq com (list ?c (- ?c))) | |
19462 | 2698 (viper-separator-skipback-special 'twice viper-com-point)) |
18129 | 2699 ;; Yank words including the whitespace, but not newline |
2700 ((memq com (list ?y (- ?y))) | |
19462 | 2701 (viper-separator-skipback-special nil viper-com-point)) |
19078 | 2702 ((viper-dotable-command-p com) |
19462 | 2703 (viper-separator-skipback-special nil viper-com-point))) |
19078 | 2704 (viper-execute-com 'viper-forward-Word val com))))) |
18129 | 2705 |
2706 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2707 ;; this is a bit different from Vi, but Vi's end of word |
18129 | 2708 ;; makes no sense whatsoever |
19078 | 2709 (defun viper-end-of-word-kernel () |
2710 (if (viper-end-of-word-p) (forward-char)) | |
2711 (if (viper-looking-at-separator) | |
2712 (viper-skip-all-separators-forward)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2713 |
19078 | 2714 (cond ((viper-looking-at-alpha) (viper-skip-alpha-forward "_")) |
2715 ((not (viper-looking-at-alphasep)) (viper-skip-nonalphasep-forward))) | |
2716 (viper-backward-char-carefully)) | |
2717 | |
2718 (defun viper-end-of-word-p () | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2719 (or (eobp) |
18129 | 2720 (save-excursion |
19078 | 2721 (cond ((viper-looking-at-alpha) |
18129 | 2722 (forward-char) |
19078 | 2723 (not (viper-looking-at-alpha))) |
2724 ((not (viper-looking-at-alphasep)) | |
18129 | 2725 (forward-char) |
19078 | 2726 (viper-looking-at-alphasep)))))) |
2727 | |
2728 | |
2729 (defun viper-end-of-word (arg &optional careful) | |
18129 | 2730 "Move point to end of current word." |
2731 (interactive "P") | |
19078 | 2732 (viper-leave-region-active) |
2733 (let ((val (viper-p-val arg)) | |
2734 (com (viper-getcom arg))) | |
2735 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2736 (viper-loop val (viper-end-of-word-kernel)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2737 (if com |
18129 | 2738 (progn |
2739 (forward-char) | |
19078 | 2740 (viper-execute-com 'viper-end-of-word val com))))) |
2741 | |
2742 (defun viper-end-of-Word (arg) | |
18129 | 2743 "Forward to end of word delimited by white character." |
2744 (interactive "P") | |
19078 | 2745 (viper-leave-region-active) |
2746 (let ((val (viper-p-val arg)) | |
2747 (com (viper-getcom arg))) | |
2748 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2749 (viper-loop val | |
2750 (viper-end-of-word-kernel) | |
2751 (viper-skip-nonseparators 'forward) | |
19462 | 2752 (backward-char)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2753 (if com |
18129 | 2754 (progn |
2755 (forward-char) | |
19078 | 2756 (viper-execute-com 'viper-end-of-Word val com))))) |
2757 | |
2758 (defun viper-backward-word-kernel (val) | |
18129 | 2759 (while (> val 0) |
19462 | 2760 (viper-backward-char-carefully) |
19078 | 2761 (cond ((viper-looking-at-alpha) |
2762 (viper-skip-alpha-backward "_")) | |
2763 ((viper-looking-at-separator) | |
18129 | 2764 (forward-char) |
19078 | 2765 (viper-skip-separators nil) |
19462 | 2766 (viper-backward-char-carefully) |
19078 | 2767 (cond ((viper-looking-at-alpha) |
2768 (viper-skip-alpha-backward "_")) | |
2769 ((not (viper-looking-at-alphasep)) | |
2770 (viper-skip-nonalphasep-backward)) | |
19462 | 2771 ((bobp)) ; could still be at separator, but at beg of buffer |
18129 | 2772 (t (forward-char)))) |
19078 | 2773 ((not (viper-looking-at-alphasep)) |
2774 (viper-skip-nonalphasep-backward))) | |
18129 | 2775 (setq val (1- val)))) |
2776 | |
19078 | 2777 (defun viper-backward-word (arg) |
18129 | 2778 "Backward word." |
2779 (interactive "P") | |
19078 | 2780 (viper-leave-region-active) |
2781 (let ((val (viper-p-val arg)) | |
2782 (com (viper-getcom arg))) | |
18129 | 2783 (if com |
2784 (let (i) | |
2785 (if (setq i (save-excursion (backward-char) (looking-at "\n"))) | |
2786 (backward-char)) | |
19078 | 2787 (viper-move-marker-locally 'viper-com-point (point)) |
18129 | 2788 (if i (forward-char)))) |
19078 | 2789 (viper-backward-word-kernel val) |
2790 (if com (viper-execute-com 'viper-backward-word val com)))) | |
2791 | |
2792 (defun viper-backward-Word (arg) | |
18129 | 2793 "Backward word delimited by white character." |
2794 (interactive "P") | |
19078 | 2795 (viper-leave-region-active) |
2796 (let ((val (viper-p-val arg)) | |
2797 (com (viper-getcom arg))) | |
18129 | 2798 (if com |
2799 (let (i) | |
2800 (if (setq i (save-excursion (backward-char) (looking-at "\n"))) | |
2801 (backward-char)) | |
19078 | 2802 (viper-move-marker-locally 'viper-com-point (point)) |
18129 | 2803 (if i (forward-char)))) |
19078 | 2804 (viper-loop val |
19462 | 2805 (viper-skip-separators nil) ; nil means backward here |
2806 (viper-skip-nonseparators 'backward)) | |
19078 | 2807 (if com (viper-execute-com 'viper-backward-Word val com)))) |
18129 | 2808 |
2809 | |
2810 | |
2811 ;; line commands | |
2812 | |
19078 | 2813 (defun viper-beginning-of-line (arg) |
18129 | 2814 "Go to beginning of line." |
2815 (interactive "P") | |
19078 | 2816 (viper-leave-region-active) |
2817 (let ((val (viper-p-val arg)) | |
2818 (com (viper-getcom arg))) | |
2819 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 2820 (beginning-of-line val) |
19078 | 2821 (if com (viper-execute-com 'viper-beginning-of-line val com)))) |
2822 | |
2823 (defun viper-bol-and-skip-white (arg) | |
18129 | 2824 "Beginning of line at first non-white character." |
2825 (interactive "P") | |
19078 | 2826 (viper-leave-region-active) |
2827 (let ((val (viper-p-val arg)) | |
2828 (com (viper-getcom arg))) | |
2829 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 2830 (forward-to-indentation (1- val)) |
19078 | 2831 (if com (viper-execute-com 'viper-bol-and-skip-white val com)))) |
2832 | |
2833 (defun viper-goto-eol (arg) | |
18129 | 2834 "Go to end of line." |
2835 (interactive "P") | |
19078 | 2836 (viper-leave-region-active) |
2837 (let ((val (viper-p-val arg)) | |
2838 (com (viper-getcom arg))) | |
2839 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 2840 (end-of-line val) |
19078 | 2841 (if com (viper-execute-com 'viper-goto-eol val com)) |
2842 (if viper-ex-style-motion | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2843 (if (and (eolp) (not (bolp)) |
19078 | 2844 ;; a fix for viper-change-to-eol |
2845 (not (equal viper-current-state 'insert-state))) | |
18129 | 2846 (backward-char 1) |
2847 )))) | |
2848 | |
2849 | |
19078 | 2850 (defun viper-goto-col (arg) |
18129 | 2851 "Go to ARG's column." |
2852 (interactive "P") | |
19078 | 2853 (viper-leave-region-active) |
2854 (let ((val (viper-p-val arg)) | |
2855 (com (viper-getcom arg)) | |
18129 | 2856 line-len) |
19462 | 2857 (setq line-len |
2858 (viper-chars-in-region | |
2859 (viper-line-pos 'start) (viper-line-pos 'end))) | |
19078 | 2860 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 2861 (beginning-of-line) |
2862 (forward-char (1- (min line-len val))) | |
2863 (while (> (current-column) (1- val)) | |
2864 (backward-char 1)) | |
19078 | 2865 (if com (viper-execute-com 'viper-goto-col val com)) |
18129 | 2866 (save-excursion |
2867 (end-of-line) | |
2868 (if (> val (current-column)) (error ""))) | |
2869 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2870 |
18129 | 2871 |
19078 | 2872 (defun viper-next-line (arg) |
18129 | 2873 "Go to next line." |
2874 (interactive "P") | |
19078 | 2875 (viper-leave-region-active) |
2876 (let ((val (viper-p-val arg)) | |
2877 (com (viper-getCom arg))) | |
2878 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 2879 (next-line val) |
19078 | 2880 (if viper-ex-style-motion |
18129 | 2881 (if (and (eolp) (not (bolp))) (backward-char 1))) |
2882 (setq this-command 'next-line) | |
19078 | 2883 (if com (viper-execute-com 'viper-next-line val com)))) |
2884 | |
2885 (defun viper-next-line-at-bol (arg) | |
18129 | 2886 "Next line at beginning of line." |
2887 (interactive "P") | |
19078 | 2888 (viper-leave-region-active) |
18129 | 2889 (save-excursion |
2890 (end-of-line) | |
2891 (if (eobp) (error "Last line in buffer"))) | |
19078 | 2892 (let ((val (viper-p-val arg)) |
2893 (com (viper-getCom arg))) | |
2894 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 2895 (forward-line val) |
2896 (back-to-indentation) | |
19078 | 2897 (if com (viper-execute-com 'viper-next-line-at-bol val com)))) |
2898 | |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2899 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2900 (defun viper-previous-line (arg) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2901 "Go to previous line." |
18129 | 2902 (interactive "P") |
19078 | 2903 (viper-leave-region-active) |
2904 (let ((val (viper-p-val arg)) | |
2905 (com (viper-getCom arg))) | |
2906 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 2907 (previous-line val) |
19078 | 2908 (if viper-ex-style-motion |
18129 | 2909 (if (and (eolp) (not (bolp))) (backward-char 1))) |
2910 (setq this-command 'previous-line) | |
19078 | 2911 (if com (viper-execute-com 'viper-previous-line val com)))) |
2912 | |
2913 | |
2914 (defun viper-previous-line-at-bol (arg) | |
18129 | 2915 "Previous line at beginning of line." |
2916 (interactive "P") | |
19078 | 2917 (viper-leave-region-active) |
18129 | 2918 (save-excursion |
2919 (beginning-of-line) | |
2920 (if (bobp) (error "First line in buffer"))) | |
19078 | 2921 (let ((val (viper-p-val arg)) |
2922 (com (viper-getCom arg))) | |
2923 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 2924 (forward-line (- val)) |
2925 (back-to-indentation) | |
19078 | 2926 (if com (viper-execute-com 'viper-previous-line val com)))) |
2927 | |
2928 (defun viper-change-to-eol (arg) | |
18129 | 2929 "Change to end of line." |
2930 (interactive "P") | |
19078 | 2931 (viper-goto-eol (cons arg ?c))) |
2932 | |
2933 (defun viper-kill-line (arg) | |
18129 | 2934 "Delete line." |
2935 (interactive "P") | |
19078 | 2936 (viper-goto-eol (cons arg ?d))) |
2937 | |
2938 (defun viper-erase-line (arg) | |
18129 | 2939 "Erase line." |
2940 (interactive "P") | |
19078 | 2941 (viper-beginning-of-line (cons arg ?d))) |
18129 | 2942 |
2943 | |
2944 ;;; Moving around | |
2945 | |
19078 | 2946 (defun viper-goto-line (arg) |
18129 | 2947 "Go to ARG's line. Without ARG go to end of buffer." |
2948 (interactive "P") | |
19078 | 2949 (let ((val (viper-P-val arg)) |
2950 (com (viper-getCom arg))) | |
2951 (viper-move-marker-locally 'viper-com-point (point)) | |
2952 (viper-deactivate-mark) | |
18129 | 2953 (push-mark nil t) |
2954 (if (null val) | |
2955 (goto-char (point-max)) | |
2956 (goto-char (point-min)) | |
2957 (forward-line (1- val))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2958 |
18129 | 2959 ;; positioning is done twice: before and after command execution |
2960 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) | |
2961 (back-to-indentation) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2962 |
19078 | 2963 (if com (viper-execute-com 'viper-goto-line val com)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2964 |
18129 | 2965 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) |
2966 (back-to-indentation) | |
2967 )) | |
2968 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2969 ;; Find ARG's occurrence of CHAR on the current line. |
18129 | 2970 ;; If FORWARD then search is forward, otherwise backward. OFFSET is used to |
2971 ;; adjust point after search. | |
19078 | 2972 (defun viper-find-char (arg char forward offset) |
18129 | 2973 (or (char-or-string-p char) (error "")) |
2974 (let ((arg (if forward arg (- arg))) | |
19078 | 2975 (cmd (if (eq viper-intermediate-command 'viper-repeat) |
2976 (nth 5 viper-d-com) | |
2977 (viper-array-to-string (this-command-keys)))) | |
21940 | 2978 point region-beg region-end) |
18129 | 2979 (save-excursion |
2980 (save-restriction | |
21940 | 2981 (if (> arg 0) ; forward |
2982 (progn | |
2983 (setq region-beg (point)) | |
2984 (if viper-allow-multiline-replace-regions | |
2985 (viper-forward-paragraph 1) | |
2986 (end-of-line)) | |
2987 (setq region-end (point))) | |
2988 (setq region-end (point)) | |
2989 (if viper-allow-multiline-replace-regions | |
2990 (viper-backward-paragraph 1) | |
2991 (beginning-of-line)) | |
2992 (setq region-beg (point))) | |
2993 (if (or (and (< arg 0) | |
2994 (< (- region-end region-beg) | |
2995 (if viper-allow-multiline-replace-regions | |
2996 2 1)) | |
2997 (bolp)) | |
2998 (and (> arg 0) | |
2999 (< (- region-end region-beg) | |
3000 (if viper-allow-multiline-replace-regions | |
3001 3 2)) | |
3002 (eolp))) | |
3003 (error "Command `%s': At %s of %s" | |
3004 cmd | |
3005 (if (> arg 0) "end" "beginning") | |
3006 (if viper-allow-multiline-replace-regions | |
3007 "paragraph" "line"))) | |
3008 (narrow-to-region region-beg region-end) | |
18129 | 3009 ;; if arg > 0, point is forwarded before search. |
3010 (if (> arg 0) (goto-char (1+ (point-min))) | |
3011 (goto-char (point-max))) | |
3012 (if (let ((case-fold-search nil)) | |
3013 (search-forward (char-to-string char) nil 0 arg)) | |
3014 (setq point (point)) | |
3015 (error "Command `%s': `%c' not found" cmd char)))) | |
19462 | 3016 (goto-char point) |
3017 (if (> arg 0) | |
3018 (backward-char (if offset 2 1)) | |
3019 (forward-char (if offset 1 0))))) | |
18129 | 3020 |
19078 | 3021 (defun viper-find-char-forward (arg) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3022 "Find char on the line. |
18129 | 3023 If called interactively read the char to find from the terminal, and if |
19078 | 3024 called from viper-repeat, the char last used is used. This behaviour is |
18129 | 3025 controlled by the sign of prefix numeric value." |
3026 (interactive "P") | |
19078 | 3027 (let ((val (viper-p-val arg)) |
3028 (com (viper-getcom arg)) | |
3029 (cmd-representation (nth 5 viper-d-com))) | |
18129 | 3030 (if (> val 0) |
3031 ;; this means that the function was called interactively | |
19078 | 3032 (setq viper-f-char (read-char) |
3033 viper-f-forward t | |
3034 viper-f-offset nil) | |
3035 ;; viper-repeat --- set viper-F-char from command-keys | |
3036 (setq viper-F-char (if (stringp cmd-representation) | |
3037 (viper-seq-last-elt cmd-representation) | |
3038 viper-F-char) | |
3039 viper-f-char viper-F-char) | |
18129 | 3040 (setq val (- val))) |
19078 | 3041 (if com (viper-move-marker-locally 'viper-com-point (point))) |
3042 (viper-find-char | |
3043 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) t nil) | |
18129 | 3044 (setq val (- val)) |
3045 (if com | |
3046 (progn | |
19078 | 3047 (setq viper-F-char viper-f-char) ; set new viper-F-char |
18129 | 3048 (forward-char) |
19078 | 3049 (viper-execute-com 'viper-find-char-forward val com))))) |
3050 | |
3051 (defun viper-goto-char-forward (arg) | |
18129 | 3052 "Go up to char ARG forward on line." |
3053 (interactive "P") | |
19078 | 3054 (let ((val (viper-p-val arg)) |
3055 (com (viper-getcom arg)) | |
3056 (cmd-representation (nth 5 viper-d-com))) | |
18129 | 3057 (if (> val 0) |
3058 ;; this means that the function was called interactively | |
19078 | 3059 (setq viper-f-char (read-char) |
3060 viper-f-forward t | |
3061 viper-f-offset t) | |
3062 ;; viper-repeat --- set viper-F-char from command-keys | |
3063 (setq viper-F-char (if (stringp cmd-representation) | |
3064 (viper-seq-last-elt cmd-representation) | |
3065 viper-F-char) | |
3066 viper-f-char viper-F-char) | |
18129 | 3067 (setq val (- val))) |
19078 | 3068 (if com (viper-move-marker-locally 'viper-com-point (point))) |
3069 (viper-find-char | |
3070 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) t t) | |
18129 | 3071 (setq val (- val)) |
3072 (if com | |
3073 (progn | |
19078 | 3074 (setq viper-F-char viper-f-char) ; set new viper-F-char |
18129 | 3075 (forward-char) |
19078 | 3076 (viper-execute-com 'viper-goto-char-forward val com))))) |
3077 | |
3078 (defun viper-find-char-backward (arg) | |
18129 | 3079 "Find char ARG on line backward." |
3080 (interactive "P") | |
19078 | 3081 (let ((val (viper-p-val arg)) |
3082 (com (viper-getcom arg)) | |
3083 (cmd-representation (nth 5 viper-d-com))) | |
18129 | 3084 (if (> val 0) |
3085 ;; this means that the function was called interactively | |
19078 | 3086 (setq viper-f-char (read-char) |
3087 viper-f-forward nil | |
3088 viper-f-offset nil) | |
3089 ;; viper-repeat --- set viper-F-char from command-keys | |
3090 (setq viper-F-char (if (stringp cmd-representation) | |
3091 (viper-seq-last-elt cmd-representation) | |
3092 viper-F-char) | |
3093 viper-f-char viper-F-char) | |
18129 | 3094 (setq val (- val))) |
19078 | 3095 (if com (viper-move-marker-locally 'viper-com-point (point))) |
3096 (viper-find-char | |
3097 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) nil nil) | |
18129 | 3098 (setq val (- val)) |
3099 (if com | |
3100 (progn | |
19078 | 3101 (setq viper-F-char viper-f-char) ; set new viper-F-char |
3102 (viper-execute-com 'viper-find-char-backward val com))))) | |
3103 | |
3104 (defun viper-goto-char-backward (arg) | |
18129 | 3105 "Go up to char ARG backward on line." |
3106 (interactive "P") | |
19078 | 3107 (let ((val (viper-p-val arg)) |
3108 (com (viper-getcom arg)) | |
3109 (cmd-representation (nth 5 viper-d-com))) | |
18129 | 3110 (if (> val 0) |
3111 ;; this means that the function was called interactively | |
19078 | 3112 (setq viper-f-char (read-char) |
3113 viper-f-forward nil | |
3114 viper-f-offset t) | |
3115 ;; viper-repeat --- set viper-F-char from command-keys | |
3116 (setq viper-F-char (if (stringp cmd-representation) | |
3117 (viper-seq-last-elt cmd-representation) | |
3118 viper-F-char) | |
3119 viper-f-char viper-F-char) | |
18129 | 3120 (setq val (- val))) |
19078 | 3121 (if com (viper-move-marker-locally 'viper-com-point (point))) |
3122 (viper-find-char | |
3123 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) nil t) | |
18129 | 3124 (setq val (- val)) |
3125 (if com | |
3126 (progn | |
19078 | 3127 (setq viper-F-char viper-f-char) ; set new viper-F-char |
3128 (viper-execute-com 'viper-goto-char-backward val com))))) | |
3129 | |
3130 (defun viper-repeat-find (arg) | |
18129 | 3131 "Repeat previous find command." |
3132 (interactive "P") | |
19078 | 3133 (let ((val (viper-p-val arg)) |
3134 (com (viper-getcom arg))) | |
3135 (viper-deactivate-mark) | |
3136 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
3137 (viper-find-char val viper-f-char viper-f-forward viper-f-offset) | |
18129 | 3138 (if com |
3139 (progn | |
19078 | 3140 (if viper-f-forward (forward-char)) |
3141 (viper-execute-com 'viper-repeat-find val com))))) | |
3142 | |
3143 (defun viper-repeat-find-opposite (arg) | |
18129 | 3144 "Repeat previous find command in the opposite direction." |
3145 (interactive "P") | |
19078 | 3146 (let ((val (viper-p-val arg)) |
3147 (com (viper-getcom arg))) | |
3148 (viper-deactivate-mark) | |
3149 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
3150 (viper-find-char val viper-f-char (not viper-f-forward) viper-f-offset) | |
18129 | 3151 (if com |
3152 (progn | |
19078 | 3153 (if viper-f-forward (forward-char)) |
3154 (viper-execute-com 'viper-repeat-find-opposite val com))))) | |
18129 | 3155 |
3156 | |
3157 ;; window scrolling etc. | |
3158 | |
19078 | 3159 (defun viper-window-top (arg) |
18129 | 3160 "Go to home window line." |
3161 (interactive "P") | |
19078 | 3162 (let ((val (viper-p-val arg)) |
3163 (com (viper-getCom arg))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3164 (viper-leave-region-active) |
19078 | 3165 (if com (viper-move-marker-locally 'viper-com-point (point))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3166 (push-mark nil t) |
18129 | 3167 (move-to-window-line (1- val)) |
3168 | |
3169 ;; positioning is done twice: before and after command execution | |
3170 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) | |
3171 (back-to-indentation) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3172 |
19078 | 3173 (if com (viper-execute-com 'viper-window-top val com)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3174 |
18129 | 3175 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) |
3176 (back-to-indentation) | |
3177 )) | |
3178 | |
19078 | 3179 (defun viper-window-middle (arg) |
18129 | 3180 "Go to middle window line." |
3181 (interactive "P") | |
19078 | 3182 (let ((val (viper-p-val arg)) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3183 (com (viper-getCom arg))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3184 (viper-leave-region-active) |
19078 | 3185 (if com (viper-move-marker-locally 'viper-com-point (point))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3186 (push-mark nil t) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3187 (move-to-window-line (+ (/ (1- (window-height)) 2) (1- val))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3188 |
18129 | 3189 ;; positioning is done twice: before and after command execution |
3190 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) | |
3191 (back-to-indentation) | |
3192 | |
19078 | 3193 (if com (viper-execute-com 'viper-window-middle val com)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3194 |
18129 | 3195 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) |
3196 (back-to-indentation) | |
3197 )) | |
3198 | |
19078 | 3199 (defun viper-window-bottom (arg) |
18129 | 3200 "Go to last window line." |
3201 (interactive "P") | |
19078 | 3202 (let ((val (viper-p-val arg)) |
3203 (com (viper-getCom arg))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3204 (viper-leave-region-active) |
19078 | 3205 (if com (viper-move-marker-locally 'viper-com-point (point))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3206 (push-mark nil t) |
18129 | 3207 (move-to-window-line (- val)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3208 |
18129 | 3209 ;; positioning is done twice: before and after command execution |
3210 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) | |
3211 (back-to-indentation) | |
3212 | |
19078 | 3213 (if com (viper-execute-com 'viper-window-bottom val com)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3214 |
18129 | 3215 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) |
3216 (back-to-indentation) | |
3217 )) | |
3218 | |
19078 | 3219 (defun viper-line-to-top (arg) |
18129 | 3220 "Put current line on the home line." |
3221 (interactive "p") | |
3222 (recenter (1- arg))) | |
3223 | |
19078 | 3224 (defun viper-line-to-middle (arg) |
18129 | 3225 "Put current line on the middle line." |
3226 (interactive "p") | |
3227 (recenter (+ (1- arg) (/ (1- (window-height)) 2)))) | |
3228 | |
19078 | 3229 (defun viper-line-to-bottom (arg) |
18129 | 3230 "Put current line on the last line." |
3231 (interactive "p") | |
3232 (recenter (- (window-height) (1+ arg)))) | |
3233 | |
19078 | 3234 ;; If point is within viper-search-scroll-threshold of window top or bottom, |
18129 | 3235 ;; scroll up or down 1/7 of window height, depending on whether we are at the |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3236 ;; bottom or at the top of the window. This function is called by viper-search |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3237 ;; (which is called from viper-search-forward/backward/next). If the value of |
19078 | 3238 ;; viper-search-scroll-threshold is negative - don't scroll. |
3239 (defun viper-adjust-window () | |
3240 (let ((win-height (if viper-emacs-p | |
18129 | 3241 (1- (window-height)) ; adjust for modeline |
3242 (window-displayed-height))) | |
3243 (pt (point)) | |
3244 at-top-p at-bottom-p | |
3245 min-scroll direction) | |
3246 (save-excursion | |
3247 (move-to-window-line 0) ; top | |
3248 (setq at-top-p | |
3249 (<= (count-lines pt (point)) | |
19078 | 3250 viper-search-scroll-threshold)) |
18129 | 3251 (move-to-window-line -1) ; bottom |
3252 (setq at-bottom-p | |
19078 | 3253 (<= (count-lines pt (point)) viper-search-scroll-threshold)) |
18129 | 3254 ) |
19078 | 3255 (cond (at-top-p (setq min-scroll (1- viper-search-scroll-threshold) |
18129 | 3256 direction 1)) |
19078 | 3257 (at-bottom-p (setq min-scroll (1+ viper-search-scroll-threshold) |
18129 | 3258 direction -1))) |
3259 (if min-scroll | |
3260 (recenter | |
3261 (* (max min-scroll (/ win-height 7)) direction))) | |
3262 )) | |
3263 | |
3264 | |
3265 ;; paren match | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3266 ;; must correct this to only match ( to ) etc. On the other hand |
18129 | 3267 ;; it is good that paren match gets confused, because that way you |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3268 ;; catch _all_ imbalances. |
18129 | 3269 |
19078 | 3270 (defun viper-paren-match (arg) |
18129 | 3271 "Go to the matching parenthesis." |
3272 (interactive "P") | |
19078 | 3273 (viper-leave-region-active) |
3274 (let ((com (viper-getcom arg)) | |
3275 (parse-sexp-ignore-comments viper-parse-sexp-ignore-comments) | |
18129 | 3276 anchor-point) |
3277 (if (integerp arg) | |
3278 (if (or (> arg 99) (< arg 1)) | |
3279 (error "Prefix must be between 1 and 99") | |
3280 (goto-char | |
3281 (if (> (point-max) 80000) | |
3282 (* (/ (point-max) 100) arg) | |
3283 (/ (* (point-max) arg) 100))) | |
3284 (back-to-indentation)) | |
3285 (let (beg-lim end-lim) | |
3286 (if (and (eolp) (not (bolp))) (forward-char -1)) | |
3287 (if (not (looking-at "[][(){}]")) | |
3288 (setq anchor-point (point))) | |
3289 (save-excursion | |
3290 (beginning-of-line) | |
3291 (setq beg-lim (point)) | |
3292 (end-of-line) | |
3293 (setq end-lim (point))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3294 (cond ((re-search-forward "[][(){}]" end-lim t) |
18129 | 3295 (backward-char) ) |
3296 ((re-search-backward "[][(){}]" beg-lim t)) | |
3297 (t | |
3298 (error "No matching character on line")))) | |
3299 (cond ((looking-at "[\(\[{]") | |
19078 | 3300 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 3301 (forward-sexp 1) |
3302 (if com | |
19078 | 3303 (viper-execute-com 'viper-paren-match nil com) |
18129 | 3304 (backward-char))) |
3305 (anchor-point | |
3306 (if com | |
3307 (progn | |
19078 | 3308 (viper-move-marker-locally 'viper-com-point anchor-point) |
18129 | 3309 (forward-char 1) |
19078 | 3310 (viper-execute-com 'viper-paren-match nil com) |
18129 | 3311 ))) |
3312 ((looking-at "[])}]") | |
3313 (forward-char) | |
19078 | 3314 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 3315 (backward-sexp 1) |
19078 | 3316 (if com (viper-execute-com 'viper-paren-match nil com))) |
18129 | 3317 (t (error "")))))) |
3318 | |
19078 | 3319 (defun viper-toggle-parse-sexp-ignore-comments () |
18129 | 3320 (interactive) |
19078 | 3321 (setq viper-parse-sexp-ignore-comments |
3322 (not viper-parse-sexp-ignore-comments)) | |
18839 | 3323 (princ (format |
3324 "From now on, `%%' will %signore parentheses inside comment fields" | |
19078 | 3325 (if viper-parse-sexp-ignore-comments "" "NOT ")))) |
18129 | 3326 |
3327 | |
21940 | 3328 ;; sentence, paragraph and heading |
18129 | 3329 |
19078 | 3330 (defun viper-forward-sentence (arg) |
18129 | 3331 "Forward sentence." |
3332 (interactive "P") | |
20003 | 3333 (or (eq last-command this-command) |
3334 (push-mark nil t)) | |
19078 | 3335 (let ((val (viper-p-val arg)) |
3336 (com (viper-getcom arg))) | |
3337 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3338 (forward-sentence val) |
19078 | 3339 (if com (viper-execute-com 'viper-forward-sentence nil com)))) |
3340 | |
3341 (defun viper-backward-sentence (arg) | |
18129 | 3342 "Backward sentence." |
3343 (interactive "P") | |
20003 | 3344 (or (eq last-command this-command) |
3345 (push-mark nil t)) | |
19078 | 3346 (let ((val (viper-p-val arg)) |
3347 (com (viper-getcom arg))) | |
3348 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3349 (backward-sentence val) |
19078 | 3350 (if com (viper-execute-com 'viper-backward-sentence nil com)))) |
3351 | |
3352 (defun viper-forward-paragraph (arg) | |
18129 | 3353 "Forward paragraph." |
3354 (interactive "P") | |
20003 | 3355 (or (eq last-command this-command) |
3356 (push-mark nil t)) | |
19078 | 3357 (let ((val (viper-p-val arg)) |
21940 | 3358 ;; if you want d} operate on whole lines, change viper-getcom to |
3359 ;; viper-getCom below | |
3360 (com (viper-getcom arg))) | |
19078 | 3361 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 3362 (forward-paragraph val) |
3363 (if com | |
3364 (progn | |
3365 (backward-char 1) | |
19078 | 3366 (viper-execute-com 'viper-forward-paragraph nil com))))) |
3367 | |
3368 (defun viper-backward-paragraph (arg) | |
18129 | 3369 "Backward paragraph." |
3370 (interactive "P") | |
20003 | 3371 (or (eq last-command this-command) |
3372 (push-mark nil t)) | |
19078 | 3373 (let ((val (viper-p-val arg)) |
21940 | 3374 ;; if you want d{ operate on whole lines, change viper-getcom to |
3375 ;; viper-getCom below | |
3376 (com (viper-getcom arg))) | |
19078 | 3377 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 3378 (backward-paragraph val) |
3379 (if com | |
3380 (progn | |
3381 (forward-char 1) | |
19078 | 3382 (viper-execute-com 'viper-backward-paragraph nil com) |
18129 | 3383 (backward-char 1))))) |
3384 | |
20003 | 3385 ;; should be mode-specific |
19078 | 3386 (defun viper-prev-heading (arg) |
18129 | 3387 (interactive "P") |
19078 | 3388 (let ((val (viper-p-val arg)) |
3389 (com (viper-getCom arg))) | |
3390 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
3391 (re-search-backward viper-heading-start nil t val) | |
18129 | 3392 (goto-char (match-beginning 0)) |
19078 | 3393 (if com (viper-execute-com 'viper-prev-heading nil com)))) |
3394 | |
3395 (defun viper-heading-end (arg) | |
18129 | 3396 (interactive "P") |
19078 | 3397 (let ((val (viper-p-val arg)) |
3398 (com (viper-getCom arg))) | |
3399 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
3400 (re-search-forward viper-heading-end nil t val) | |
18129 | 3401 (goto-char (match-beginning 0)) |
19078 | 3402 (if com (viper-execute-com 'viper-heading-end nil com)))) |
3403 | |
3404 (defun viper-next-heading (arg) | |
18129 | 3405 (interactive "P") |
19078 | 3406 (let ((val (viper-p-val arg)) |
3407 (com (viper-getCom arg))) | |
3408 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3409 (end-of-line) |
19078 | 3410 (re-search-forward viper-heading-start nil t val) |
18129 | 3411 (goto-char (match-beginning 0)) |
19078 | 3412 (if com (viper-execute-com 'viper-next-heading nil com)))) |
18129 | 3413 |
3414 | |
3415 ;; scrolling | |
3416 | |
19078 | 3417 (defun viper-scroll-screen (arg) |
18129 | 3418 "Scroll to next screen." |
3419 (interactive "p") | |
3420 (condition-case nil | |
3421 (if (> arg 0) | |
3422 (while (> arg 0) | |
3423 (scroll-up) | |
3424 (setq arg (1- arg))) | |
3425 (while (> 0 arg) | |
3426 (scroll-down) | |
3427 (setq arg (1+ arg)))) | |
3428 (error (beep 1) | |
3429 (if (> arg 0) | |
3430 (progn | |
3431 (message "End of buffer") | |
3432 (goto-char (point-max))) | |
3433 (message "Beginning of buffer") | |
3434 (goto-char (point-min)))) | |
3435 )) | |
3436 | |
19078 | 3437 (defun viper-scroll-screen-back (arg) |
18129 | 3438 "Scroll to previous screen." |
3439 (interactive "p") | |
19078 | 3440 (viper-scroll-screen (- arg))) |
3441 | |
3442 (defun viper-scroll-down (arg) | |
18129 | 3443 "Pull down half screen." |
3444 (interactive "P") | |
3445 (condition-case nil | |
3446 (if (null arg) | |
3447 (scroll-down (/ (window-height) 2)) | |
3448 (scroll-down arg)) | |
3449 (error (beep 1) | |
3450 (message "Beginning of buffer") | |
3451 (goto-char (point-min))))) | |
3452 | |
19078 | 3453 (defun viper-scroll-down-one (arg) |
18129 | 3454 "Scroll up one line." |
3455 (interactive "p") | |
3456 (scroll-down arg)) | |
3457 | |
19078 | 3458 (defun viper-scroll-up (arg) |
18129 | 3459 "Pull up half screen." |
3460 (interactive "P") | |
3461 (condition-case nil | |
3462 (if (null arg) | |
3463 (scroll-up (/ (window-height) 2)) | |
3464 (scroll-up arg)) | |
3465 (error (beep 1) | |
3466 (message "End of buffer") | |
3467 (goto-char (point-max))))) | |
3468 | |
19078 | 3469 (defun viper-scroll-up-one (arg) |
18129 | 3470 "Scroll down one line." |
3471 (interactive "p") | |
3472 (scroll-up arg)) | |
3473 | |
3474 | |
3475 ;; searching | |
3476 | |
19078 | 3477 (defun viper-if-string (prompt) |
3478 (if (memq viper-intermediate-command | |
3479 '(viper-command-argument viper-digit-argument viper-repeat)) | |
3480 (setq viper-this-command-keys (this-command-keys))) | |
3481 (let ((s (viper-read-string-with-history | |
18129 | 3482 prompt |
3483 nil ; no initial | |
19078 | 3484 'viper-search-history |
3485 (car viper-search-history)))) | |
18129 | 3486 (if (not (string= s "")) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3487 (setq viper-s-string s)))) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3488 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3489 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3490 (defun viper-toggle-search-style (arg) |
19078 | 3491 "Toggle the value of viper-case-fold-search/viper-re-search. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3492 Without prefix argument, will ask which search style to toggle. With prefix |
19078 | 3493 arg 1,toggles viper-case-fold-search; with arg 2 toggles viper-re-search. |
3494 | |
3495 Although this function is bound to \\[viper-toggle-search-style], the most | |
18129 | 3496 convenient way to use it is to bind `//' to the macro |
19078 | 3497 `1 M-x viper-toggle-search-style' and `///' to |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3498 `2 M-x viper-toggle-search-style'. In this way, hitting `//' quickly will |
18129 | 3499 toggle case-fold-search and hitting `/' three times witth toggle regexp |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3500 search. Macros are more convenient in this case because they don't affect |
18129 | 3501 the Emacs binding of `/'." |
3502 (interactive "P") | |
3503 (let (msg) | |
3504 (cond ((or (eq arg 1) | |
3505 (and (null arg) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3506 (y-or-n-p (format "Search style: '%s'. Want '%s'? " |
19078 | 3507 (if viper-case-fold-search |
18129 | 3508 "case-insensitive" "case-sensitive") |
19078 | 3509 (if viper-case-fold-search |
18129 | 3510 "case-sensitive" |
3511 "case-insensitive"))))) | |
19078 | 3512 (setq viper-case-fold-search (null viper-case-fold-search)) |
3513 (if viper-case-fold-search | |
18129 | 3514 (setq msg "Search becomes case-insensitive") |
3515 (setq msg "Search becomes case-sensitive"))) | |
3516 ((or (eq arg 2) | |
3517 (and (null arg) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3518 (y-or-n-p (format "Search style: '%s'. Want '%s'? " |
19078 | 3519 (if viper-re-search |
18129 | 3520 "regexp-search" "vanilla-search") |
19078 | 3521 (if viper-re-search |
18129 | 3522 "vanilla-search" |
3523 "regexp-search"))))) | |
19078 | 3524 (setq viper-re-search (null viper-re-search)) |
3525 (if viper-re-search | |
18129 | 3526 (setq msg "Search becomes regexp-style") |
3527 (setq msg "Search becomes vanilla-style"))) | |
3528 (t | |
3529 (setq msg "Search style remains unchanged"))) | |
18839 | 3530 (princ msg t))) |
3531 | |
19078 | 3532 (defun viper-set-searchstyle-toggling-macros (unset) |
18129 | 3533 "Set the macros for toggling the search style in Viper's vi-state. |
3534 The macro that toggles case sensitivity is bound to `//', and the one that | |
3535 toggles regexp search is bound to `///'. | |
3536 With a prefix argument, this function unsets the macros. " | |
3537 (interactive "P") | |
3538 (or noninteractive | |
3539 (if (not unset) | |
3540 (progn | |
3541 ;; toggle case sensitivity in search | |
19078 | 3542 (viper-record-kbd-macro |
18129 | 3543 "//" 'vi-state |
19078 | 3544 [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 | 3545 't) |
3546 ;; toggle regexp/vanila search | |
19078 | 3547 (viper-record-kbd-macro |
18129 | 3548 "///" 'vi-state |
19078 | 3549 [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 | 3550 't) |
3551 (if (interactive-p) | |
3552 (message | |
18839 | 3553 "// and /// now toggle case-sensitivity and regexp search"))) |
19078 | 3554 (viper-unrecord-kbd-macro "//" 'vi-state) |
18129 | 3555 (sit-for 2) |
19078 | 3556 (viper-unrecord-kbd-macro "///" 'vi-state)))) |
3557 | |
3558 | |
3559 (defun viper-set-parsing-style-toggling-macro (unset) | |
18839 | 3560 "Set `%%%' to be a macro that toggles whether comment fields should be parsed for matching parentheses. |
3561 This is used in conjunction with the `%' command. | |
3562 | |
3563 With a prefix argument, unsets the macro." | |
3564 (interactive "P") | |
3565 (or noninteractive | |
3566 (if (not unset) | |
3567 (progn | |
3568 ;; Make %%% toggle parsing comments for matching parentheses | |
19078 | 3569 (viper-record-kbd-macro |
18839 | 3570 "%%%" 'vi-state |
19078 | 3571 [(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 | 3572 't) |
3573 (if (interactive-p) | |
3574 (message | |
3575 "%%%%%% now toggles whether comments should be parsed for matching parentheses"))) | |
19078 | 3576 (viper-unrecord-kbd-macro "%%%" 'vi-state)))) |
3577 | |
3578 | |
3579 (defun viper-set-emacs-state-searchstyle-macros (unset &optional arg-majormode) | |
18129 | 3580 "Set the macros for toggling the search style in Viper's emacs-state. |
3581 The macro that toggles case sensitivity is bound to `//', and the one that | |
3582 toggles regexp search is bound to `///'. | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3583 With a prefix argument, this function unsets the macros. |
18129 | 3584 If the optional prefix argument is non-nil and specifies a valid major mode, |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3585 this sets the macros only in the macros in that major mode. Otherwise, |
18129 | 3586 the macros are set in the current major mode. |
3587 \(When unsetting the macros, the second argument has no effect.\)" | |
3588 (interactive "P") | |
3589 (or noninteractive | |
3590 (if (not unset) | |
3591 (progn | |
3592 ;; toggle case sensitivity in search | |
19078 | 3593 (viper-record-kbd-macro |
18129 | 3594 "//" 'emacs-state |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3595 [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 | 3596 (or arg-majormode major-mode)) |
3597 ;; toggle regexp/vanila search | |
19078 | 3598 (viper-record-kbd-macro |
18129 | 3599 "///" 'emacs-state |
19078 | 3600 [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 | 3601 (or arg-majormode major-mode)) |
3602 (if (interactive-p) | |
3603 (message | |
3604 "// and /// now toggle case-sensitivity and regexp search."))) | |
19078 | 3605 (viper-unrecord-kbd-macro "//" 'emacs-state) |
18129 | 3606 (sit-for 2) |
19078 | 3607 (viper-unrecord-kbd-macro "///" 'emacs-state)))) |
3608 | |
3609 | |
3610 (defun viper-search-forward (arg) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3611 "Search a string forward. |
18129 | 3612 ARG is used to find the ARG's occurrence of the string. |
3613 Null string will repeat previous search." | |
3614 (interactive "P") | |
19078 | 3615 (let ((val (viper-P-val arg)) |
3616 (com (viper-getcom arg)) | |
3617 (old-str viper-s-string)) | |
3618 (setq viper-s-forward t) | |
3619 (viper-if-string "/") | |
18129 | 3620 ;; this is not used at present, but may be used later |
19078 | 3621 (if (or (not (equal old-str viper-s-string)) |
3622 (not (markerp viper-local-search-start-marker)) | |
3623 (not (marker-buffer viper-local-search-start-marker))) | |
3624 (setq viper-local-search-start-marker (point-marker))) | |
3625 (viper-search viper-s-string t val) | |
18129 | 3626 (if com |
3627 (progn | |
19078 | 3628 (viper-move-marker-locally 'viper-com-point (mark t)) |
3629 (viper-execute-com 'viper-search-next val com))))) | |
3630 | |
3631 (defun viper-search-backward (arg) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3632 "Search a string backward. |
18129 | 3633 ARG is used to find the ARG's occurrence of the string. |
3634 Null string will repeat previous search." | |
3635 (interactive "P") | |
19078 | 3636 (let ((val (viper-P-val arg)) |
3637 (com (viper-getcom arg)) | |
3638 (old-str viper-s-string)) | |
3639 (setq viper-s-forward nil) | |
3640 (viper-if-string "?") | |
18129 | 3641 ;; this is not used at present, but may be used later |
19078 | 3642 (if (or (not (equal old-str viper-s-string)) |
3643 (not (markerp viper-local-search-start-marker)) | |
3644 (not (marker-buffer viper-local-search-start-marker))) | |
3645 (setq viper-local-search-start-marker (point-marker))) | |
3646 (viper-search viper-s-string nil val) | |
18129 | 3647 (if com |
3648 (progn | |
19078 | 3649 (viper-move-marker-locally 'viper-com-point (mark t)) |
3650 (viper-execute-com 'viper-search-next val com))))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3651 |
18129 | 3652 |
3653 ;; Search for COUNT's occurrence of STRING. | |
3654 ;; Search is forward if FORWARD is non-nil, otherwise backward. | |
3655 ;; INIT-POINT is the position where search is to start. | |
3656 ;; Arguments: | |
3657 ;; (STRING FORW COUNT &optional NO-OFFSET INIT-POINT LIMIT FAIL-IF-NOT-FOUND) | |
19078 | 3658 (defun viper-search (string forward arg |
3659 &optional no-offset init-point fail-if-not-found) | |
18129 | 3660 (if (not (equal string "")) |
19078 | 3661 (let ((val (viper-p-val arg)) |
3662 (com (viper-getcom arg)) | |
18129 | 3663 (offset (not no-offset)) |
19078 | 3664 (case-fold-search viper-case-fold-search) |
18129 | 3665 (start-point (or init-point (point)))) |
19078 | 3666 (viper-deactivate-mark) |
18129 | 3667 (if forward |
3668 (condition-case nil | |
3669 (progn | |
19078 | 3670 (if offset (viper-forward-char-carefully)) |
3671 (if viper-re-search | |
18129 | 3672 (progn |
3673 (re-search-forward string nil nil val) | |
3674 (re-search-backward string)) | |
3675 (search-forward string nil nil val) | |
3676 (search-backward string)) | |
3677 (if (not (equal start-point (point))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3678 (push-mark start-point t))) |
18129 | 3679 (search-failed |
19078 | 3680 (if (and (not fail-if-not-found) viper-search-wrap-around-t) |
18129 | 3681 (progn |
3682 (message "Search wrapped around BOTTOM of buffer") | |
3683 (goto-char (point-min)) | |
19078 | 3684 (viper-search string forward (cons 1 com) t start-point 'fail) |
18129 | 3685 ;; don't wait in macros |
19078 | 3686 (or executing-kbd-macro |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3687 (memq viper-intermediate-command |
19078 | 3688 '(viper-repeat |
3689 viper-digit-argument | |
3690 viper-command-argument)) | |
3691 (sit-for 2)) | |
18129 | 3692 ;; delete the wrap-around message |
3693 (message "") | |
3694 ) | |
3695 (goto-char start-point) | |
3696 (error "`%s': %s not found" | |
3697 string | |
19078 | 3698 (if viper-re-search "Pattern" "String")) |
18129 | 3699 ))) |
3700 ;; backward | |
3701 (condition-case nil | |
3702 (progn | |
19078 | 3703 (if viper-re-search |
18129 | 3704 (re-search-backward string nil nil val) |
3705 (search-backward string nil nil val)) | |
3706 (if (not (equal start-point (point))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3707 (push-mark start-point t))) |
18129 | 3708 (search-failed |
19078 | 3709 (if (and (not fail-if-not-found) viper-search-wrap-around-t) |
18129 | 3710 (progn |
3711 (message "Search wrapped around TOP of buffer") | |
3712 (goto-char (point-max)) | |
19078 | 3713 (viper-search string forward (cons 1 com) t start-point 'fail) |
18129 | 3714 ;; don't wait in macros |
19078 | 3715 (or executing-kbd-macro |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3716 (memq viper-intermediate-command |
19078 | 3717 '(viper-repeat |
3718 viper-digit-argument | |
3719 viper-command-argument)) | |
3720 (sit-for 2)) | |
18129 | 3721 ;; delete the wrap-around message |
3722 (message "") | |
3723 ) | |
3724 (goto-char start-point) | |
3725 (error "`%s': %s not found" | |
3726 string | |
19078 | 3727 (if viper-re-search "Pattern" "String")) |
18129 | 3728 )))) |
3729 ;; pull up or down if at top/bottom of window | |
19078 | 3730 (viper-adjust-window) |
18129 | 3731 ;; highlight the result of search |
3732 ;; don't wait and don't highlight in macros | |
3733 (or executing-kbd-macro | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3734 (memq viper-intermediate-command |
19078 | 3735 '(viper-repeat viper-digit-argument viper-command-argument)) |
3736 (viper-flash-search-pattern)) | |
18129 | 3737 ))) |
3738 | |
19078 | 3739 (defun viper-search-next (arg) |
18129 | 3740 "Repeat previous search." |
3741 (interactive "P") | |
19078 | 3742 (let ((val (viper-p-val arg)) |
3743 (com (viper-getcom arg))) | |
3744 (if (null viper-s-string) (error viper-NoPrevSearch)) | |
3745 (viper-search viper-s-string viper-s-forward arg) | |
18129 | 3746 (if com |
3747 (progn | |
19078 | 3748 (viper-move-marker-locally 'viper-com-point (mark t)) |
3749 (viper-execute-com 'viper-search-next val com))))) | |
3750 | |
3751 (defun viper-search-Next (arg) | |
18129 | 3752 "Repeat previous search in the reverse direction." |
3753 (interactive "P") | |
19078 | 3754 (let ((val (viper-p-val arg)) |
3755 (com (viper-getcom arg))) | |
3756 (if (null viper-s-string) (error viper-NoPrevSearch)) | |
3757 (viper-search viper-s-string (not viper-s-forward) arg) | |
18129 | 3758 (if com |
3759 (progn | |
19078 | 3760 (viper-move-marker-locally 'viper-com-point (mark t)) |
3761 (viper-execute-com 'viper-search-Next val com))))) | |
18129 | 3762 |
3763 | |
3764 ;; Search contents of buffer defined by one of Viper's motion commands. | |
3765 ;; Repeatable via `n' and `N'. | |
19078 | 3766 (defun viper-buffer-search-enable (&optional c) |
3767 (cond (c (setq viper-buffer-search-char c)) | |
3768 ((null viper-buffer-search-char) | |
3769 (setq viper-buffer-search-char ?g))) | |
3770 (define-key viper-vi-basic-map | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3771 (cond ((viper-characterp viper-buffer-search-char) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3772 (char-to-string viper-buffer-search-char)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3773 (t (error "viper-buffer-search-char: wrong value type, %s" |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3774 viper-buffer-search-char))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3775 'viper-command-argument) |
19078 | 3776 (aset viper-exec-array viper-buffer-search-char 'viper-exec-buffer-search) |
3777 (setq viper-prefix-commands | |
3778 (cons viper-buffer-search-char viper-prefix-commands))) | |
18129 | 3779 |
3780 ;; This is a Viper wraper for isearch-forward. | |
19078 | 3781 (defun viper-isearch-forward (arg) |
18129 | 3782 "Do incremental search forward." |
3783 (interactive "P") | |
3784 ;; emacs bug workaround | |
3785 (if (listp arg) (setq arg (car arg))) | |
19078 | 3786 (viper-exec-form-in-emacs (list 'isearch-forward arg))) |
18129 | 3787 |
3788 ;; This is a Viper wraper for isearch-backward." | |
19078 | 3789 (defun viper-isearch-backward (arg) |
18129 | 3790 "Do incremental search backward." |
3791 (interactive "P") | |
3792 ;; emacs bug workaround | |
3793 (if (listp arg) (setq arg (car arg))) | |
19078 | 3794 (viper-exec-form-in-emacs (list 'isearch-backward arg))) |
18129 | 3795 |
3796 | |
3797 ;; visiting and killing files, buffers | |
3798 | |
19078 | 3799 (defun viper-switch-to-buffer () |
18129 | 3800 "Switch to buffer in the current window." |
3801 (interactive) | |
22283
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
3802 (let ((other-buffer (other-buffer (current-buffer))) |
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
3803 buffer) |
18129 | 3804 (setq buffer |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3805 (funcall viper-read-buffer-function |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3806 "Switch to buffer in this window: " other-buffer)) |
22283
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
3807 (switch-to-buffer buffer))) |
18129 | 3808 |
19078 | 3809 (defun viper-switch-to-buffer-other-window () |
18129 | 3810 "Switch to buffer in another window." |
3811 (interactive) | |
22283
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
3812 (let ((other-buffer (other-buffer (current-buffer))) |
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
3813 buffer) |
18129 | 3814 (setq buffer |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3815 (funcall viper-read-buffer-function |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3816 "Switch to buffer in another window: " other-buffer)) |
22283
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
3817 (switch-to-buffer-other-window buffer))) |
18129 | 3818 |
19078 | 3819 (defun viper-kill-buffer () |
18129 | 3820 "Kill a buffer." |
3821 (interactive) | |
3822 (let (buffer buffer-name) | |
3823 (setq buffer-name | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3824 (funcall viper-read-buffer-function |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3825 (format "Kill buffer \(%s\): " |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3826 (buffer-name (current-buffer))))) |
18129 | 3827 (setq buffer |
3828 (if (null buffer-name) | |
3829 (current-buffer) | |
3830 (get-buffer buffer-name))) | |
3831 (if (null buffer) (error "`%s': No such buffer" buffer-name)) | |
3832 (if (or (not (buffer-modified-p buffer)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3833 (y-or-n-p |
18129 | 3834 (format |
3835 "Buffer `%s' is modified, are you sure you want to kill it? " | |
3836 buffer-name))) | |
3837 (kill-buffer buffer) | |
3838 (error "Buffer not killed")))) | |
3839 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3840 |
18129 | 3841 |
3842 ;; yank and pop | |
3843 | |
19078 | 3844 (defsubst viper-yank (text) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3845 "Yank TEXT silently. This works correctly with Emacs's yank-pop command." |
18129 | 3846 (insert text) |
3847 (setq this-command 'yank)) | |
3848 | |
19078 | 3849 (defun viper-put-back (arg) |
18129 | 3850 "Put back after point/below line." |
3851 (interactive "P") | |
19078 | 3852 (let ((val (viper-p-val arg)) |
3853 (text (if viper-use-register | |
3854 (cond ((viper-valid-register viper-use-register '(digit)) | |
3855 (current-kill | |
3856 (- viper-use-register ?1) 'do-not-rotate)) | |
3857 ((viper-valid-register viper-use-register) | |
3858 (get-register (downcase viper-use-register))) | |
3859 (t (error viper-InvalidRegister viper-use-register))) | |
21940 | 3860 (current-kill 0))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3861 sv-point chars-inserted lines-inserted) |
18129 | 3862 (if (null text) |
19078 | 3863 (if viper-use-register |
3864 (let ((reg viper-use-register)) | |
3865 (setq viper-use-register nil) | |
3866 (error viper-EmptyRegister reg)) | |
18129 | 3867 (error ""))) |
19078 | 3868 (setq viper-use-register nil) |
3869 (if (viper-end-with-a-newline-p text) | |
18129 | 3870 (progn |
3871 (end-of-line) | |
3872 (if (eobp) | |
3873 (insert "\n") | |
3874 (forward-line 1)) | |
3875 (beginning-of-line)) | |
19078 | 3876 (if (not (eolp)) (viper-forward-char-carefully))) |
3877 (set-marker (viper-mark-marker) (point) (current-buffer)) | |
3878 (viper-set-destructive-command | |
3879 (list 'viper-put-back val nil viper-use-register nil nil)) | |
21940 | 3880 (setq sv-point (point)) |
3881 (viper-loop val (viper-yank text)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3882 (setq chars-inserted (abs (- (point) sv-point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3883 lines-inserted (abs (count-lines (point) sv-point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3884 (if (or (> chars-inserted viper-change-notification-threshold) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3885 (> lines-inserted viper-change-notification-threshold)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3886 (message "Inserted %d character(s), %d line(s)" |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3887 chars-inserted lines-inserted))) |
18129 | 3888 ;; Vi puts cursor on the last char when the yanked text doesn't contain a |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3889 ;; newline; it leaves the cursor at the beginning when the text contains |
18129 | 3890 ;; a newline |
19078 | 3891 (if (viper-same-line (point) (mark)) |
3892 (or (= (point) (mark)) (viper-backward-char-carefully)) | |
18129 | 3893 (exchange-point-and-mark) |
3894 (if (bolp) | |
3895 (back-to-indentation))) | |
19078 | 3896 (viper-deactivate-mark)) |
3897 | |
3898 (defun viper-Put-back (arg) | |
18129 | 3899 "Put back at point/above line." |
3900 (interactive "P") | |
19078 | 3901 (let ((val (viper-p-val arg)) |
3902 (text (if viper-use-register | |
3903 (cond ((viper-valid-register viper-use-register '(digit)) | |
3904 (current-kill | |
3905 (- viper-use-register ?1) 'do-not-rotate)) | |
3906 ((viper-valid-register viper-use-register) | |
3907 (get-register (downcase viper-use-register))) | |
3908 (t (error viper-InvalidRegister viper-use-register))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3909 (current-kill 0))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3910 sv-point chars-inserted lines-inserted) |
18129 | 3911 (if (null text) |
19078 | 3912 (if viper-use-register |
3913 (let ((reg viper-use-register)) | |
3914 (setq viper-use-register nil) | |
3915 (error viper-EmptyRegister reg)) | |
18129 | 3916 (error ""))) |
19078 | 3917 (setq viper-use-register nil) |
3918 (if (viper-end-with-a-newline-p text) (beginning-of-line)) | |
3919 (viper-set-destructive-command | |
3920 (list 'viper-Put-back val nil viper-use-register nil nil)) | |
3921 (set-marker (viper-mark-marker) (point) (current-buffer)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3922 (setq sv-point (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3923 (viper-loop val (viper-yank text)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3924 (setq chars-inserted (abs (- (point) sv-point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3925 lines-inserted (abs (count-lines (point) sv-point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3926 (if (or (> chars-inserted viper-change-notification-threshold) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3927 (> lines-inserted viper-change-notification-threshold)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3928 (message "Inserted %d character(s), %d line(s)" |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3929 chars-inserted lines-inserted))) |
18129 | 3930 ;; Vi puts cursor on the last char when the yanked text doesn't contain a |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3931 ;; newline; it leaves the cursor at the beginning when the text contains |
18129 | 3932 ;; a newline |
19078 | 3933 (if (viper-same-line (point) (mark)) |
3934 (or (= (point) (mark)) (viper-backward-char-carefully)) | |
18129 | 3935 (exchange-point-and-mark) |
3936 (if (bolp) | |
3937 (back-to-indentation))) | |
19078 | 3938 (viper-deactivate-mark)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3939 |
18129 | 3940 |
3941 ;; Copy region to kill-ring. | |
3942 ;; If BEG and END do not belong to the same buffer, copy empty region. | |
19078 | 3943 (defun viper-copy-region-as-kill (beg end) |
18129 | 3944 (condition-case nil |
3945 (copy-region-as-kill beg end) | |
3946 (error (copy-region-as-kill beg beg)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3947 |
18129 | 3948 |
19078 | 3949 (defun viper-delete-char (arg) |
19462 | 3950 "Delete next character." |
18129 | 3951 (interactive "P") |
19462 | 3952 (let ((val (viper-p-val arg)) |
3953 end-del-pos) | |
19078 | 3954 (viper-set-destructive-command |
3955 (list 'viper-delete-char val nil nil nil nil)) | |
19462 | 3956 (if (and viper-ex-style-editing |
3957 (> val (viper-chars-in-region (point) (viper-line-pos 'end)))) | |
3958 (setq val (viper-chars-in-region (point) (viper-line-pos 'end)))) | |
19078 | 3959 (if (and viper-ex-style-motion (eolp)) |
18129 | 3960 (if (bolp) (error "") (setq val 0))) ; not bol---simply back 1 ch |
19462 | 3961 (save-excursion |
3962 (viper-forward-char-carefully val) | |
3963 (setq end-del-pos (point))) | |
19078 | 3964 (if viper-use-register |
18129 | 3965 (progn |
19078 | 3966 (cond ((viper-valid-register viper-use-register '((Letter))) |
3967 (viper-append-to-register | |
19462 | 3968 (downcase viper-use-register) (point) end-del-pos)) |
19078 | 3969 ((viper-valid-register viper-use-register) |
18129 | 3970 (copy-to-register |
19462 | 3971 viper-use-register (point) end-del-pos nil)) |
19078 | 3972 (t (error viper-InvalidRegister viper-use-register))) |
3973 (setq viper-use-register nil))) | |
19462 | 3974 |
3975 (delete-char val t) | |
19078 | 3976 (if viper-ex-style-motion |
19462 | 3977 (if (and (eolp) (not (bolp))) (backward-char 1))) |
3978 )) | |
18129 | 3979 |
19078 | 3980 (defun viper-delete-backward-char (arg) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3981 "Delete previous character. On reaching beginning of line, stop and beep." |
18129 | 3982 (interactive "P") |
19462 | 3983 (let ((val (viper-p-val arg)) |
3984 end-del-pos) | |
19078 | 3985 (viper-set-destructive-command |
3986 (list 'viper-delete-backward-char val nil nil nil nil)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3987 (if (and |
19462 | 3988 viper-ex-style-editing |
3989 (> val (viper-chars-in-region (viper-line-pos 'start) (point)))) | |
3990 (setq val (viper-chars-in-region (viper-line-pos 'start) (point)))) | |
3991 (save-excursion | |
3992 (viper-backward-char-carefully val) | |
3993 (setq end-del-pos (point))) | |
19078 | 3994 (if viper-use-register |
18129 | 3995 (progn |
19078 | 3996 (cond ((viper-valid-register viper-use-register '(Letter)) |
3997 (viper-append-to-register | |
19462 | 3998 (downcase viper-use-register) end-del-pos (point))) |
19078 | 3999 ((viper-valid-register viper-use-register) |
18129 | 4000 (copy-to-register |
19462 | 4001 viper-use-register end-del-pos (point) nil)) |
19078 | 4002 (t (error viper-InvalidRegister viper-use-register))) |
4003 (setq viper-use-register nil))) | |
19462 | 4004 (if (and (bolp) viper-ex-style-editing) |
4005 (ding)) | |
4006 (delete-backward-char val t))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4007 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
4008 |
19078 | 4009 (defun viper-del-backward-char-in-insert () |
18129 | 4010 "Delete 1 char backwards while in insert mode." |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4011 (interactive) |
19462 | 4012 (if (and viper-ex-style-editing (bolp)) |
18129 | 4013 (beep 1) |
4014 (delete-backward-char 1 t))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4015 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
4016 |
19078 | 4017 (defun viper-del-backward-char-in-replace () |
18129 | 4018 "Delete one character in replace mode. |
19078 | 4019 If `viper-delete-backwards-in-replace' is t, then DEL key actually deletes |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4020 charecters. If it is nil, then the cursor just moves backwards, similarly |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4021 to Vi. The variable `viper-ex-style-editing', if t, doesn't let the |
18129 | 4022 cursor move past the beginning of line." |
4023 (interactive) | |
19078 | 4024 (cond (viper-delete-backwards-in-replace |
18129 | 4025 (cond ((not (bolp)) |
4026 (delete-backward-char 1 t)) | |
19462 | 4027 (viper-ex-style-editing |
18129 | 4028 (beep 1)) |
4029 ((bobp) | |
4030 (beep 1)) | |
4031 (t | |
4032 (delete-backward-char 1 t)))) | |
19462 | 4033 (viper-ex-style-editing |
18129 | 4034 (if (bolp) |
4035 (beep 1) | |
4036 (backward-char 1))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4037 (t |
18129 | 4038 (backward-char 1)))) |
4039 | |
4040 | |
4041 | |
4042 ;; join lines. | |
4043 | |
19078 | 4044 (defun viper-join-lines (arg) |
18129 | 4045 "Join this line to next, if ARG is nil. Otherwise, join ARG lines." |
4046 (interactive "*P") | |
19078 | 4047 (let ((val (viper-P-val arg))) |
4048 (viper-set-destructive-command | |
4049 (list 'viper-join-lines val nil nil nil nil)) | |
4050 (viper-loop (if (null val) 1 (1- val)) | |
18129 | 4051 (end-of-line) |
4052 (if (not (eobp)) | |
4053 (progn | |
4054 (forward-line 1) | |
4055 (delete-region (point) (1- (point))) | |
18839 | 4056 (fixup-whitespace) |
4057 ;; fixup-whitespace sometimes does not leave space | |
4058 ;; between objects, so we insert it as in Vi | |
4059 (or (looking-at " ") | |
4060 (insert " ") | |
4061 (backward-char 1)) | |
19462 | 4062 ))))) |
18129 | 4063 |
4064 | |
4065 ;; Replace state | |
4066 | |
19078 | 4067 (defun viper-change (beg end) |
18129 | 4068 (if (markerp beg) (setq beg (marker-position beg))) |
4069 (if (markerp end) (setq end (marker-position end))) | |
4070 ;; beg is sometimes (mark t), which may be nil | |
4071 (or beg (setq beg end)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4072 |
19078 | 4073 (viper-set-complex-command-for-undo) |
4074 (if viper-use-register | |
18129 | 4075 (progn |
19078 | 4076 (copy-to-register viper-use-register beg end nil) |
4077 (setq viper-use-register nil))) | |
4078 (viper-set-replace-overlay beg end) | |
18129 | 4079 (setq last-command nil) ; separate repl text from prev kills |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4080 |
19078 | 4081 (if (= (viper-replace-start) (point-max)) |
18129 | 4082 (error "End of buffer")) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4083 |
19078 | 4084 (setq viper-last-replace-region |
4085 (buffer-substring (viper-replace-start) | |
4086 (viper-replace-end))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4087 |
18129 | 4088 ;; protect against error while inserting "@" and other disasters |
4089 ;; (e.g., read-only buff) | |
4090 (condition-case conds | |
19078 | 4091 (if (or viper-allow-multiline-replace-regions |
4092 (viper-same-line (viper-replace-start) | |
19203 | 4093 (viper-replace-end))) |
18129 | 4094 (progn |
4095 ;; tabs cause problems in replace, so untabify | |
19078 | 4096 (goto-char (viper-replace-end)) |
18129 | 4097 (insert-before-markers "@") ; put placeholder after the TAB |
19078 | 4098 (untabify (viper-replace-start) (point)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4099 ;; del @, don't put on kill ring |
18129 | 4100 (delete-backward-char 1) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4101 |
19078 | 4102 (viper-set-replace-overlay-glyphs |
4103 viper-replace-region-start-delimiter | |
4104 viper-replace-region-end-delimiter) | |
18129 | 4105 ;; this move takes care of the last posn in the overlay, which |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4106 ;; has to be shifted because of insert. We can't simply insert |
18129 | 4107 ;; "$" before-markers because then overlay-start will shift the |
4108 ;; beginning of the overlay in case we are replacing a single | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4109 ;; character. This fixes the bug with `s' and `cl' commands. |
19078 | 4110 (viper-move-replace-overlay (viper-replace-start) (point)) |
4111 (goto-char (viper-replace-start)) | |
4112 (viper-change-state-to-replace t)) | |
4113 (kill-region (viper-replace-start) | |
4114 (viper-replace-end)) | |
4115 (viper-hide-replace-overlay) | |
4116 (viper-change-state-to-insert)) | |
18129 | 4117 (error ;; make sure that the overlay doesn't stay. |
4118 ;; go back to the original point | |
19078 | 4119 (goto-char (viper-replace-start)) |
4120 (viper-hide-replace-overlay) | |
4121 (viper-message-conditions conds)))) | |
4122 | |
4123 | |
4124 (defun viper-change-subr (beg end) | |
18129 | 4125 ;; beg is sometimes (mark t), which may be nil |
4126 (or beg (setq beg end)) | |
19078 | 4127 (if viper-use-register |
18129 | 4128 (progn |
19078 | 4129 (copy-to-register viper-use-register beg end nil) |
4130 (setq viper-use-register nil))) | |
18129 | 4131 (kill-region beg end) |
19078 | 4132 (setq this-command 'viper-change) |
4133 (viper-yank-last-insertion)) | |
4134 | |
4135 (defun viper-toggle-case (arg) | |
18129 | 4136 "Toggle character case." |
4137 (interactive "P") | |
19078 | 4138 (let ((val (viper-p-val arg)) (c)) |
4139 (viper-set-destructive-command | |
4140 (list 'viper-toggle-case val nil nil nil nil)) | |
18129 | 4141 (while (> val 0) |
4142 (setq c (following-char)) | |
4143 (delete-char 1 nil) | |
4144 (if (eq c (upcase c)) | |
4145 (insert-char (downcase c) 1) | |
4146 (insert-char (upcase c) 1)) | |
4147 (if (eolp) (backward-char 1)) | |
4148 (setq val (1- val))))) | |
4149 | |
4150 | |
4151 ;; query replace | |
4152 | |
19078 | 4153 (defun viper-query-replace () |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4154 "Query replace. |
18129 | 4155 If a null string is suplied as the string to be replaced, |
4156 the query replace mode will toggle between string replace | |
4157 and regexp replace." | |
4158 (interactive) | |
4159 (let (str) | |
19078 | 4160 (setq str (viper-read-string-with-history |
4161 (if viper-re-query-replace "Query replace regexp: " | |
18129 | 4162 "Query replace: ") |
4163 nil ; no initial | |
19078 | 4164 'viper-replace1-history |
4165 (car viper-replace1-history) ; default | |
18129 | 4166 )) |
4167 (if (string= str "") | |
4168 (progn | |
19078 | 4169 (setq viper-re-query-replace (not viper-re-query-replace)) |
18129 | 4170 (message "Query replace mode changed to %s" |
19078 | 4171 (if viper-re-query-replace "regexp replace" |
18129 | 4172 "string replace"))) |
19078 | 4173 (if viper-re-query-replace |
18129 | 4174 (query-replace-regexp |
4175 str | |
19078 | 4176 (viper-read-string-with-history |
18129 | 4177 (format "Query replace regexp `%s' with: " str) |
4178 nil ; no initial | |
19078 | 4179 'viper-replace1-history |
4180 (car viper-replace1-history) ; default | |
18129 | 4181 )) |
4182 (query-replace | |
4183 str | |
19078 | 4184 (viper-read-string-with-history |
18129 | 4185 (format "Query replace `%s' with: " str) |
4186 nil ; no initial | |
19078 | 4187 'viper-replace1-history |
4188 (car viper-replace1-history) ; default | |
18129 | 4189 )))))) |
4190 | |
4191 | |
4192 ;; marking | |
4193 | |
19078 | 4194 (defun viper-mark-beginning-of-buffer () |
18129 | 4195 "Mark beginning of buffer." |
4196 (interactive) | |
4197 (push-mark (point)) | |
4198 (goto-char (point-min)) | |
4199 (exchange-point-and-mark) | |
4200 (message "Mark set at the beginning of buffer")) | |
4201 | |
19078 | 4202 (defun viper-mark-end-of-buffer () |
18129 | 4203 "Mark end of buffer." |
4204 (interactive) | |
4205 (push-mark (point)) | |
4206 (goto-char (point-max)) | |
4207 (exchange-point-and-mark) | |
4208 (message "Mark set at the end of buffer")) | |
4209 | |
19078 | 4210 (defun viper-mark-point () |
18129 | 4211 "Set mark at point of buffer." |
4212 (interactive) | |
4213 (let ((char (read-char))) | |
4214 (cond ((and (<= ?a char) (<= char ?z)) | |
4215 (point-to-register (1+ (- char ?a)))) | |
19078 | 4216 ((= char ?<) (viper-mark-beginning-of-buffer)) |
4217 ((= char ?>) (viper-mark-end-of-buffer)) | |
4218 ((= char ?.) (viper-set-mark-if-necessary)) | |
4219 ((= char ?,) (viper-cycle-through-mark-ring)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4220 ((= char ?^) (push-mark viper-saved-mark t t)) |
18129 | 4221 ((= char ?D) (mark-defun)) |
4222 (t (error "")) | |
4223 ))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4224 |
18129 | 4225 ;; Algorithm: If first invocation of this command save mark on ring, goto |
4226 ;; mark, M0, and pop the most recent elt from the mark ring into mark, | |
4227 ;; making it into the new mark, M1. | |
4228 ;; Push this mark back and set mark to the original point position, p1. | |
4229 ;; So, if you hit '' or `` then you can return to p1. | |
4230 ;; | |
4231 ;; If repeated command, pop top elt from the ring into mark and | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4232 ;; jump there. This forgets the position, p1, and puts M1 back into mark. |
18129 | 4233 ;; Then we save the current pos, which is M0, jump to M1 and pop M2 from |
4234 ;; the ring into mark. Push M2 back on the ring and set mark to M0. | |
4235 ;; etc. | |
19078 | 4236 (defun viper-cycle-through-mark-ring () |
18129 | 4237 "Visit previous locations on the mark ring. |
4238 One can use `` and '' to temporarily jump 1 step back." | |
4239 (let* ((sv-pt (point))) | |
4240 ;; if repeated `m,' command, pop the previously saved mark. | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4241 ;; Prev saved mark is actually prev saved point. It is used if the |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4242 ;; user types `` or '' and is discarded |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4243 ;; from the mark ring by the next `m,' command. |
18129 | 4244 ;; In any case, go to the previous or previously saved mark. |
4245 ;; Then push the current mark (popped off the ring) and set current | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4246 ;; point to be the mark. Current pt as mark is discarded by the next |
18129 | 4247 ;; m, command. |
19078 | 4248 (if (eq last-command 'viper-cycle-through-mark-ring) |
18129 | 4249 () |
4250 ;; save current mark if the first iteration | |
19078 | 4251 (setq mark-ring (delete (viper-mark-marker) mark-ring)) |
18129 | 4252 (if (mark t) |
4253 (push-mark (mark t) t)) ) | |
4254 (pop-mark) | |
4255 (set-mark-command 1) | |
4256 ;; don't duplicate mark on the ring | |
19078 | 4257 (setq mark-ring (delete (viper-mark-marker) mark-ring)) |
18129 | 4258 (push-mark sv-pt t) |
19078 | 4259 (viper-deactivate-mark) |
4260 (setq this-command 'viper-cycle-through-mark-ring) | |
18129 | 4261 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4262 |
18129 | 4263 |
19078 | 4264 (defun viper-goto-mark (arg) |
18129 | 4265 "Go to mark." |
4266 (interactive "P") | |
4267 (let ((char (read-char)) | |
19078 | 4268 (com (viper-getcom arg))) |
4269 (viper-goto-mark-subr char com nil))) | |
4270 | |
4271 (defun viper-goto-mark-and-skip-white (arg) | |
18129 | 4272 "Go to mark and skip to first non-white character on line." |
4273 (interactive "P") | |
4274 (let ((char (read-char)) | |
19078 | 4275 (com (viper-getCom arg))) |
4276 (viper-goto-mark-subr char com t))) | |
4277 | |
4278 (defun viper-goto-mark-subr (char com skip-white) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4279 (if (eobp) |
18129 | 4280 (if (bobp) |
4281 (error "Empty buffer") | |
4282 (backward-char 1))) | |
19078 | 4283 (cond ((viper-valid-register char '(letter)) |
18129 | 4284 (let* ((buff (current-buffer)) |
4285 (reg (1+ (- char ?a))) | |
4286 (text-marker (get-register reg))) | |
19078 | 4287 (if com (viper-move-marker-locally 'viper-com-point (point))) |
4288 (if (not (viper-valid-marker text-marker)) | |
4289 (error viper-EmptyTextmarker char)) | |
4290 (if (and (viper-same-line (point) viper-last-jump) | |
4291 (= (point) viper-last-jump-ignore)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4292 (push-mark viper-last-jump t) |
18129 | 4293 (push-mark nil t)) ; no msg |
19078 | 4294 (viper-register-to-point reg) |
4295 (setq viper-last-jump (point-marker)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4296 (cond (skip-white |
18129 | 4297 (back-to-indentation) |
19078 | 4298 (setq viper-last-jump-ignore (point)))) |
18129 | 4299 (if com |
4300 (if (equal buff (current-buffer)) | |
19078 | 4301 (viper-execute-com (if skip-white |
4302 'viper-goto-mark-and-skip-white | |
4303 'viper-goto-mark) | |
18129 | 4304 nil com) |
4305 (switch-to-buffer buff) | |
19078 | 4306 (goto-char viper-com-point) |
4307 (viper-change-state-to-vi) | |
18129 | 4308 (error ""))))) |
4309 ((and (not skip-white) (= char ?`)) | |
19078 | 4310 (if com (viper-move-marker-locally 'viper-com-point (point))) |
4311 (if (and (viper-same-line (point) viper-last-jump) | |
4312 (= (point) viper-last-jump-ignore)) | |
4313 (goto-char viper-last-jump)) | |
18129 | 4314 (if (null (mark t)) (error "Mark is not set in this buffer")) |
4315 (if (= (point) (mark t)) (pop-mark)) | |
4316 (exchange-point-and-mark) | |
19078 | 4317 (setq viper-last-jump (point-marker) |
4318 viper-last-jump-ignore 0) | |
4319 (if com (viper-execute-com 'viper-goto-mark nil com))) | |
18129 | 4320 ((and skip-white (= char ?')) |
19078 | 4321 (if com (viper-move-marker-locally 'viper-com-point (point))) |
4322 (if (and (viper-same-line (point) viper-last-jump) | |
4323 (= (point) viper-last-jump-ignore)) | |
4324 (goto-char viper-last-jump)) | |
18129 | 4325 (if (= (point) (mark t)) (pop-mark)) |
4326 (exchange-point-and-mark) | |
19078 | 4327 (setq viper-last-jump (point)) |
18129 | 4328 (back-to-indentation) |
19078 | 4329 (setq viper-last-jump-ignore (point)) |
4330 (if com (viper-execute-com 'viper-goto-mark-and-skip-white nil com))) | |
4331 (t (error viper-InvalidTextmarker char)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4332 |
19078 | 4333 (defun viper-insert-tab () |
18129 | 4334 (interactive) |
4335 (insert-tab)) | |
4336 | |
19078 | 4337 (defun viper-exchange-point-and-mark () |
18129 | 4338 (interactive) |
4339 (exchange-point-and-mark) | |
4340 (back-to-indentation)) | |
4341 | |
4342 ;; Input Mode Indentation | |
4343 | |
4344 ;; Returns t, if the string before point matches the regexp STR. | |
19078 | 4345 (defsubst viper-looking-back (str) |
18129 | 4346 (and (save-excursion (re-search-backward str nil t)) |
4347 (= (point) (match-end 0)))) | |
4348 | |
4349 | |
19078 | 4350 (defun viper-forward-indent () |
18129 | 4351 "Indent forward -- `C-t' in Vi." |
4352 (interactive) | |
19078 | 4353 (setq viper-cted t) |
4354 (indent-to (+ (current-column) viper-shift-width))) | |
4355 | |
4356 (defun viper-backward-indent () | |
18129 | 4357 "Backtab, C-d in VI" |
4358 (interactive) | |
19078 | 4359 (if viper-cted |
18129 | 4360 (let ((p (point)) (c (current-column)) bol (indent t)) |
19078 | 4361 (if (viper-looking-back "[0^]") |
18129 | 4362 (progn |
4363 (if (eq ?^ (preceding-char)) | |
19078 | 4364 (setq viper-preserve-indent t)) |
18129 | 4365 (delete-backward-char 1) |
4366 (setq p (point)) | |
4367 (setq indent nil))) | |
4368 (save-excursion | |
4369 (beginning-of-line) | |
4370 (setq bol (point))) | |
4371 (if (re-search-backward "[^ \t]" bol 1) (forward-char)) | |
4372 (delete-region (point) p) | |
4373 (if indent | |
19078 | 4374 (indent-to (- c viper-shift-width))) |
4375 (if (or (bolp) (viper-looking-back "[^ \t]")) | |
4376 (setq viper-cted nil))))) | |
4377 | |
4378 (defun viper-autoindent () | |
18129 | 4379 "Auto Indentation, Vi-style." |
4380 (interactive) | |
4381 (let ((col (current-indentation))) | |
4382 (if abbrev-mode (expand-abbrev)) | |
19078 | 4383 (if viper-preserve-indent |
4384 (setq viper-preserve-indent nil) | |
4385 (setq viper-current-indent col)) | |
18129 | 4386 ;; don't leave whitespace lines around |
4387 (if (memq last-command | |
19078 | 4388 '(viper-autoindent |
4389 viper-open-line viper-Open-line | |
4390 viper-replace-state-exit-cmd)) | |
18129 | 4391 (indent-to-left-margin)) |
4392 ;; use \n instead of newline, or else <Return> will move the insert point | |
4393 ;;(newline 1) | |
4394 (insert "\n") | |
19078 | 4395 (if viper-auto-indent |
18129 | 4396 (progn |
19078 | 4397 (setq viper-cted t) |
4398 (if (and viper-electric-mode | |
4399 (not | |
4400 (memq major-mode '(fundamental-mode | |
4401 text-mode | |
4402 paragraph-indent-text-mode )))) | |
18129 | 4403 (indent-according-to-mode) |
19078 | 4404 (indent-to viper-current-indent)) |
18129 | 4405 )) |
4406 )) | |
4407 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4408 |
18129 | 4409 ;; Viewing registers |
4410 | |
19078 | 4411 (defun viper-ket-function (arg) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4412 "Function called by \], the ket. View registers and call \]\]." |
18129 | 4413 (interactive "P") |
4414 (let ((reg (read-char))) | |
19078 | 4415 (cond ((viper-valid-register reg '(letter Letter)) |
18129 | 4416 (view-register (downcase reg))) |
19078 | 4417 ((viper-valid-register reg '(digit)) |
18129 | 4418 (let ((text (current-kill (- reg ?1) 'do-not-rotate))) |
20003 | 4419 (with-output-to-temp-buffer " *viper-info*" |
4420 (princ (format "Register %c contains the string:\n" reg)) | |
4421 (princ text)) | |
4422 )) | |
18129 | 4423 ((= ?\] reg) |
19078 | 4424 (viper-next-heading arg)) |
18129 | 4425 (t (error |
19078 | 4426 viper-InvalidRegister reg))))) |
4427 | |
4428 (defun viper-brac-function (arg) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4429 "Function called by \[, the brac. View textmarkers and call \[\[" |
18129 | 4430 (interactive "P") |
4431 (let ((reg (read-char))) | |
4432 (cond ((= ?\[ reg) | |
19078 | 4433 (viper-prev-heading arg)) |
18129 | 4434 ((= ?\] reg) |
19078 | 4435 (viper-heading-end arg)) |
4436 ((viper-valid-register reg '(letter)) | |
18129 | 4437 (let* ((val (get-register (1+ (- reg ?a)))) |
20003 | 4438 (buf (if (not (markerp val)) |
19078 | 4439 (error viper-EmptyTextmarker reg) |
18129 | 4440 (marker-buffer val))) |
4441 (pos (marker-position val)) | |
4442 line-no text (s pos) (e pos)) | |
20003 | 4443 (with-output-to-temp-buffer " *viper-info*" |
18129 | 4444 (if (and buf pos) |
4445 (progn | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4446 (save-excursion |
18129 | 4447 (set-buffer buf) |
4448 (setq line-no (1+ (count-lines (point-min) val))) | |
4449 (goto-char pos) | |
4450 (beginning-of-line) | |
4451 (if (re-search-backward "[^ \t]" nil t) | |
4452 (progn | |
4453 (beginning-of-line) | |
4454 (setq s (point)))) | |
4455 (goto-char pos) | |
4456 (forward-line 1) | |
4457 (if (re-search-forward "[^ \t]" nil t) | |
4458 (progn | |
4459 (end-of-line) | |
4460 (setq e (point)))) | |
4461 (setq text (buffer-substring s e)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4462 (setq text (format "%s<%c>%s" |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4463 (substring text 0 (- pos s)) |
18129 | 4464 reg (substring text (- pos s))))) |
20003 | 4465 (princ |
18129 | 4466 (format |
4467 "Textmarker `%c' is in buffer `%s' at line %d.\n" | |
4468 reg (buffer-name buf) line-no)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4469 (princ (format "Here is some text around %c:\n\n %s" |
18129 | 4470 reg text))) |
20003 | 4471 (princ (format viper-EmptyTextmarker reg)))) |
4472 )) | |
19078 | 4473 (t (error viper-InvalidTextmarker reg))))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4474 |
18129 | 4475 |
4476 | |
4477 ;; commands in insertion mode | |
4478 | |
19078 | 4479 (defun viper-delete-backward-word (arg) |
18129 | 4480 "Delete previous word." |
4481 (interactive "p") | |
4482 (save-excursion | |
4483 (push-mark nil t) | |
4484 (backward-word arg) | |
4485 (delete-region (point) (mark t)) | |
4486 (pop-mark))) | |
4487 | |
4488 | |
18839 | 4489 (defun viper-set-expert-level (&optional dont-change-unless) |
18129 | 4490 "Sets the expert level for a Viper user. |
4491 Can be called interactively to change (temporarily or permanently) the | |
4492 current expert level. | |
4493 | |
18289 | 4494 The optional argument DONT-CHANGE-UNLESS, if not nil, says that |
18129 | 4495 the level should not be changed, unless its current value is |
4496 meaningless (i.e., not one of 1,2,3,4,5). | |
4497 | |
4498 User level determines the setting of Viper variables that are most | |
4499 sensitive for VI-style look-and-feel." | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4500 |
18129 | 4501 (interactive) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4502 |
18839 | 4503 (if (not (natnump viper-expert-level)) (setq viper-expert-level 0)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4504 |
18129 | 4505 (save-window-excursion |
4506 (delete-other-windows) | |
18839 | 4507 ;; if 0 < viper-expert-level < viper-max-expert-level |
18129 | 4508 ;; & dont-change-unless = t -- use it; else ask |
19078 | 4509 (viper-ask-level dont-change-unless)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4510 |
19078 | 4511 (setq viper-always t |
4512 viper-ex-style-motion t | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4513 viper-ex-style-editing t |
19078 | 4514 viper-want-ctl-h-help nil) |
18129 | 4515 |
18839 | 4516 (cond ((eq viper-expert-level 1) ; novice or beginner |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4517 (global-set-key ; in emacs-state |
19078 | 4518 viper-toggle-key |
4519 (if (viper-window-display-p) 'viper-iconify 'suspend-emacs)) | |
4520 (setq viper-no-multiple-ESC t | |
4521 viper-re-search t | |
4522 viper-vi-style-in-minibuffer t | |
4523 viper-search-wrap-around-t t | |
4524 viper-electric-mode nil | |
4525 viper-want-emacs-keys-in-vi nil | |
4526 viper-want-emacs-keys-in-insert nil)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4527 |
18839 | 4528 ((and (> viper-expert-level 1) (< viper-expert-level 5)) |
18129 | 4529 ;; intermediate to guru |
19078 | 4530 (setq viper-no-multiple-ESC (if (viper-window-display-p) |
4531 t 'twice) | |
4532 viper-electric-mode t | |
4533 viper-want-emacs-keys-in-vi t | |
4534 viper-want-emacs-keys-in-insert (> viper-expert-level 2)) | |
4535 | |
4536 (if (eq viper-expert-level 4) ; respect user's ex-style motion | |
4537 ; and viper-no-multiple-ESC | |
18129 | 4538 (progn |
18839 | 4539 (setq-default |
19462 | 4540 viper-ex-style-editing |
4541 (viper-standard-value 'viper-ex-style-editing) | |
19078 | 4542 viper-ex-style-motion |
4543 (viper-standard-value 'viper-ex-style-motion)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4544 (setq viper-ex-style-motion |
19078 | 4545 (viper-standard-value 'viper-ex-style-motion) |
19462 | 4546 viper-ex-style-editing |
4547 (viper-standard-value 'viper-ex-style-editing) | |
19078 | 4548 viper-re-search |
4549 (viper-standard-value 'viper-re-search) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4550 viper-no-multiple-ESC |
19078 | 4551 (viper-standard-value 'viper-no-multiple-ESC))))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4552 |
18129 | 4553 ;; A wizard!! |
4554 ;; Ideally, if 5 is selected, a buffer should pop up to let the | |
4555 ;; user toggle the values of variables. | |
19462 | 4556 (t (setq-default viper-ex-style-editing |
4557 (viper-standard-value 'viper-ex-style-editing) | |
19078 | 4558 viper-ex-style-motion |
4559 (viper-standard-value 'viper-ex-style-motion)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4560 (setq viper-want-ctl-h-help |
19078 | 4561 (viper-standard-value 'viper-want-ctl-h-help) |
18289 | 4562 viper-always |
18839 | 4563 (viper-standard-value 'viper-always) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4564 viper-no-multiple-ESC |
19078 | 4565 (viper-standard-value 'viper-no-multiple-ESC) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4566 viper-ex-style-motion |
19078 | 4567 (viper-standard-value 'viper-ex-style-motion) |
19462 | 4568 viper-ex-style-editing |
4569 (viper-standard-value 'viper-ex-style-editing) | |
19078 | 4570 viper-re-search |
4571 (viper-standard-value 'viper-re-search) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4572 viper-electric-mode |
19078 | 4573 (viper-standard-value 'viper-electric-mode) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4574 viper-want-emacs-keys-in-vi |
19078 | 4575 (viper-standard-value 'viper-want-emacs-keys-in-vi) |
4576 viper-want-emacs-keys-in-insert | |
4577 (viper-standard-value 'viper-want-emacs-keys-in-insert)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4578 |
19078 | 4579 (viper-set-mode-vars-for viper-current-state) |
18289 | 4580 (if (or viper-always |
18839 | 4581 (and (> viper-expert-level 0) (> 5 viper-expert-level))) |
19078 | 4582 (viper-set-hooks))) |
18129 | 4583 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
4584 |
18129 | 4585 ;; Ask user expert level. |
19078 | 4586 (defun viper-ask-level (dont-change-unless) |
4587 (let ((ask-buffer " *viper-ask-level*") | |
18129 | 4588 level-changed repeated) |
4589 (save-window-excursion | |
4590 (switch-to-buffer ask-buffer) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4591 |
18839 | 4592 (while (or (> viper-expert-level viper-max-expert-level) |
4593 (< viper-expert-level 1) | |
18129 | 4594 (null dont-change-unless)) |
4595 (erase-buffer) | |
4596 (if repeated | |
4597 (progn | |
4598 (message "Invalid user level") | |
4599 (beep 1)) | |
4600 (setq repeated t)) | |
4601 (setq dont-change-unless t | |
4602 level-changed t) | |
4603 (insert " | |
4604 Please specify your level of familiarity with the venomous VI PERil | |
4605 (and the VI Plan for Emacs Rescue). | |
18839 | 4606 You can change it at any time by typing `M-x viper-set-expert-level RET' |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4607 |
18129 | 4608 1 -- BEGINNER: Almost all Emacs features are suppressed. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4609 Feels almost like straight Vi. File name completion and |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4610 command history in the minibuffer are thrown in as a bonus. |
19078 | 4611 To use Emacs productively, you must reach level 3 or higher. |
18129 | 4612 2 -- MASTER: C-c now has its standard Emacs meaning in Vi command state, |
19078 | 4613 so most Emacs commands can be used when Viper is in Vi state. |
4614 Good progress---you are well on the way to level 3! | |
18129 | 4615 3 -- GRAND MASTER: Like 3, but most Emacs commands are available also |
19078 | 4616 in Viper's insert state. |
4617 4 -- GURU: Like 3, but user settings are respected for viper-no-multiple-ESC, | |
19462 | 4618 viper-ex-style-motion, viper-ex-style-editing, and |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4619 viper-re-search variables. Adjust these settings to your taste. |
18289 | 4620 5 -- WIZARD: Like 4, but user settings are also respected for viper-always, |
19078 | 4621 viper-electric-mode, viper-want-ctl-h-help, viper-want-emacs-keys-in-vi, |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4622 and viper-want-emacs-keys-in-insert. Adjust these to your taste. |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4623 |
18129 | 4624 Please, specify your level now: ") |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4625 |
19078 | 4626 (setq viper-expert-level (- (viper-read-char-exclusive) ?0)) |
18129 | 4627 ) ; end while |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4628 |
18129 | 4629 ;; tell the user if level was changed |
4630 (and level-changed | |
4631 (progn | |
4632 (insert | |
4633 (format "\n\n\n\n\n\t\tYou have selected user level %d" | |
18839 | 4634 viper-expert-level)) |
18129 | 4635 (if (y-or-n-p "Do you wish to make this change permanent? ") |
18839 | 4636 ;; save the setting for viper-expert-level |
19078 | 4637 (viper-save-setting |
18839 | 4638 'viper-expert-level |
4639 (format "Saving user level %d ..." viper-expert-level) | |
19078 | 4640 viper-custom-file-name)) |
18129 | 4641 )) |
4642 (bury-buffer) ; remove ask-buffer from screen | |
4643 (message "") | |
4644 ))) | |
4645 | |
4646 | |
19078 | 4647 (defun viper-nil () |
18129 | 4648 (interactive) |
4649 (beep 1)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4650 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4651 |
18129 | 4652 ;; if ENFORCE-BUFFER is not nil, error if CHAR is a marker in another buffer |
19078 | 4653 (defun viper-register-to-point (char &optional enforce-buffer) |
18129 | 4654 "Like jump-to-register, but switches to another buffer in another window." |
4655 (interactive "cViper register to point: ") | |
4656 (let ((val (get-register char))) | |
4657 (cond | |
4658 ((and (fboundp 'frame-configuration-p) | |
4659 (frame-configuration-p val)) | |
4660 (set-frame-configuration val)) | |
4661 ((window-configuration-p val) | |
4662 (set-window-configuration val)) | |
19078 | 4663 ((viper-valid-marker val) |
18129 | 4664 (if (and enforce-buffer |
4665 (not (equal (current-buffer) (marker-buffer val)))) | |
19078 | 4666 (error (concat viper-EmptyTextmarker " in this buffer") |
18129 | 4667 (1- (+ char ?a)))) |
4668 (pop-to-buffer (marker-buffer val)) | |
4669 (goto-char val)) | |
4670 ((and (consp val) (eq (car val) 'file)) | |
4671 (find-file (cdr val))) | |
4672 (t | |
19078 | 4673 (error viper-EmptyTextmarker (1- (+ char ?a))))))) |
4674 | |
4675 | |
4676 (defun viper-save-kill-buffer () | |
18129 | 4677 "Save then kill current buffer. " |
4678 (interactive) | |
18839 | 4679 (if (< viper-expert-level 2) |
18129 | 4680 (save-buffers-kill-emacs) |
4681 (save-buffer) | |
4682 (kill-buffer (current-buffer)))) | |
4683 | |
4684 | |
4685 | |
4686 ;;; Bug Report | |
4687 | |
19078 | 4688 (defun viper-submit-report () |
18129 | 4689 "Submit bug report on Viper." |
4690 (interactive) | |
4691 (let ((reporter-prompt-for-summary-p t) | |
19078 | 4692 (viper-device-type (viper-device-type)) |
18129 | 4693 color-display-p frame-parameters |
4694 minibuffer-emacs-face minibuffer-vi-face minibuffer-insert-face | |
4695 varlist salutation window-config) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4696 |
18129 | 4697 ;; If mode info is needed, add variable to `let' and then set it below, |
4698 ;; like we did with color-display-p. | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4699 (setq color-display-p (if (viper-window-display-p) |
19078 | 4700 (viper-color-display-p) |
18129 | 4701 'non-x) |
19078 | 4702 minibuffer-vi-face (if (viper-has-face-support-p) |
4703 (viper-get-face viper-minibuffer-vi-face) | |
18129 | 4704 'non-x) |
19078 | 4705 minibuffer-insert-face (if (viper-has-face-support-p) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4706 (viper-get-face |
19078 | 4707 viper-minibuffer-insert-face) |
18129 | 4708 'non-x) |
19078 | 4709 minibuffer-emacs-face (if (viper-has-face-support-p) |
4710 (viper-get-face | |
4711 viper-minibuffer-emacs-face) | |
18129 | 4712 'non-x) |
4713 frame-parameters (if (fboundp 'frame-parameters) | |
4714 (frame-parameters (selected-frame)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4715 |
19078 | 4716 (setq varlist (list 'viper-vi-minibuffer-minor-mode |
4717 'viper-insert-minibuffer-minor-mode | |
4718 'viper-vi-intercept-minor-mode | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4719 'viper-vi-local-user-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4720 'viper-vi-kbd-minor-mode |
19078 | 4721 'viper-vi-global-user-minor-mode |
4722 'viper-vi-state-modifier-minor-mode | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4723 'viper-vi-diehard-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4724 'viper-vi-basic-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4725 'viper-replace-minor-mode |
19078 | 4726 'viper-insert-intercept-minor-mode |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4727 'viper-insert-local-user-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4728 'viper-insert-kbd-minor-mode |
19078 | 4729 'viper-insert-global-user-minor-mode |
4730 'viper-insert-state-modifier-minor-mode | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4731 'viper-insert-diehard-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4732 'viper-insert-basic-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4733 'viper-emacs-intercept-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4734 'viper-emacs-local-user-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4735 'viper-emacs-kbd-minor-mode |
19078 | 4736 'viper-emacs-global-user-minor-mode |
4737 'viper-emacs-state-modifier-minor-mode | |
4738 'viper-automatic-iso-accents | |
19462 | 4739 'viper-special-input-method |
19078 | 4740 'viper-want-emacs-keys-in-insert |
4741 'viper-want-emacs-keys-in-vi | |
4742 'viper-keep-point-on-undo | |
4743 'viper-no-multiple-ESC | |
4744 'viper-electric-mode | |
4745 'viper-ESC-key | |
4746 'viper-want-ctl-h-help | |
19462 | 4747 'viper-ex-style-editing |
19078 | 4748 'viper-delete-backwards-in-replace |
4749 'viper-vi-style-in-minibuffer | |
4750 'viper-vi-state-hook | |
4751 'viper-insert-state-hook | |
4752 'viper-replace-state-hook | |
4753 'viper-emacs-state-hook | |
18129 | 4754 'ex-cycle-other-window |
4755 'ex-cycle-through-non-files | |
18839 | 4756 'viper-expert-level |
18129 | 4757 'major-mode |
19078 | 4758 'viper-device-type |
18129 | 4759 'color-display-p |
4760 'frame-parameters | |
4761 'minibuffer-vi-face | |
4762 'minibuffer-insert-face | |
4763 'minibuffer-emacs-face | |
4764 )) | |
4765 (setq salutation " | |
4766 Congratulations! You may have unearthed a bug in Viper! | |
4767 Please mail a concise, accurate summary of the problem to the address above. | |
4768 | |
4769 -------------------------------------------------------------------") | |
4770 (setq window-config (current-window-configuration)) | |
19078 | 4771 (with-output-to-temp-buffer " *viper-info*" |
4772 (switch-to-buffer " *viper-info*") | |
18129 | 4773 (delete-other-windows) |
4774 (princ " | |
4775 PLEASE FOLLOW THESE PROCEDURES | |
4776 ------------------------------ | |
4777 | |
4778 Before reporting a bug, please verify that it is related to Viper, and is | |
4779 not cause by other packages you are using. | |
4780 | |
4781 Don't report compilation warnings, unless you are certain that there is a | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4782 problem. These warnings are normal and unavoidable. |
18129 | 4783 |
4784 Please note that users should not modify variables and keymaps other than | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4785 those advertised in the manual. Such `customization' is likely to crash |
18129 | 4786 Viper, as it would any other improperly customized Emacs package. |
4787 | |
4788 If you are reporting an error message received while executing one of the | |
4789 Viper commands, type: | |
4790 | |
4791 M-x set-variable <Return> debug-on-error <Return> t <Return> | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4792 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4793 Then reproduce the error. The above command will cause Emacs to produce a |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4794 back trace of the execution that leads to the error. Please include this |
18129 | 4795 trace in your bug report. |
4796 | |
4797 If you believe that one of Viper's commands goes into an infinite loop | |
4798 \(e.g., Emacs freezes\), type: | |
4799 | |
4800 M-x set-variable <Return> debug-on-quit <Return> t <Return> | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4801 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4802 Then reproduce the problem. Wait for a few seconds, then type C-g to abort |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4803 the current command. Include the resulting back trace in the bug report. |
18129 | 4804 |
4805 Mail anyway (y or n)? ") | |
4806 (if (y-or-n-p "Mail anyway? ") | |
4807 () | |
4808 (set-window-configuration window-config) | |
4809 (error "Bug report aborted"))) | |
4810 | |
4811 (require 'reporter) | |
4812 (set-window-configuration window-config) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4813 |
18129 | 4814 (reporter-submit-bug-report "kifer@cs.sunysb.edu" |
19078 | 4815 (viper-version) |
18129 | 4816 varlist |
4817 nil 'delete-other-windows | |
4818 salutation) | |
4819 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4820 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4821 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4822 |
18129 | 4823 ;; Smoothes out the difference between Emacs' unread-command-events |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4824 ;; and XEmacs unread-command-event. Arg is a character, an event, a list of |
18129 | 4825 ;; events or a sequence of keys. |
4826 ;; | |
4827 ;; Due to the way unread-command-events in Emacs (not XEmacs), a non-event | |
4828 ;; symbol in unread-command-events list may cause Emacs to turn this symbol | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4829 ;; into an event. Below, we delete nil from event lists, since nil is the most |
18129 | 4830 ;; common symbol that might appear in this wrong context. |
19078 | 4831 (defun viper-set-unread-command-events (arg) |
4832 (if viper-emacs-p | |
18129 | 4833 (setq |
4834 unread-command-events | |
4835 (let ((new-events | |
4836 (cond ((eventp arg) (list arg)) | |
4837 ((listp arg) arg) | |
4838 ((sequencep arg) | |
4839 (listify-key-sequence arg)) | |
4840 (t (error | |
19078 | 4841 "viper-set-unread-command-events: Invalid argument, %S" |
18129 | 4842 arg))))) |
4843 (if (not (eventp nil)) | |
4844 (setq new-events (delq nil new-events))) | |
4845 (append new-events unread-command-events))) | |
4846 ;; XEmacs | |
4847 (setq | |
4848 unread-command-events | |
4849 (append | |
19078 | 4850 (cond ((viper-characterp arg) (list (character-to-event arg))) |
18129 | 4851 ((eventp arg) (list arg)) |
4852 ((stringp arg) (mapcar 'character-to-event arg)) | |
4853 ((vectorp arg) (append arg nil)) ; turn into list | |
19078 | 4854 ((listp arg) (viper-eventify-list-xemacs arg)) |
18129 | 4855 (t (error |
19078 | 4856 "viper-set-unread-command-events: Invalid argument, %S" arg))) |
18129 | 4857 unread-command-events)))) |
4858 | |
4859 ;; list is assumed to be a list of events of characters | |
19078 | 4860 (defun viper-eventify-list-xemacs (lis) |
18129 | 4861 (mapcar |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4862 (lambda (elt) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4863 (cond ((viper-characterp elt) (character-to-event elt)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4864 ((eventp elt) elt) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4865 (t (error |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4866 "viper-eventify-list-xemacs: can't convert to event, %S" |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4867 elt)))) |
18129 | 4868 lis)) |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
4869 |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
4870 |
18129 | 4871 |
4872 ;;; viper-cmd.el ends here |