Mercurial > emacs
annotate lisp/emulation/viper-cmd.el @ 105389:e0bfbf0dea57
(WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
(bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in subdirs
of cedet as well.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 02 Oct 2009 18:46:37 +0000 |
parents | bd2966850aac |
children | 328150f0cf76 |
rev | line source |
---|---|
18129 | 1 ;;; viper-cmd.el --- Vi command support for Viper |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2 |
64701
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64485
diff
changeset
|
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
100908 | 4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
5 |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
6 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu> |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
7 |
19905
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
8 ;; 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
|
9 |
94658
eb7b2376cae5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93773
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
19905
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
94658
eb7b2376cae5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93773
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
eb7b2376cae5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93773
diff
changeset
|
13 ;; (at your option) any later version. |
19905
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
14 |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
15 ;; 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
|
16 ;; 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
|
17 ;; 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
|
18 ;; 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
|
19 |
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
94658
eb7b2376cae5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93773
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
18129 | 22 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33842
diff
changeset
|
23 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33842
diff
changeset
|
24 |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33842
diff
changeset
|
25 ;;; Code: |
18129 | 26 |
27 (provide 'viper-cmd) | |
28 | |
29 ;; Compiler pacifier | |
19078 | 30 (defvar viper-minibuffer-current-face) |
31 (defvar viper-minibuffer-insert-face) | |
32 (defvar viper-minibuffer-vi-face) | |
33 (defvar viper-minibuffer-emacs-face) | |
18289 | 34 (defvar viper-always) |
19078 | 35 (defvar viper-mode-string) |
36 (defvar viper-custom-file-name) | |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
37 (defvar viper--key-maps) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
38 (defvar viper--intercept-key-maps) |
18129 | 39 (defvar iso-accents-mode) |
19462 | 40 (defvar quail-mode) |
41 (defvar quail-current-str) | |
18129 | 42 (defvar mark-even-if-inactive) |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
43 (defvar init-message) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
44 (defvar initial) |
72516
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
45 (defvar undo-beg-posn) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
46 (defvar undo-end-posn) |
87691
f2c8fd594360
2008-01-10 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
87678
diff
changeset
|
47 |
f2c8fd594360
2008-01-10 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
87678
diff
changeset
|
48 (eval-and-compile |
f2c8fd594360
2008-01-10 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
87678
diff
changeset
|
49 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))) |
18129 | 50 ;; end pacifier |
51 | |
52 | |
53 (require 'viper-util) | |
54 (require 'viper-keym) | |
55 (require 'viper-mous) | |
56 (require 'viper-macs) | |
57 (require 'viper-ex) | |
58 | |
59 | |
60 | |
61 ;; Generic predicates | |
62 | |
63 ;; These test functions are shamelessly lifted from vip 4.4.2 by Aamod Sane | |
64 | |
65 ;; generate test functions | |
66 ;; given symbol foo, foo-p is the test function, foos is the set of | |
67 ;; Viper command keys | |
19078 | 68 ;; (macroexpand '(viper-test-com-defun foo)) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
69 ;; (defun foo-p (com) (consp (memq com foos))) |
18129 | 70 |
19078 | 71 (defmacro viper-test-com-defun (name) |
18129 | 72 (let* ((snm (symbol-name name)) |
73 (nm-p (intern (concat snm "-p"))) | |
74 (nms (intern (concat snm "s")))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
75 `(defun ,nm-p (com) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
76 (consp (viper-memq-char com ,nms) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
77 )))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
78 |
18129 | 79 ;; Variables for defining VI commands |
80 | |
81 ;; Modifying commands that can be prefixes to movement commands | |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
82 (defvar viper-prefix-commands '(?c ?d ?y ?! ?= ?# ?< ?> ?\")) |
19078 | 83 ;; define viper-prefix-command-p |
84 (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
|
85 |
18129 | 86 ;; Commands that are pairs eg. dd. r and R here are a hack |
19078 | 87 (defconst viper-charpair-commands '(?c ?d ?y ?! ?= ?< ?> ?r ?R)) |
88 ;; define viper-charpair-command-p | |
89 (viper-test-com-defun viper-charpair-command) | |
90 | |
81331
c3779fe5830e
2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
75346
diff
changeset
|
91 (defconst viper-movement-commands '(?b ?B ?e ?E ?f ?F ?G ?h ?j ?k ?l |
18129 | 92 ?H ?M ?L ?n ?t ?T ?w ?W ?$ ?% |
93 ?^ ?( ?) ?- ?+ ?| ?{ ?} ?[ ?] ?' ?` | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
94 ?\; ?, ?0 ?? ?/ ?\ ?\C-m |
19078 | 95 space return |
96 delete backspace | |
18129 | 97 ) |
98 "Movement commands") | |
19078 | 99 ;; define viper-movement-command-p |
100 (viper-test-com-defun viper-movement-command) | |
18129 | 101 |
18839 | 102 ;; Vi digit commands |
19078 | 103 (defconst viper-digit-commands '(?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9)) |
104 | |
105 ;; define viper-digit-command-p | |
106 (viper-test-com-defun viper-digit-command) | |
18129 | 107 |
108 ;; Commands that can be repeated by . (dotted) | |
19078 | 109 (defconst viper-dotable-commands '(?c ?d ?C ?s ?S ?D ?> ?<)) |
110 ;; define viper-dotable-command-p | |
111 (viper-test-com-defun viper-dotable-command) | |
18129 | 112 |
113 ;; Commands that can follow a # | |
19078 | 114 (defconst viper-hash-commands '(?c ?C ?g ?q ?s)) |
115 ;; define viper-hash-command-p | |
116 (viper-test-com-defun viper-hash-command) | |
18129 | 117 |
118 ;; Commands that may have registers as prefix | |
19078 | 119 (defconst viper-regsuffix-commands '(?d ?y ?Y ?D ?p ?P ?x ?X)) |
120 ;; define viper-regsuffix-command-p | |
121 (viper-test-com-defun viper-regsuffix-command) | |
122 | |
123 (defconst viper-vi-commands (append viper-movement-commands | |
124 viper-digit-commands | |
125 viper-dotable-commands | |
126 viper-charpair-commands | |
127 viper-hash-commands | |
128 viper-prefix-commands | |
129 viper-regsuffix-commands) | |
18129 | 130 "The list of all commands in Vi-state.") |
19078 | 131 ;; define viper-vi-command-p |
132 (viper-test-com-defun viper-vi-command) | |
18129 | 133 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
134 ;; Where viper saves mark. This mark is resurrected by m^ |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
135 (defvar viper-saved-mark nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
136 |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
137 ;; Contains user settings for vars affected by viper-set-expert-level function. |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
138 ;; Not a user option. |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
139 (defvar viper-saved-user-settings nil) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
140 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
141 |
18129 | 142 |
143 ;;; CODE | |
144 | |
145 ;; sentinels | |
146 | |
19078 | 147 ;; Runs viper-after-change-functions inside after-change-functions |
148 (defun viper-after-change-sentinel (beg end len) | |
21940 | 149 (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
|
150 |
19078 | 151 ;; Runs viper-before-change-functions inside before-change-functions |
152 (defun viper-before-change-sentinel (beg end) | |
21940 | 153 (run-hook-with-args 'viper-before-change-functions beg end)) |
18129 | 154 |
19078 | 155 (defsubst viper-post-command-sentinel () |
74857
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
156 (condition-case conds |
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
157 (run-hooks 'viper-post-command-hooks) |
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
158 (error (viper-message-conditions conds))) |
26263
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) |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
177 (let ((icolor (viper-frame-value viper-insert-state-cursor-color))) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
178 (or (stringp (viper-get-saved-cursor-color-in-insert-mode)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
179 (string= (viper-get-cursor-color) icolor) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
180 ;; save current color, if not already saved |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
181 (viper-save-cursor-color 'before-insert-mode)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
182 ;; set insert mode cursor color |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
183 (viper-change-cursor-color icolor))) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
184 (let ((ecolor (viper-frame-value viper-emacs-state-cursor-color))) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
185 (when (and ecolor (eq viper-current-state 'emacs-state)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
186 (or (stringp (viper-get-saved-cursor-color-in-emacs-mode)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
187 (string= (viper-get-cursor-color) ecolor) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
188 ;; save current color, if not already saved |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
189 (viper-save-cursor-color 'before-emacs-mode)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
190 ;; set emacs mode cursor color |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
191 (viper-change-cursor-color ecolor))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
192 |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
193 (if (and (memq this-command '(dabbrev-expand hippie-expand)) |
19078 | 194 (integerp viper-pre-command-point) |
19756 | 195 (markerp viper-insert-point) |
196 (marker-position viper-insert-point) | |
19078 | 197 (> viper-insert-point viper-pre-command-point)) |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
198 (viper-move-marker-locally viper-insert-point viper-pre-command-point))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
199 |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
200 (defsubst viper-preserve-cursor-color () |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
201 (or (memq this-command '(self-insert-command |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
202 viper-del-backward-char-in-insert |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
203 viper-del-backward-char-in-replace |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
204 viper-delete-backward-char |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
205 viper-join-lines |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
206 viper-delete-char)) |
19078 | 207 (memq (viper-event-key last-command-event) |
18129 | 208 '(up down left right (meta f) (meta b) |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
209 (control n) (control p) (control f) (control b))))) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
210 |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
211 (defsubst viper-insert-state-pre-command-sentinel () |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
212 (or (viper-preserve-cursor-color) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
213 (viper-restore-cursor-color 'after-insert-mode)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
214 (if (and (memq this-command '(dabbrev-expand hippie-expand)) |
19078 | 215 (markerp viper-insert-point) |
216 (marker-position viper-insert-point)) | |
217 (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
|
218 |
99595
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
219 (defun viper-R-state-post-command-sentinel () |
18129 | 220 ;; Restoring cursor color is needed despite |
19078 | 221 ;; viper-replace-state-pre-command-sentinel: When you jump to another buffer |
222 ;; in another frame, the pre-command hook won't change cursor color to | |
223 ;; default in that other frame. So, if the second frame cursor was red and | |
224 ;; 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
|
225 ;; will remain red. Restoring the default, below, prevents this. |
19078 | 226 (if (and (<= (viper-replace-start) (point)) |
227 (<= (point) (viper-replace-end))) | |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
228 (viper-change-cursor-color |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
229 (viper-frame-value viper-replace-overlay-cursor-color)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
230 (viper-restore-cursor-color 'after-replace-mode))) |
18129 | 231 |
232 ;; to speed up, don't change cursor color before self-insert | |
233 ;; and common move commands | |
19078 | 234 (defsubst viper-replace-state-pre-command-sentinel () |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
235 (or (viper-preserve-cursor-color) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
236 (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
|
237 |
26702
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
238 |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
239 ;; 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
|
240 ;; 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
|
241 (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
|
242 (setq viper-replace-chars-to-delete |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
243 (max 0 |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
244 (min viper-replace-chars-to-delete |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
245 ;; 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
|
246 (viper-chars-in-region |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
247 (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
|
248 ;; 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
|
249 ;; 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
|
250 (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
|
251 )))) |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
252 |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
253 |
19078 | 254 (defun viper-replace-state-post-command-sentinel () |
18129 | 255 ;; Restoring cursor color is needed despite |
19078 | 256 ;; viper-replace-state-pre-command-sentinel: When one jumps to another buffer |
18129 | 257 ;; in another frame, the pre-command hook won't change cursor color to |
258 ;; default in that other frame. So, if the second frame cursor was red and | |
259 ;; 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
|
260 ;; will remain red. Restoring the default, below, fixes this problem. |
18129 | 261 ;; |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
262 ;; We optimize for some commands, like self-insert-command, |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
263 ;; viper-delete-backward-char, etc., since they either don't change |
18129 | 264 ;; cursor color or, if they terminate replace mode, the color will be changed |
19078 | 265 ;; in viper-finish-change |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
266 (or (viper-preserve-cursor-color) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
267 (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
|
268 (cond |
19078 | 269 ((eq viper-current-state 'replace-state) |
18129 | 270 ;; delete characters to compensate for inserted chars. |
19078 | 271 (let ((replace-boundary (viper-replace-end))) |
18129 | 272 (save-excursion |
19078 | 273 (goto-char viper-last-posn-in-replace-region) |
19462 | 274 (viper-trim-replace-chars-to-delete-if-necessary) |
19078 | 275 (delete-char viper-replace-chars-to-delete) |
19462 | 276 (setq viper-replace-chars-to-delete 0) |
18129 | 277 ;; terminate replace mode if reached replace limit |
19462 | 278 (if (= viper-last-posn-in-replace-region (viper-replace-end)) |
279 (viper-finish-change))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
280 |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
281 (when (viper-pos-within-region |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
282 (point) (viper-replace-start) replace-boundary) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
283 ;; the state may have changed in viper-finish-change above |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
284 (if (eq viper-current-state 'replace-state) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
285 (viper-change-cursor-color |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
286 (viper-frame-value viper-replace-overlay-cursor-color))) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
287 (setq viper-last-posn-in-replace-region (point-marker))))) |
19462 | 288 ;; terminate replace mode if changed Viper states. |
289 (t (viper-finish-change)))) | |
18129 | 290 |
291 | |
292 ;; changing mode | |
293 | |
294 ;; Change state to NEW-STATE---either emacs-state, vi-state, or insert-state. | |
19078 | 295 (defun viper-change-state (new-state) |
296 ;; Keep viper-post/pre-command-hooks fresh. | |
297 ;; We remove then add viper-post/pre-command-sentinel since it is very | |
298 ;; desirable that viper-pre-command-sentinel is the last hook and | |
299 ;; viper-post-command-sentinel is the first hook. | |
21940 | 300 |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
301 (when (featurep 'xemacs) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
302 (make-local-hook 'viper-after-change-functions) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
303 (make-local-hook 'viper-before-change-functions) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
304 (make-local-hook 'viper-post-command-hooks) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
305 (make-local-hook 'viper-pre-command-hooks)) |
21940 | 306 |
19078 | 307 (remove-hook 'post-command-hook 'viper-post-command-sentinel) |
308 (add-hook 'post-command-hook 'viper-post-command-sentinel) | |
309 (remove-hook 'pre-command-hook 'viper-pre-command-sentinel) | |
310 (add-hook 'pre-command-hook 'viper-pre-command-sentinel t) | |
18129 | 311 ;; These hooks will be added back if switching to insert/replace mode |
21940 | 312 (remove-hook 'viper-post-command-hooks |
313 'viper-insert-state-post-command-sentinel 'local) | |
314 (remove-hook 'viper-pre-command-hooks | |
315 'viper-insert-state-pre-command-sentinel 'local) | |
19078 | 316 (setq viper-intermediate-command nil) |
18129 | 317 (cond ((eq new-state 'vi-state) |
19078 | 318 (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
|
319 |
19078 | 320 ;; move viper-last-posn-while-in-insert-state |
18129 | 321 ;; 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
|
322 ;; states after each command. In Vi/Emacs state, it does |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
323 ;; nothing. We need to execute it here to make sure that |
18129 | 324 ;; the last posn was recorded when we hit ESC. |
325 ;; It may be left unrecorded if the last thing done in | |
326 ;; insert/repl state was dabbrev-expansion or abbrev | |
327 ;; expansion caused by hitting ESC | |
19078 | 328 (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
|
329 |
18129 | 330 (condition-case conds |
331 (progn | |
19078 | 332 (viper-save-last-insertion |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
333 viper-insert-point |
19078 | 334 viper-last-posn-while-in-insert-state) |
335 (if viper-began-as-replace | |
336 (setq viper-began-as-replace nil) | |
18129 | 337 ;; repeat insert commands if numerical arg > 1 |
338 (save-excursion | |
19078 | 339 (viper-repeat-insert-command)))) |
18129 | 340 (error |
19078 | 341 (viper-message-conditions conds))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
342 |
19078 | 343 (if (> (length viper-last-insertion) 0) |
344 (viper-push-onto-ring viper-last-insertion | |
345 'viper-insertion-ring)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
346 |
26702
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26588
diff
changeset
|
347 (if viper-ESC-moves-cursor-back |
65627
511f8e9d22ca
2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64750
diff
changeset
|
348 (or (bolp) (viper-beginning-of-field) (backward-char 1)))) |
18129 | 349 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
350 |
18129 | 351 ;; insert or replace |
352 ((memq new-state '(insert-state replace-state)) | |
19078 | 353 (if (memq viper-current-state '(emacs-state vi-state)) |
354 (viper-move-marker-locally 'viper-insert-point (point))) | |
355 (viper-move-marker-locally | |
356 'viper-last-posn-while-in-insert-state (point)) | |
21940 | 357 (add-hook 'viper-post-command-hooks |
358 'viper-insert-state-post-command-sentinel t 'local) | |
359 (add-hook 'viper-pre-command-hooks | |
360 'viper-insert-state-pre-command-sentinel t 'local)) | |
18129 | 361 ) ; outermost cond |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
362 |
18129 | 363 ;; Nothing needs to be done to switch to emacs mode! Just set some |
19078 | 364 ;; variables, which is already done in viper-change-state-to-emacs! |
365 | |
19462 | 366 ;; ISO accents |
367 ;; always turn off iso-accents-mode in vi-state, or else we won't be able to | |
368 ;; use the keys `,',^ , as they will do accents instead of Vi actions. | |
369 (cond ((eq new-state 'vi-state) (viper-set-iso-accents-mode nil));accents off | |
370 (viper-automatic-iso-accents (viper-set-iso-accents-mode t));accents on | |
371 (t (viper-set-iso-accents-mode nil))) | |
372 ;; Always turn off quail mode in vi state | |
373 (cond ((eq new-state 'vi-state) (viper-set-input-method nil)) ;intl input off | |
374 (viper-special-input-method (viper-set-input-method t)) ;intl input on | |
375 (t (viper-set-input-method nil))) | |
376 | |
19078 | 377 (setq viper-current-state new-state) |
19462 | 378 |
379 (viper-update-syntax-classes) | |
19078 | 380 (viper-normalize-minor-mode-map-alist) |
381 (viper-adjust-keys-for new-state) | |
382 (viper-set-mode-vars-for new-state) | |
383 (viper-refresh-mode-line) | |
18129 | 384 ) |
385 | |
386 | |
19078 | 387 (defun viper-adjust-keys-for (state) |
18129 | 388 "Make necessary adjustments to keymaps before entering STATE." |
389 (cond ((memq state '(insert-state replace-state)) | |
19078 | 390 (if viper-auto-indent |
18129 | 391 (progn |
19078 | 392 (define-key viper-insert-basic-map "\C-m" 'viper-autoindent) |
393 (if viper-want-emacs-keys-in-insert | |
18129 | 394 ;; expert |
19078 | 395 (define-key viper-insert-basic-map "\C-j" nil) |
18129 | 396 ;; novice |
19078 | 397 (define-key viper-insert-basic-map "\C-j" 'viper-autoindent))) |
398 (define-key viper-insert-basic-map "\C-m" nil) | |
399 (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
|
400 |
19078 | 401 (setq viper-insert-diehard-minor-mode |
402 (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
|
403 |
19078 | 404 (if viper-want-ctl-h-help |
19891 | 405 (progn |
406 (define-key viper-insert-basic-map "\C-h" 'help-command) | |
407 (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
|
408 (define-key viper-insert-basic-map |
19891 | 409 "\C-h" 'viper-del-backward-char-in-insert) |
19462 | 410 (define-key viper-replace-map |
19891 | 411 "\C-h" 'viper-del-backward-char-in-replace)) |
412 ;; In XEmacs, C-h overrides backspace, so we make sure it doesn't. | |
413 (define-key viper-insert-basic-map | |
414 [backspace] 'viper-del-backward-char-in-insert) | |
415 (define-key viper-replace-map | |
416 [backspace] 'viper-del-backward-char-in-replace) | |
417 ) ; end insert/replace case | |
18129 | 418 (t ; Vi state |
19078 | 419 (setq viper-vi-diehard-minor-mode (not viper-want-emacs-keys-in-vi)) |
420 (if viper-want-ctl-h-help | |
19891 | 421 (define-key viper-vi-basic-map "\C-h" 'help-command) |
422 (define-key viper-vi-basic-map "\C-h" 'viper-backward-char)) | |
423 ;; In XEmacs, C-h overrides backspace, so we make sure it doesn't. | |
424 (define-key viper-vi-basic-map [backspace] 'viper-backward-char)) | |
18129 | 425 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
426 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
427 |
18129 | 428 ;; Normalizes minor-mode-map-alist by putting Viper keymaps first. |
429 ;; This ensures that Viper bindings are in effect, regardless of which minor | |
430 ;; modes were turned on by the user or by other packages. | |
19078 | 431 (defun viper-normalize-minor-mode-map-alist () |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
432 (setq viper--intercept-key-maps |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
433 (list |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
434 (cons 'viper-vi-intercept-minor-mode viper-vi-intercept-map) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
435 (cons 'viper-insert-intercept-minor-mode viper-insert-intercept-map) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
436 (cons 'viper-emacs-intercept-minor-mode viper-emacs-intercept-map) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
437 )) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
438 (setq viper--key-maps |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
439 (list (cons 'viper-vi-minibuffer-minor-mode viper-minibuffer-map) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
440 (cons 'viper-vi-local-user-minor-mode viper-vi-local-user-map) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
441 (cons 'viper-vi-kbd-minor-mode viper-vi-kbd-map) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
442 (cons 'viper-vi-global-user-minor-mode viper-vi-global-user-map) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
443 (cons 'viper-vi-state-modifier-minor-mode |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
444 (if (keymapp |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
445 (cdr (assoc major-mode viper-vi-state-modifier-alist))) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
446 (cdr (assoc major-mode viper-vi-state-modifier-alist)) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
447 viper-empty-keymap)) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
448 (cons 'viper-vi-diehard-minor-mode viper-vi-diehard-map) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
449 (cons 'viper-vi-basic-minor-mode viper-vi-basic-map) |
19078 | 450 (cons 'viper-replace-minor-mode viper-replace-map) |
451 ;; 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
|
452 ;; viper-replace-minor-mode |
19078 | 453 (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
|
454 viper-minibuffer-map) |
19078 | 455 (cons 'viper-insert-local-user-minor-mode |
456 viper-insert-local-user-map) | |
457 (cons 'viper-insert-kbd-minor-mode viper-insert-kbd-map) | |
458 (cons 'viper-insert-global-user-minor-mode | |
459 viper-insert-global-user-map) | |
460 (cons 'viper-insert-state-modifier-minor-mode | |
18129 | 461 (if (keymapp |
19203 | 462 (cdr (assoc major-mode |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
463 viper-insert-state-modifier-alist))) |
19203 | 464 (cdr (assoc major-mode |
465 viper-insert-state-modifier-alist)) | |
19078 | 466 viper-empty-keymap)) |
467 (cons 'viper-insert-diehard-minor-mode viper-insert-diehard-map) | |
468 (cons 'viper-insert-basic-minor-mode viper-insert-basic-map) | |
469 (cons 'viper-emacs-local-user-minor-mode | |
470 viper-emacs-local-user-map) | |
471 (cons 'viper-emacs-kbd-minor-mode viper-emacs-kbd-map) | |
472 (cons 'viper-emacs-global-user-minor-mode | |
473 viper-emacs-global-user-map) | |
474 (cons 'viper-emacs-state-modifier-minor-mode | |
18129 | 475 (if (keymapp |
476 (cdr | |
19078 | 477 (assoc major-mode viper-emacs-state-modifier-alist))) |
18129 | 478 (cdr |
19078 | 479 (assoc major-mode viper-emacs-state-modifier-alist)) |
480 viper-empty-keymap)) | |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
481 )) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
482 |
65856
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
483 ;; This var is not local in Emacs, so we make it local. It must be local |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
484 ;; because although the stack of minor modes can be the same for all buffers, |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
485 ;; the associated *keymaps* can be different. In Viper, |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
486 ;; viper-vi-local-user-map, viper-insert-local-user-map, and others can have |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
487 ;; different keymaps for different buffers. Also, the keymaps associated |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
488 ;; with viper-vi/insert-state-modifier-minor-mode can be different. |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
489 ;; ***This is needed only in case emulation-mode-map-alists is not defined. |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
490 ;; In emacs with emulation-mode-map-alists, nothing needs to be done |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
491 (unless |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
492 (and (fboundp 'add-to-ordered-list) (boundp 'emulation-mode-map-alists)) |
65856
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
493 (set (make-local-variable 'minor-mode-map-alist) |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
494 (viper-append-filter-alist |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
495 (append viper--intercept-key-maps viper--key-maps) |
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
496 minor-mode-map-alist))) |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
497 ) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
498 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
499 |
18129 | 500 |
501 ;; Viper mode-changing commands and utilities | |
502 | |
503 ;; Modifies mode-line-buffer-identification. | |
19078 | 504 (defun viper-refresh-mode-line () |
65856
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
505 (set (make-local-variable 'viper-mode-string) |
19078 | 506 (cond ((eq viper-current-state 'emacs-state) viper-emacs-state-id) |
507 ((eq viper-current-state 'vi-state) viper-vi-state-id) | |
508 ((eq viper-current-state 'replace-state) viper-replace-state-id) | |
509 ((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
|
510 |
18129 | 511 ;; Sets Viper mode string in global-mode-string |
512 (force-mode-line-update)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
513 |
18129 | 514 |
515 ;; Switch from Insert state to Vi state. | |
19078 | 516 (defun viper-exit-insert-state () |
18129 | 517 (interactive) |
19078 | 518 (viper-change-state-to-vi)) |
519 | |
520 (defun viper-set-mode-vars-for (state) | |
18129 | 521 "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
|
522 |
18129 | 523 ;; Emacs state |
19078 | 524 (setq viper-vi-minibuffer-minor-mode nil |
525 viper-insert-minibuffer-minor-mode nil | |
526 viper-vi-intercept-minor-mode nil | |
527 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
|
528 |
19078 | 529 viper-vi-local-user-minor-mode nil |
530 viper-vi-kbd-minor-mode nil | |
531 viper-vi-global-user-minor-mode nil | |
532 viper-vi-state-modifier-minor-mode nil | |
533 viper-vi-diehard-minor-mode nil | |
534 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
|
535 |
19078 | 536 viper-replace-minor-mode nil |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
537 |
19078 | 538 viper-insert-local-user-minor-mode nil |
539 viper-insert-kbd-minor-mode nil | |
540 viper-insert-global-user-minor-mode nil | |
541 viper-insert-state-modifier-minor-mode nil | |
542 viper-insert-diehard-minor-mode nil | |
543 viper-insert-basic-minor-mode nil | |
544 viper-emacs-intercept-minor-mode t | |
545 viper-emacs-local-user-minor-mode t | |
546 viper-emacs-kbd-minor-mode (not (viper-is-in-minibuffer)) | |
547 viper-emacs-global-user-minor-mode t | |
548 viper-emacs-state-modifier-minor-mode t | |
18129 | 549 ) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
550 |
18129 | 551 ;; Vi state |
552 (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
|
553 (setq |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
554 viper-vi-intercept-minor-mode t |
19078 | 555 viper-vi-minibuffer-minor-mode (viper-is-in-minibuffer) |
556 viper-vi-local-user-minor-mode t | |
557 viper-vi-kbd-minor-mode (not (viper-is-in-minibuffer)) | |
558 viper-vi-global-user-minor-mode t | |
559 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
|
560 ;; don't let the diehard keymap block command completion |
18129 | 561 ;; and other things in the minibuffer |
19078 | 562 viper-vi-diehard-minor-mode (not |
563 (or viper-want-emacs-keys-in-vi | |
564 (viper-is-in-minibuffer))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
565 viper-vi-basic-minor-mode t |
19078 | 566 viper-emacs-intercept-minor-mode nil |
567 viper-emacs-local-user-minor-mode nil | |
568 viper-emacs-kbd-minor-mode nil | |
569 viper-emacs-global-user-minor-mode nil | |
570 viper-emacs-state-modifier-minor-mode nil | |
18129 | 571 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
572 |
18129 | 573 ;; Insert and Replace states |
574 (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
|
575 (setq |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
576 viper-insert-intercept-minor-mode t |
19078 | 577 viper-replace-minor-mode (eq state 'replace-state) |
578 viper-insert-minibuffer-minor-mode (viper-is-in-minibuffer) | |
579 viper-insert-local-user-minor-mode t | |
580 viper-insert-kbd-minor-mode (not (viper-is-in-minibuffer)) | |
581 viper-insert-global-user-minor-mode t | |
582 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
|
583 ;; don't let the diehard keymap block command completion |
18129 | 584 ;; and other things in the minibuffer |
19078 | 585 viper-insert-diehard-minor-mode (not |
586 (or | |
587 viper-want-emacs-keys-in-insert | |
588 (viper-is-in-minibuffer))) | |
589 viper-insert-basic-minor-mode t | |
590 viper-emacs-intercept-minor-mode nil | |
591 viper-emacs-local-user-minor-mode nil | |
592 viper-emacs-kbd-minor-mode nil | |
593 viper-emacs-global-user-minor-mode nil | |
594 viper-emacs-state-modifier-minor-mode nil | |
18129 | 595 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
596 |
18129 | 597 ;; minibuffer faces |
19078 | 598 (if (viper-has-face-support-p) |
599 (setq viper-minibuffer-current-face | |
600 (cond ((eq state 'emacs-state) viper-minibuffer-emacs-face) | |
601 ((eq state 'vi-state) viper-minibuffer-vi-face) | |
18129 | 602 ((memq state '(insert-state replace-state)) |
19078 | 603 viper-minibuffer-insert-face)))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
604 |
19078 | 605 (if (viper-is-in-minibuffer) |
606 (viper-set-minibuffer-overlay)) | |
18129 | 607 ) |
608 | |
609 ;; This also takes care of the annoying incomplete lines in files. | |
610 ;; Also, this fixes `undo' to work vi-style for complex commands. | |
19078 | 611 (defun viper-change-state-to-vi () |
18129 | 612 "Change Viper state to Vi." |
613 (interactive) | |
19078 | 614 (if (and viper-first-time (not (viper-is-in-minibuffer))) |
18129 | 615 (viper-mode) |
33842
f6a67d77484a
* ediff-diff.el: Moved variables around to have it compile under NT.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
33019
diff
changeset
|
616 (if overwrite-mode (overwrite-mode -1)) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
617 (or (viper-overlay-p viper-replace-overlay) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
618 (viper-set-replace-overlay (point-min) (point-min))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
619 (viper-hide-replace-overlay) |
18129 | 620 (if abbrev-mode (expand-abbrev)) |
621 (if (and auto-fill-function (> (current-column) fill-column)) | |
622 (funcall auto-fill-function)) | |
623 ;; don't leave whitespace lines around | |
624 (if (and (memq last-command | |
19078 | 625 '(viper-autoindent |
626 viper-open-line viper-Open-line | |
627 viper-replace-state-exit-cmd)) | |
628 (viper-over-whitespace-line)) | |
18129 | 629 (indent-to-left-margin)) |
19078 | 630 (viper-add-newline-at-eob-if-necessary) |
19462 | 631 (viper-adjust-undo) |
68997
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
632 |
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
633 (if (eq viper-current-state 'emacs-state) |
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
634 (viper-restore-cursor-color 'after-emacs-mode) |
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
635 (viper-restore-cursor-color 'after-insert-mode)) |
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
636 |
19078 | 637 (viper-change-state 'vi-state) |
18129 | 638 |
19462 | 639 ;; Protect against user errors in hooks |
18129 | 640 (condition-case conds |
19078 | 641 (run-hooks 'viper-vi-state-hook) |
18129 | 642 (error |
19078 | 643 (viper-message-conditions conds))))) |
644 | |
645 (defun viper-change-state-to-insert () | |
18129 | 646 "Change Viper state to Insert." |
647 (interactive) | |
19078 | 648 (viper-change-state 'insert-state) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
649 |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
650 (or (viper-overlay-p viper-replace-overlay) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
651 (viper-set-replace-overlay (point-min) (point-min))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
652 (viper-hide-replace-overlay) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
653 |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
654 (let ((icolor (viper-frame-value viper-insert-state-cursor-color))) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
655 (or (stringp (viper-get-saved-cursor-color-in-insert-mode)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
656 (string= (viper-get-cursor-color) icolor) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
657 (viper-save-cursor-color 'before-insert-mode)) |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
658 (viper-change-cursor-color icolor)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
659 |
19462 | 660 ;; Protect against user errors in hooks |
18129 | 661 (condition-case conds |
19078 | 662 (run-hooks 'viper-insert-state-hook) |
18129 | 663 (error |
19078 | 664 (viper-message-conditions conds)))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
665 |
19078 | 666 (defsubst viper-downgrade-to-insert () |
33842
f6a67d77484a
* ediff-diff.el: Moved variables around to have it compile under NT.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
33019
diff
changeset
|
667 ;; Protect against user errors in hooks |
f6a67d77484a
* ediff-diff.el: Moved variables around to have it compile under NT.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
33019
diff
changeset
|
668 (condition-case conds |
f6a67d77484a
* ediff-diff.el: Moved variables around to have it compile under NT.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
33019
diff
changeset
|
669 (run-hooks 'viper-insert-state-hook) |
f6a67d77484a
* ediff-diff.el: Moved variables around to have it compile under NT.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
33019
diff
changeset
|
670 (error |
f6a67d77484a
* ediff-diff.el: Moved variables around to have it compile under NT.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
33019
diff
changeset
|
671 (viper-message-conditions conds))) |
f6a67d77484a
* ediff-diff.el: Moved variables around to have it compile under NT.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
33019
diff
changeset
|
672 (setq viper-current-state 'insert-state |
f6a67d77484a
* ediff-diff.el: Moved variables around to have it compile under NT.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
33019
diff
changeset
|
673 viper-replace-minor-mode nil)) |
18129 | 674 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
675 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
676 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
677 ;; Change to replace state. When the end of replacement region is reached, |
18129 | 678 ;; replace state changes to insert state. |
19078 | 679 (defun viper-change-state-to-replace (&optional non-R-cmd) |
680 (viper-change-state 'replace-state) | |
18129 | 681 ;; Run insert-state-hook |
682 (condition-case conds | |
19078 | 683 (run-hooks 'viper-insert-state-hook 'viper-replace-state-hook) |
18129 | 684 (error |
19078 | 685 (viper-message-conditions conds))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
686 |
18129 | 687 (if non-R-cmd |
19078 | 688 (viper-start-replace) |
18129 | 689 ;; 'R' is implemented using Emacs's overwrite-mode |
19078 | 690 (viper-start-R-mode)) |
18129 | 691 ) |
692 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
693 |
19078 | 694 (defun viper-change-state-to-emacs () |
18129 | 695 "Change Viper state to Emacs." |
696 (interactive) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
697 (or (viper-overlay-p viper-replace-overlay) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
698 (viper-set-replace-overlay (point-min) (point-min))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
699 (viper-hide-replace-overlay) |
68997
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
700 |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
701 (let ((ecolor (viper-frame-value viper-emacs-state-cursor-color))) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
702 (when ecolor |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
703 (or (stringp (viper-get-saved-cursor-color-in-emacs-mode)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
704 (string= (viper-get-cursor-color) ecolor) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
705 (viper-save-cursor-color 'before-emacs-mode)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
706 (viper-change-cursor-color ecolor))) |
68997
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
707 |
19078 | 708 (viper-change-state 'emacs-state) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
709 |
68997
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
710 ;; Protect against user errors in hooks |
18129 | 711 (condition-case conds |
19078 | 712 (run-hooks 'viper-emacs-state-hook) |
18129 | 713 (error |
19078 | 714 (viper-message-conditions conds)))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
715 |
18129 | 716 ;; escape to emacs mode termporarily |
19078 | 717 (defun viper-escape-to-emacs (arg &optional events) |
18129 | 718 "Escape to Emacs state from Vi state for one Emacs command. |
719 ARG is used as the prefix value for the executed command. If | |
720 EVENTS is a list of events, which become the beginning of the command." | |
721 (interactive "P") | |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
722 (if (viper= last-command-event ?\\) |
18129 | 723 (message "Switched to EMACS state for the next command...")) |
19078 | 724 (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
|
725 |
18129 | 726 ;; escape to Vi mode termporarily |
19078 | 727 (defun viper-escape-to-vi (arg) |
18129 | 728 "Escape from Emacs state to Vi state for one Vi 1-character command. |
729 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
|
730 Vi's prefix argument will be used. Otherwise, the prefix argument passed to |
19078 | 731 `viper-escape-to-vi' is used." |
18129 | 732 (interactive "P") |
733 (message "Switched to VI state for the next command...") | |
19078 | 734 (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
|
735 |
18129 | 736 ;; Escape to STATE mode for one Emacs command. |
19078 | 737 (defun viper-escape-to-state (arg events state) |
18129 | 738 ;;(let (com key prefix-arg) |
739 (let (com key) | |
740 ;; this temporarily turns off Viper's minor mode keymaps | |
19078 | 741 (viper-set-mode-vars-for state) |
742 (viper-normalize-minor-mode-map-alist) | |
743 (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
|
744 |
18129 | 745 ;; protect against keyboard quit and other errors |
746 (condition-case nil | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
747 (let (viper-vi-kbd-minor-mode |
19078 | 748 viper-insert-kbd-minor-mode |
749 viper-emacs-kbd-minor-mode) | |
18129 | 750 (unwind-protect |
751 (progn | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
752 (setq com |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
753 (key-binding (setq key (viper-read-key-sequence nil)))) |
18129 | 754 ;; In case of binding indirection--chase definitions. |
755 ;; Have to do it here because we execute this command under | |
756 ;; different keymaps, so command-execute may not do the | |
757 ;; right thing there | |
758 (while (vectorp com) (setq com (key-binding com)))) | |
759 nil) | |
760 ;; 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
|
761 ;; `state'. Otherwise, if we switch buffers while executing the |
18129 | 762 ;; 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
|
763 ;; `state'. When we return to the orig buffer, the bindings will be |
18129 | 764 ;; screwed up. |
19078 | 765 (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
|
766 |
18129 | 767 ;; this-command, last-command-char, last-command-event |
768 (setq this-command com) | |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
769 (if (featurep 'xemacs) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
770 ;; XEmacs represents key sequences as vectors |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
771 (setq last-command-event |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
772 (viper-copy-event (viper-seq-last-elt key)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
773 last-command-char (event-to-character last-command-event)) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
774 ;; Emacs represents them as sequences (str or vec) |
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
775 (setq last-command-event |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
776 (viper-copy-event (viper-seq-last-elt key)))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
777 |
18129 | 778 (if (commandp com) |
64485
2273b7101b27
* viper-cmd.el (viper-escape-to-state): bug fix
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64215
diff
changeset
|
779 ;; pretend that current state is the state we excaped to |
2273b7101b27
* viper-cmd.el (viper-escape-to-state): bug fix
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64215
diff
changeset
|
780 (let ((viper-current-state state)) |
18129 | 781 (setq prefix-arg (or prefix-arg arg)) |
782 (command-execute com))) | |
783 ) | |
784 (quit (ding)) | |
785 (error (beep 1)))) | |
786 ;; set state in the new buffer | |
19078 | 787 (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
|
788 |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
789 ;; This is used in order to allow reading characters according to the input |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
790 ;; method. The character is read in emacs and inserted into the buffer. |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
791 ;; If an input method is in effect, this might |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
792 ;; cause several characters to be combined into one. |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
793 ;; Also takes care of the iso-accents mode |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
794 (defun viper-special-read-and-insert-char () |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
795 (viper-set-mode-vars-for 'emacs-state) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
796 (viper-normalize-minor-mode-map-alist) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
797 (if viper-special-input-method |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
798 (viper-set-input-method t)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
799 (if viper-automatic-iso-accents |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
800 (viper-set-iso-accents-mode t)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
801 (condition-case nil |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
802 (let (viper-vi-kbd-minor-mode |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
803 viper-insert-kbd-minor-mode |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
804 viper-emacs-kbd-minor-mode |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
805 ch) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
806 (cond ((and viper-special-input-method |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85890
diff
changeset
|
807 (featurep 'emacs) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
808 (fboundp 'quail-input-method)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
809 ;; (let ...) is used to restore unread-command-events to the |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
810 ;; original state. We don't want anything left in there after |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
811 ;; key translation. (Such left-overs are possible if the user |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
812 ;; types a regular key.) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
813 (let (unread-command-events) |
42288
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
814 ;; The next cmd and viper-set-unread-command-events |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
815 ;; are intended to prevent the input method |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
816 ;; from swallowing ^M, ^Q and other special characters |
68997
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
817 (setq ch (read-char-exclusive)) |
42288
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
818 ;; replace ^M with the newline |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
819 (if (eq ch ?\C-m) (setq ch ?\n)) |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
820 ;; Make sure ^V and ^Q work as quotation chars |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
821 (if (memq ch '(?\C-v ?\C-q)) |
68997
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
822 (setq ch (read-char-exclusive))) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
823 (viper-set-unread-command-events ch) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
824 (quail-input-method nil) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
825 |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
826 (if (and ch (string= quail-current-str "")) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
827 (insert ch) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
828 (insert quail-current-str)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
829 (setq ch (or ch |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
830 (aref quail-current-str |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
831 (1- (length quail-current-str))))) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
832 )) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
833 ((and viper-special-input-method |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85890
diff
changeset
|
834 (featurep 'xemacs) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
835 (fboundp 'quail-start-translation)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
836 ;; same as above but for XEmacs, which doesn't have |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
837 ;; quail-input-method |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
838 (let (unread-command-events) |
68997
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
839 (setq ch (read-char-exclusive)) |
42288
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
840 ;; replace ^M with the newline |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
841 (if (eq ch ?\C-m) (setq ch ?\n)) |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
842 ;; Make sure ^V and ^Q work as quotation chars |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
843 (if (memq ch '(?\C-v ?\C-q)) |
68997
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
844 (setq ch (read-char-exclusive))) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
845 (viper-set-unread-command-events ch) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
846 (quail-start-translation nil) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
847 |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
848 (if (and ch (string= quail-current-str "")) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
849 (insert ch) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
850 (insert quail-current-str)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
851 (setq ch (or ch |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
852 (aref quail-current-str |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
853 (1- (length quail-current-str))))) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
854 )) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
855 ((and (boundp 'iso-accents-mode) iso-accents-mode) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
856 (setq ch (aref (read-key-sequence nil) 0)) |
42288
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
857 ;; replace ^M with the newline |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
858 (if (eq ch ?\C-m) (setq ch ?\n)) |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
859 ;; Make sure ^V and ^Q work as quotation chars |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
860 (if (memq ch '(?\C-v ?\C-q)) |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
861 (setq ch (aref (read-key-sequence nil) 0))) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
862 (insert ch)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
863 (t |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
864 ;;(setq ch (read-char-exclusive)) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
865 (setq ch (aref (read-key-sequence nil) 0)) |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85890
diff
changeset
|
866 (if (featurep 'xemacs) |
72579
5ab6646918c5
2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72516
diff
changeset
|
867 (setq ch (event-to-character ch))) |
42288
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
868 ;; replace ^M with the newline |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
869 (if (eq ch ?\C-m) (setq ch ?\n)) |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
870 ;; Make sure ^V and ^Q work as quotation chars |
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
871 (if (memq ch '(?\C-v ?\C-q)) |
72579
5ab6646918c5
2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72516
diff
changeset
|
872 (progn |
5ab6646918c5
2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72516
diff
changeset
|
873 ;;(setq ch (read-char-exclusive)) |
5ab6646918c5
2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72516
diff
changeset
|
874 (setq ch (aref (read-key-sequence nil) 0)) |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85890
diff
changeset
|
875 (if (featurep 'xemacs) |
72579
5ab6646918c5
2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72516
diff
changeset
|
876 (setq ch (event-to-character ch)))) |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
877 ) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
878 (insert ch)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
879 ) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
880 (setq last-command-event |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85890
diff
changeset
|
881 (viper-copy-event (if (featurep 'xemacs) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
882 (character-to-event ch) ch))) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
883 ) ; let |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
884 (error nil) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
885 ) ; condition-case |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45738
diff
changeset
|
886 |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
887 (viper-set-input-method nil) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
888 (viper-set-iso-accents-mode nil) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
889 (viper-set-mode-vars-for viper-current-state) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
890 ) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
891 |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
892 |
19078 | 893 (defun viper-exec-form-in-vi (form) |
18129 | 894 "Execute FORM in Vi state, regardless of the Ccurrent Vi state." |
895 (let ((buff (current-buffer)) | |
896 result) | |
19078 | 897 (viper-set-mode-vars-for 'vi-state) |
18129 | 898 |
899 (condition-case nil | |
19078 | 900 (let (viper-vi-kbd-minor-mode) ; execute without kbd macros |
74857
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
901 (setq result (eval form))) |
18129 | 902 (error |
903 (signal 'quit nil))) | |
904 | |
905 (if (not (equal buff (current-buffer))) ; cmd switched buffer | |
906 (save-excursion | |
907 (set-buffer buff) | |
19078 | 908 (viper-set-mode-vars-for viper-current-state))) |
909 (viper-set-mode-vars-for viper-current-state) | |
18129 | 910 result)) |
911 | |
19078 | 912 (defun viper-exec-form-in-emacs (form) |
18129 | 913 "Execute FORM in Emacs, temporarily disabling Viper's minor modes. |
19078 | 914 Similar to viper-escape-to-emacs, but accepts forms rather than keystrokes." |
18129 | 915 (let ((buff (current-buffer)) |
916 result) | |
19078 | 917 (viper-set-mode-vars-for 'emacs-state) |
18129 | 918 (setq result (eval form)) |
919 (if (not (equal buff (current-buffer))) ; cmd switched buffer | |
920 (save-excursion | |
921 (set-buffer buff) | |
19078 | 922 (viper-set-mode-vars-for viper-current-state))) |
923 (viper-set-mode-vars-for viper-current-state) | |
18129 | 924 result)) |
925 | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
926 ;; This executes the last kbd event in emacs mode. Is used when we want to |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
927 ;; interpret certain keys directly in emacs (as, for example, in comint mode). |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
928 (defun viper-exec-key-in-emacs (arg) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
929 (interactive "P") |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
930 (viper-escape-to-emacs arg last-command-event)) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
931 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
932 |
18129 | 933 ;; 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
|
934 ;; bindings. By letting Viper know which files these modes are in, it will |
18129 | 935 ;; arrange to reorganize minor-mode-map-alist so that things will work right. |
19078 | 936 (defun viper-harness-minor-mode (load-file) |
99655
700e59a3b82f
* emulation/viper-cmd.el (viper-harness-minor-mode): Fix docstring typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
99595
diff
changeset
|
937 "Familiarize Viper with a minor mode defined in LOAD-FILE. |
18129 | 938 Minor modes that have their own keymaps may overshadow Viper keymaps. |
939 This function is designed to make Viper aware of the packages that define | |
940 such minor modes. | |
941 Usage: | |
19078 | 942 (viper-harness-minor-mode load-file) |
18129 | 943 |
944 LOAD-FILE is a name of the file where the specific minor mode is defined. | |
945 Suffixes such as .el or .elc should be stripped." | |
946 | |
947 (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
|
948 |
19078 | 949 (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
|
950 |
18129 | 951 ;; Change the default for minor-mode-map-alist each time a harnessed minor |
952 ;; mode adds its own keymap to the a-list. | |
64750
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
953 (unless |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
954 (and (fboundp 'add-to-ordered-list) (boundp 'emulation-mode-map-alists)) |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
955 (eval-after-load |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
956 load-file '(setq-default minor-mode-map-alist minor-mode-map-alist))) |
18129 | 957 ) |
958 | |
959 | |
19078 | 960 (defun viper-ESC (arg) |
18129 | 961 "Emulate ESC key in Emacs. |
19078 | 962 Prevents multiple escape keystrokes if viper-no-multiple-ESC is true. |
963 If viper-no-multiple-ESC is 'twice double ESC would ding in vi-state. | |
18129 | 964 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
|
965 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
|
966 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
|
967 a Meta key in this case. When viper-no-multiple-ESC is nil, ESC functions |
18129 | 968 as a Meta key and any number of multiple escapes is allowed." |
969 (interactive "P") | |
970 (let (char) | |
19078 | 971 (cond ((and (not viper-no-multiple-ESC) (eq viper-current-state 'vi-state)) |
972 (setq char (viper-read-char-exclusive)) | |
973 (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
|
974 ((and (eq viper-no-multiple-ESC 'twice) |
19078 | 975 (eq viper-current-state 'vi-state)) |
976 (setq char (viper-read-char-exclusive)) | |
977 (if (= char (string-to-char viper-ESC-key)) | |
18129 | 978 (ding) |
19078 | 979 (viper-escape-to-emacs arg (list ?\e char) ))) |
18129 | 980 (t (ding))) |
981 )) | |
982 | |
19078 | 983 (defun viper-alternate-Meta-key (arg) |
18129 | 984 "Simulate Emacs Meta key." |
985 (interactive "P") | |
986 (sit-for 1) (message "ESC-") | |
19078 | 987 (viper-escape-to-emacs arg '(?\e))) |
988 | |
989 (defun viper-toggle-key-action () | |
990 "Action bound to `viper-toggle-key'." | |
18129 | 991 (interactive) |
19078 | 992 (if (and (< viper-expert-level 2) (equal viper-toggle-key "\C-z")) |
993 (if (viper-window-display-p) | |
994 (viper-iconify) | |
18129 | 995 (suspend-emacs)) |
19078 | 996 (viper-change-state-to-emacs))) |
18129 | 997 |
998 | |
999 ;; Intercept ESC sequences on dumb terminals. | |
1000 ;; Based on the idea contributed by Marcelino Veiga Tuimil <mveiga@dit.upm.es> | |
1001 | |
1002 ;; Check if last key was ESC and if so try to reread it as a function key. | |
1003 ;; But only if there are characters to read during a very short time. | |
1004 ;; Returns the last event, if any. | |
19078 | 1005 (defun viper-envelop-ESC-key () |
18129 | 1006 (let ((event last-input-event) |
1007 (keyseq [nil]) | |
39288
25dc021070bc
2001-09-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
1008 (inhibit-quit t)) |
19078 | 1009 (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
|
1010 (progn |
72516
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1011 ;; Some versions of Emacs (eg., 22.50.8 have a bug, which makes even |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1012 ;; a single ESC into ;; a fast keyseq. To guard against this, we |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1013 ;; added a check if there are other events as well. Keep the next |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1014 ;; line for the next time the bug reappears, so that will remember to |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1015 ;; report it. |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1016 ;;(if (and (viper-fast-keysequence-p) unread-command-events) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1017 (if (viper-fast-keysequence-p) ;; for Emacsen without the above bug |
18129 | 1018 (progn |
64485
2273b7101b27
* viper-cmd.el (viper-escape-to-state): bug fix
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64215
diff
changeset
|
1019 (let (minor-mode-map-alist emulation-mode-map-alists) |
19078 | 1020 (viper-set-unread-command-events event) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1021 (setq keyseq (read-key-sequence nil 'continue-echo)) |
18129 | 1022 ) ; let |
1023 ;; If keyseq translates into something that still has ESC | |
1024 ;; at the beginning, separate ESC from the rest of the seq. | |
1025 ;; In XEmacs we check for events that are keypress meta-key | |
1026 ;; and convert them into [escape key] | |
1027 ;; | |
1028 ;; This is needed for the following reason: | |
1029 ;; If ESC is the first symbol, we interpret it as if the | |
1030 ;; user typed ESC and then quickly some other symbols. | |
1031 ;; If ESC is not the first one, then the key sequence | |
1032 ;; entered was apparently translated into a function key or | |
1033 ;; something (e.g., one may have | |
1034 ;; (define-key function-key-map "\e[192z" [f11]) | |
1035 ;; which would translate the escape-sequence generated by | |
1036 ;; f11 in an xterm window into the symbolic key f11. | |
1037 ;; | |
1038 ;; If `first-key' is not an ESC event, we make it into the | |
1039 ;; 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
|
1040 ;; 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
|
1041 ;; macros. Otherwise, viper-exec-mapped-kbd-macro will think |
19078 | 1042 ;; that the last event was ESC and so it'll execute whatever is |
18129 | 1043 ;; bound to ESC. (Viper macros can't be bound to |
1044 ;; ESC-sequences). | |
1045 (let* ((first-key (elt keyseq 0)) | |
1046 (key-mod (event-modifiers first-key))) | |
27899
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
1047 (cond ((and (viper-ESC-event-p first-key) |
99789
125a6fd7c956
2008-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
99655
diff
changeset
|
1048 (not (viper-translate-all-ESC-keysequences))) |
18129 | 1049 ;; put keys following ESC on the unread list |
1050 ;; and return ESC as the key-sequence | |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
1051 (viper-set-unread-command-events (viper-subseq keyseq 1)) |
18129 | 1052 (setq last-input-event event |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85890
diff
changeset
|
1053 keyseq (if (featurep 'emacs) |
18129 | 1054 "\e" |
1055 (vector (character-to-event ?\e))))) | |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85890
diff
changeset
|
1056 ((and (featurep 'xemacs) |
18129 | 1057 (key-press-event-p first-key) |
1058 (equal '(meta) key-mod)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1059 (viper-set-unread-command-events |
18129 | 1060 (vconcat (vector |
1061 (character-to-event (event-key first-key))) | |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
1062 (viper-subseq keyseq 1))) |
18129 | 1063 (setq last-input-event event |
1064 keyseq (vector (character-to-event ?\e)))) | |
1065 ((eventp first-key) | |
19078 | 1066 (setq last-command-event |
1067 (viper-copy-event first-key))) | |
18129 | 1068 )) |
1069 ) ; end progn | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1070 |
18129 | 1071 ;; this is escape event with nothing after it |
1072 ;; put in unread-command-event and then re-read | |
19078 | 1073 (viper-set-unread-command-events event) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1074 (setq keyseq (read-key-sequence nil)) |
18129 | 1075 )) |
1076 ;; not an escape event | |
1077 (setq keyseq (vector event))) | |
1078 keyseq)) | |
1079 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1080 |
18129 | 1081 |
1082 ;; Listen to ESC key. | |
1083 ;; If a sequence of keys starting with ESC is issued with very short delays, | |
1084 ;; interpret these keys in Emacs mode, so ESC won't be interpreted as a Vi key. | |
19078 | 1085 (defun viper-intercept-ESC-key () |
18129 | 1086 "Function that implements ESC key in Viper emulation of Vi." |
1087 (interactive) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1088 (let ((cmd (or (key-binding (viper-envelop-ESC-key)) |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
1089 '(lambda () (interactive) (error "Viper bell"))))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1090 |
18129 | 1091 ;; call the actual function to execute ESC (if no other symbols followed) |
1092 ;; or the key bound to the ESC sequence (if the sequence was issued | |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
1093 ;; with very short delay between characters). |
19078 | 1094 (if (eq cmd 'viper-intercept-ESC-key) |
18129 | 1095 (setq cmd |
19078 | 1096 (cond ((eq viper-current-state 'vi-state) |
1097 'viper-ESC) | |
1098 ((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
|
1099 'viper-exit-insert-state) |
19078 | 1100 ((eq viper-current-state 'replace-state) |
1101 'viper-replace-state-exit-cmd) | |
1102 (t 'viper-change-state-to-vi) | |
18129 | 1103 ))) |
1104 (call-interactively cmd))) | |
1105 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1106 |
18129 | 1107 |
1108 | |
1109 ;; prefix argument for Vi mode | |
1110 | |
1111 ;; In Vi mode, prefix argument is a dotted pair (NUM . COM) where NUM | |
1112 ;; represents the numeric value of the prefix argument and COM represents | |
1113 ;; command prefix such as "c", "d", "m" and "y". | |
1114 | |
1115 ;; Get value part of prefix-argument ARG. | |
19078 | 1116 (defsubst viper-p-val (arg) |
18129 | 1117 (cond ((null arg) 1) |
1118 ((consp arg) | |
1119 (if (or (null (car arg)) (equal (car arg) '(nil))) | |
1120 1 (car arg))) | |
1121 (t arg))) | |
1122 | |
1123 ;; Get raw value part of prefix-argument ARG. | |
19078 | 1124 (defsubst viper-P-val (arg) |
18129 | 1125 (cond ((consp arg) (car arg)) |
1126 (t arg))) | |
1127 | |
1128 ;; Get com part of prefix-argument ARG. | |
19078 | 1129 (defsubst viper-getcom (arg) |
18129 | 1130 (cond ((null arg) nil) |
1131 ((consp arg) (cdr arg)) | |
1132 (t nil))) | |
1133 | |
1134 ;; Get com part of prefix-argument ARG and modify it. | |
19078 | 1135 (defun viper-getCom (arg) |
1136 (let ((com (viper-getcom arg))) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1137 (cond ((viper= com ?c) ?c) |
19078 | 1138 ;; Previously, ?c was being converted to ?C, but this prevented |
1139 ;; multiline replace regions. | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1140 ;;((viper= com ?c) ?C) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1141 ((viper= com ?d) ?D) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1142 ((viper= com ?y) ?Y) |
18129 | 1143 (t com)))) |
1144 | |
1145 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1146 ;; Compute numeric prefix arg value. |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1147 ;; Invoked by EVENT-CHAR. COM is the command part obtained so far. |
21940 | 1148 (defun viper-prefix-arg-value (event-char com) |
19078 | 1149 (let ((viper-intermediate-command 'viper-digit-argument) |
1150 value func) | |
18129 | 1151 ;; read while number |
21940 | 1152 (while (and (viper-characterp event-char) |
1153 (>= event-char ?0) (<= event-char ?9)) | |
1154 (setq value (+ (* (if (integerp value) value 0) 10) (- event-char ?0))) | |
1155 (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
|
1156 |
18129 | 1157 (setq prefix-arg value) |
1158 (if com (setq prefix-arg (cons prefix-arg com))) | |
21940 | 1159 (while (eq event-char ?U) |
19078 | 1160 (viper-describe-arg prefix-arg) |
21940 | 1161 (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
|
1162 |
19078 | 1163 (if (or com (and (not (eq viper-current-state 'vi-state)) |
18129 | 1164 ;; make sure it is a Vi command |
21940 | 1165 (viper-characterp event-char) |
1166 (viper-vi-command-p event-char) | |
18129 | 1167 )) |
1168 ;; If appears to be one of the vi commands, | |
1169 ;; then execute it with funcall and clear prefix-arg in order to not | |
1170 ;; confuse subsequent commands | |
1171 (progn | |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1172 ;; last-command-event 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
|
1173 ;; last. If com is not nil, the viper-digit-argument command was |
19078 | 1174 ;; 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
|
1175 ;; etc., i.e., the user typed, say, d2. In this case, `com' would be |
19078 | 1176 ;; `d', `w', etc. If viper-digit-argument was invoked by |
1177 ;; viper-escape-to-vi (which is indicated by the fact that the | |
21940 | 1178 ;; 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
|
1179 ;; vi command to be executed (e.g., `d', `w', etc). Again, |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1180 ;; last-command-event must make emacs believe that this is the command |
19078 | 1181 ;; we typed. |
21940 | 1182 (cond ((eq event-char 'return) (setq event-char ?\C-m)) |
1183 ((eq event-char 'delete) (setq event-char ?\C-?)) | |
1184 ((eq event-char 'backspace) (setq event-char ?\C-h)) | |
1185 ((eq event-char 'space) (setq event-char ?\ ))) | |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1186 (setq last-command-event (or com event-char)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1187 (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
|
1188 `(key-binding (char-to-string ,event-char)))) |
18129 | 1189 (funcall func prefix-arg) |
1190 (setq prefix-arg nil)) | |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1191 ;; 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
|
1192 (viper-set-unread-command-events event-char)) |
18129 | 1193 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1194 |
18129 | 1195 |
1196 ;; Vi operator as prefix argument." | |
19078 | 1197 (defun viper-prefix-arg-com (char value com) |
18129 | 1198 (let ((cont t) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1199 cmd-info |
18958 | 1200 cmd-to-exec-at-end) |
18129 | 1201 (while (and cont |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1202 (viper-memq-char char |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1203 (list ?c ?d ?y ?! ?< ?> ?= ?# ?r ?R ?\" |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1204 viper-buffer-search-char))) |
18129 | 1205 (if com |
1206 ;; this means that we already have a command character, so we | |
1207 ;; construct a com list and exit while. however, if char is " | |
1208 ;; it is an error. | |
1209 (progn | |
1210 ;; new com is (CHAR . OLDCOM) | |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
1211 (if (viper-memq-char char '(?# ?\")) (error "Viper bell")) |
18129 | 1212 (setq com (cons char com)) |
1213 (setq cont nil)) | |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1214 ;; 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
|
1215 ;; ", 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
|
1216 ;; 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
|
1217 ;; loop. |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1218 (cond ((viper-memq-char char '(?! ?=)) |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1219 (setq com char) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1220 (setq char (read-char)) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1221 (setq cont nil)) |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1222 ((viper= char ?#) |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1223 ;; 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
|
1224 (setq com (+ 128 (read-char))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1225 (setq char (read-char))) |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1226 ((viper= char ?\") |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1227 (let ((reg (read-char))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1228 (if (viper-valid-register reg) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1229 (setq viper-use-register reg) |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
1230 (error "Viper bell")) |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1231 (setq char (read-char)))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1232 (t |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1233 (setq com char) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1234 (setq char (read-char)))))) |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1235 |
73486
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1236 (if (atom com) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1237 ;; `com' is a single char, so we construct the command argument |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1238 ;; and if `char' is `?', we describe the arg; otherwise |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1239 ;; we prepare the command that will be executed at the end. |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1240 (progn |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1241 (setq cmd-info (cons value com)) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1242 (while (viper= char ?U) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1243 (viper-describe-arg cmd-info) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1244 (setq char (read-char))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1245 ;; `char' is a movement cmd, a digit arg cmd, or a register cmd---so |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1246 ;; we execute it at the very end |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1247 (or (viper-movement-command-p char) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1248 (viper-digit-command-p char) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1249 (viper-regsuffix-command-p char) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1250 (viper= char ?!) ; bang command |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1251 (viper= char ?g) ; the gg command (like G0) |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
1252 (error "Viper bell")) |
73486
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1253 (setq cmd-to-exec-at-end |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1254 (viper-exec-form-in-vi |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1255 `(key-binding (char-to-string ,char))))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1256 |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1257 ;; as com is non-nil, this means that we have a command to execute |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1258 (if (viper-memq-char (car com) '(?r ?R)) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1259 ;; execute apropriate region command. |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1260 (let ((char (car com)) (com (cdr com))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1261 (setq prefix-arg (cons value com)) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1262 (if (viper= char ?r) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1263 (viper-region prefix-arg) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1264 (viper-Region prefix-arg)) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1265 ;; reset prefix-arg |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1266 (setq prefix-arg nil)) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1267 ;; otherwise, reset prefix arg and call appropriate command |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1268 (setq value (if (null value) 1 value)) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1269 (setq prefix-arg nil) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1270 (cond |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1271 ;; If we change ?C to ?c here, then cc will enter replacement mode |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1272 ;; rather than deleting lines. However, it will affect 1 less line |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1273 ;; than normal. We decided to not use replacement mode here and |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1274 ;; follow Vi, since replacement mode on n full lines can be achieved |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1275 ;; with nC. |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1276 ((equal com '(?c . ?c)) (viper-line (cons value ?C))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1277 ((equal com '(?d . ?d)) (viper-line (cons value ?D))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1278 ((equal com '(?d . ?y)) (viper-yank-defun)) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1279 ((equal com '(?y . ?y)) (viper-line (cons value ?Y))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1280 ((equal com '(?< . ?<)) (viper-line (cons value ?<))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1281 ((equal com '(?> . ?>)) (viper-line (cons value ?>))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1282 ((equal com '(?! . ?!)) (viper-line (cons value ?!))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1283 ((equal com '(?= . ?=)) (viper-line (cons value ?=))) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1284 ;; gg acts as G0 |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1285 ((equal (car com) ?g) (viper-goto-line 0)) |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
1286 (t (error "Viper bell"))))) |
73486
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1287 |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1288 (if cmd-to-exec-at-end |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1289 (progn |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1290 (setq last-command-event |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1291 (viper-copy-event |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85890
diff
changeset
|
1292 (if (featurep 'xemacs) (character-to-event char) char))) |
81331
c3779fe5830e
2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
75346
diff
changeset
|
1293 (condition-case err |
73486
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1294 (funcall cmd-to-exec-at-end cmd-info) |
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1295 (error |
81331
c3779fe5830e
2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
75346
diff
changeset
|
1296 (error "%s" (error-message-string err)))))) |
73486
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1297 )) |
18129 | 1298 |
19078 | 1299 (defun viper-describe-arg (arg) |
18129 | 1300 (let (val com) |
19078 | 1301 (setq val (viper-P-val arg) |
1302 com (viper-getcom arg)) | |
18129 | 1303 (if (null val) |
1304 (if (null com) | |
1305 (message "Value is nil, and command is nil") | |
1306 (message "Value is nil, and command is `%c'" com)) | |
1307 (if (null com) | |
1308 (message "Value is `%d', and command is nil" val) | |
1309 (message "Value is `%d', and command is `%c'" val com))))) | |
1310 | |
19078 | 1311 (defun viper-digit-argument (arg) |
18129 | 1312 "Begin numeric argument for the next command." |
1313 (interactive "P") | |
19078 | 1314 (viper-leave-region-active) |
1315 (viper-prefix-arg-value | |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1316 last-command-event (if (consp arg) (cdr arg) nil))) |
18129 | 1317 |
19078 | 1318 (defun viper-command-argument (arg) |
18129 | 1319 "Accept a motion command as an argument." |
1320 (interactive "P") | |
19078 | 1321 (let ((viper-intermediate-command 'viper-command-argument)) |
18129 | 1322 (condition-case nil |
19078 | 1323 (viper-prefix-arg-com |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1324 last-command-event |
18129 | 1325 (cond ((null arg) nil) |
1326 ((consp arg) (car arg)) | |
1327 ((integerp arg) arg) | |
19078 | 1328 (t (error viper-InvalidCommandArgument))) |
18129 | 1329 (cond ((null arg) nil) |
1330 ((consp arg) (cdr arg)) | |
1331 ((integerp arg) nil) | |
19078 | 1332 (t (error viper-InvalidCommandArgument)))) |
1333 (quit (setq viper-use-register nil) | |
18129 | 1334 (signal 'quit nil))) |
19078 | 1335 (viper-deactivate-mark))) |
18129 | 1336 |
1337 | |
1338 ;; repeat last destructive command | |
1339 | |
1340 ;; Append region to text in register REG. | |
1341 ;; START and END are buffer positions indicating what to append. | |
19078 | 1342 (defsubst viper-append-to-register (reg start end) |
18129 | 1343 (set-register reg (concat (if (stringp (get-register reg)) |
1344 (get-register reg) "") | |
1345 (buffer-substring start end)))) | |
1346 | |
19078 | 1347 ;; Saves last inserted text for possible use by viper-repeat command. |
1348 (defun viper-save-last-insertion (beg end) | |
19756 | 1349 (condition-case nil |
1350 (setq viper-last-insertion (buffer-substring beg end)) | |
1351 (error | |
1352 ;; beg or end marker are somehow screwed up | |
1353 (setq viper-last-insertion nil))) | |
19078 | 1354 (setq viper-last-insertion (buffer-substring beg end)) |
1355 (or (< (length viper-d-com) 5) | |
1356 (setcar (nthcdr 4 viper-d-com) viper-last-insertion)) | |
1357 (or (null viper-command-ring) | |
1358 (ring-empty-p viper-command-ring) | |
18129 | 1359 (progn |
19078 | 1360 (setcar (nthcdr 4 (viper-current-ring-item viper-command-ring)) |
1361 viper-last-insertion) | |
18129 | 1362 ;; del most recent elt, if identical to the second most-recent |
19078 | 1363 (viper-cleanup-ring viper-command-ring))) |
18129 | 1364 ) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1365 |
19078 | 1366 (defsubst viper-yank-last-insertion () |
1367 "Inserts the text saved by the previous viper-save-last-insertion command." | |
18129 | 1368 (condition-case nil |
19078 | 1369 (insert viper-last-insertion) |
18129 | 1370 (error nil))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1371 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1372 |
18129 | 1373 ;; define functions to be executed |
1374 | |
1375 ;; invoked by the `C' command | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1376 (defun viper-exec-change (m-com com) |
19078 | 1377 (or (and (markerp viper-com-point) (marker-position viper-com-point)) |
1378 (set-marker viper-com-point (point) (current-buffer))) | |
18129 | 1379 ;; handle C cmd at the eol and at eob. |
19078 | 1380 (if (or (and (eolp) (= viper-com-point (point))) |
1381 (= viper-com-point (point-max))) | |
18129 | 1382 (progn |
1383 (insert " ")(backward-char 1))) | |
19078 | 1384 (if (= viper-com-point (point)) |
1385 (viper-forward-char-carefully)) | |
1386 (set-mark viper-com-point) | |
1387 (if (eq m-com 'viper-next-line-at-bol) | |
1388 (viper-enlarge-region (mark t) (point))) | |
1389 (if (< (point) (mark t)) | |
1390 (exchange-point-and-mark)) | |
1391 (if (eq (preceding-char) ?\n) | |
1392 (viper-backward-char-carefully)) ; give back the newline | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1393 (if (eq viper-intermediate-command 'viper-repeat) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1394 (viper-change-subr (mark t) (point)) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1395 (viper-change (mark t) (point)) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1396 )) |
19078 | 1397 |
1398 ;; this is invoked by viper-substitute-line | |
1399 (defun viper-exec-Change (m-com com) | |
18129 | 1400 (save-excursion |
19078 | 1401 (set-mark viper-com-point) |
1402 (viper-enlarge-region (mark t) (point)) | |
1403 (if viper-use-register | |
18129 | 1404 (progn |
19078 | 1405 (cond ((viper-valid-register viper-use-register '(letter digit)) |
18129 | 1406 (copy-to-register |
19078 | 1407 viper-use-register (mark t) (point) nil)) |
1408 ((viper-valid-register viper-use-register '(Letter)) | |
1409 (viper-append-to-register | |
1410 (downcase viper-use-register) (mark t) (point))) | |
1411 (t (setq viper-use-register nil) | |
1412 (error viper-InvalidRegister viper-use-register))) | |
1413 (setq viper-use-register nil))) | |
18129 | 1414 (delete-region (mark t) (point))) |
1415 (open-line 1) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1416 (if (eq viper-intermediate-command 'viper-repeat) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1417 (viper-yank-last-insertion) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1418 (viper-change-state-to-insert) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1419 )) |
19078 | 1420 |
1421 (defun viper-exec-delete (m-com com) | |
1422 (or (and (markerp viper-com-point) (marker-position viper-com-point)) | |
1423 (set-marker viper-com-point (point) (current-buffer))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1424 (let (chars-deleted) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1425 (if viper-use-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1426 (progn |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1427 (cond ((viper-valid-register viper-use-register '(letter digit)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1428 (copy-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1429 viper-use-register viper-com-point (point) nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1430 ((viper-valid-register viper-use-register '(Letter)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1431 (viper-append-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1432 (downcase viper-use-register) viper-com-point (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1433 (t (setq viper-use-register nil) |
19078 | 1434 (error viper-InvalidRegister viper-use-register))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1435 (setq viper-use-register nil))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1436 (setq last-command |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1437 (if (eq last-command 'd-command) 'kill-region nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1438 (setq chars-deleted (abs (- (point) viper-com-point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1439 (if (> chars-deleted viper-change-notification-threshold) |
64750
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
1440 (unless (viper-is-in-minibuffer) |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
1441 (message "Deleted %d characters" chars-deleted))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1442 (kill-region viper-com-point (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1443 (setq this-command 'd-command) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1444 (if viper-ex-style-motion |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1445 (if (and (eolp) (not (bolp))) (backward-char 1))))) |
18129 | 1446 |
19078 | 1447 (defun viper-exec-Delete (m-com com) |
18129 | 1448 (save-excursion |
19078 | 1449 (set-mark viper-com-point) |
1450 (viper-enlarge-region (mark t) (point)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1451 (let (lines-deleted) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1452 (if viper-use-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1453 (progn |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1454 (cond ((viper-valid-register viper-use-register '(letter digit)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1455 (copy-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1456 viper-use-register (mark t) (point) nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1457 ((viper-valid-register viper-use-register '(Letter)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1458 (viper-append-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1459 (downcase viper-use-register) (mark t) (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1460 (t (setq viper-use-register nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1461 (error viper-InvalidRegister viper-use-register))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1462 (setq viper-use-register nil))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1463 (setq last-command |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1464 (if (eq last-command 'D-command) 'kill-region nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1465 (setq lines-deleted (count-lines (point) viper-com-point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1466 (if (> lines-deleted viper-change-notification-threshold) |
64750
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
1467 (unless (viper-is-in-minibuffer) |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
1468 (message "Deleted %d lines" lines-deleted))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1469 (kill-region (mark t) (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1470 (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
|
1471 (back-to-indentation))) |
18129 | 1472 |
21940 | 1473 ;; save region |
19078 | 1474 (defun viper-exec-yank (m-com com) |
1475 (or (and (markerp viper-com-point) (marker-position viper-com-point)) | |
1476 (set-marker viper-com-point (point) (current-buffer))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1477 (let (chars-saved) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1478 (if viper-use-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1479 (progn |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1480 (cond ((viper-valid-register viper-use-register '(letter digit)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1481 (copy-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1482 viper-use-register viper-com-point (point) nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1483 ((viper-valid-register viper-use-register '(Letter)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1484 (viper-append-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1485 (downcase viper-use-register) viper-com-point (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1486 (t (setq viper-use-register nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1487 (error viper-InvalidRegister viper-use-register))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1488 (setq viper-use-register nil))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1489 (setq last-command nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1490 (copy-region-as-kill viper-com-point (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1491 (setq chars-saved (abs (- (point) viper-com-point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1492 (if (> chars-saved viper-change-notification-threshold) |
64750
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
1493 (unless (viper-is-in-minibuffer) |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
1494 (message "Saved %d characters" chars-saved))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1495 (goto-char viper-com-point))) |
19078 | 1496 |
21940 | 1497 ;; save lines |
19078 | 1498 (defun viper-exec-Yank (m-com com) |
18129 | 1499 (save-excursion |
19078 | 1500 (set-mark viper-com-point) |
1501 (viper-enlarge-region (mark t) (point)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1502 (let (lines-saved) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1503 (if viper-use-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1504 (progn |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1505 (cond ((viper-valid-register viper-use-register '(letter digit)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1506 (copy-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1507 viper-use-register (mark t) (point) nil)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1508 ((viper-valid-register viper-use-register '(Letter)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1509 (viper-append-to-register |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1510 (downcase viper-use-register) (mark t) (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1511 (t (setq viper-use-register nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1512 (error viper-InvalidRegister viper-use-register))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1513 (setq viper-use-register nil))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1514 (setq last-command nil) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1515 (copy-region-as-kill (mark t) (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1516 (setq lines-saved (count-lines (mark t) (point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1517 (if (> lines-saved viper-change-notification-threshold) |
64750
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
1518 (unless (viper-is-in-minibuffer) |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
1519 (message "Saved %d lines" lines-saved))))) |
19078 | 1520 (viper-deactivate-mark) |
1521 (goto-char viper-com-point)) | |
1522 | |
1523 (defun viper-exec-bang (m-com com) | |
18129 | 1524 (save-excursion |
19078 | 1525 (set-mark viper-com-point) |
1526 (viper-enlarge-region (mark t) (point)) | |
18958 | 1527 (exchange-point-and-mark) |
18129 | 1528 (shell-command-on-region |
1529 (mark t) (point) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1530 (if (viper= com ?!) |
19078 | 1531 (setq viper-last-shell-com |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1532 (viper-read-string-with-history |
18129 | 1533 "!" |
1534 nil | |
19078 | 1535 'viper-shell-history |
1536 (car viper-shell-history) | |
18129 | 1537 )) |
19078 | 1538 viper-last-shell-com) |
18129 | 1539 t))) |
1540 | |
19078 | 1541 (defun viper-exec-equals (m-com com) |
18129 | 1542 (save-excursion |
19078 | 1543 (set-mark viper-com-point) |
1544 (viper-enlarge-region (mark t) (point)) | |
18129 | 1545 (if (> (mark t) (point)) (exchange-point-and-mark)) |
1546 (indent-region (mark t) (point) nil))) | |
1547 | |
19078 | 1548 (defun viper-exec-shift (m-com com) |
18129 | 1549 (save-excursion |
19078 | 1550 (set-mark viper-com-point) |
1551 (viper-enlarge-region (mark t) (point)) | |
18129 | 1552 (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
|
1553 (indent-rigidly (mark t) (point) |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1554 (if (viper= com ?>) |
19078 | 1555 viper-shift-width |
1556 (- viper-shift-width)))) | |
18129 | 1557 ;; return point to where it was before shift |
19078 | 1558 (goto-char viper-com-point)) |
18129 | 1559 |
1560 ;; this is needed because some commands fake com by setting it to ?r, which | |
1561 ;; denotes repeated insert command. | |
19078 | 1562 (defsubst viper-exec-dummy (m-com com) |
18129 | 1563 nil) |
1564 | |
19078 | 1565 (defun viper-exec-buffer-search (m-com com) |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
1566 (setq viper-s-string |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
1567 (regexp-quote (buffer-substring (point) viper-com-point))) |
19078 | 1568 (setq viper-s-forward t) |
1569 (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
|
1570 (setq viper-intermediate-command 'viper-exec-buffer-search) |
19078 | 1571 (viper-search viper-s-string viper-s-forward 1)) |
1572 | |
1573 (defvar viper-exec-array (make-vector 128 nil)) | |
18129 | 1574 |
1575 ;; 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
|
1576 ;; without affecting other functions. Buffer search can now be bound |
18129 | 1577 ;; to any character. |
1578 | |
19078 | 1579 (aset viper-exec-array ?c 'viper-exec-change) |
1580 (aset viper-exec-array ?C 'viper-exec-Change) | |
1581 (aset viper-exec-array ?d 'viper-exec-delete) | |
1582 (aset viper-exec-array ?D 'viper-exec-Delete) | |
1583 (aset viper-exec-array ?y 'viper-exec-yank) | |
1584 (aset viper-exec-array ?Y 'viper-exec-Yank) | |
1585 (aset viper-exec-array ?r 'viper-exec-dummy) | |
1586 (aset viper-exec-array ?! 'viper-exec-bang) | |
1587 (aset viper-exec-array ?< 'viper-exec-shift) | |
1588 (aset viper-exec-array ?> 'viper-exec-shift) | |
1589 (aset viper-exec-array ?= 'viper-exec-equals) | |
18129 | 1590 |
1591 | |
1592 | |
1593 ;; 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
|
1594 ;; destructive command on the region specified by the movement command. For |
19078 | 1595 ;; instance, if the user types cw, then the command viper-forward-word will |
1596 ;; call viper-execute-com to execute viper-exec-change, which eventually will | |
1597 ;; call viper-change to invoke the replace mode on the region. | |
18129 | 1598 ;; |
19078 | 1599 ;; The var viper-d-com is set to (M-COM VAL COM REG INSETED-TEXT COMMAND-KEYS) |
1600 ;; via a call to viper-set-destructive-command, for later use by viper-repeat. | |
1601 (defun viper-execute-com (m-com val com) | |
1602 (let ((reg viper-use-register)) | |
18129 | 1603 ;; this is the special command `#' |
1604 (if (> com 128) | |
19078 | 1605 (viper-special-prefix-com (- com 128)) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1606 (let ((fn (aref viper-exec-array com))) |
18129 | 1607 (if (null fn) |
19078 | 1608 (error "%c: %s" com viper-InvalidViCommand) |
18129 | 1609 (funcall fn m-com com)))) |
19078 | 1610 (if (viper-dotable-command-p com) |
1611 (viper-set-destructive-command | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
1612 (list m-com val com reg nil nil))) |
18129 | 1613 )) |
1614 | |
1615 | |
19078 | 1616 (defun viper-repeat (arg) |
18129 | 1617 "Re-execute last destructive command. |
19078 | 1618 Use the info in viper-d-com, which has the form |
18129 | 1619 \(com val ch reg inserted-text command-keys\), |
1620 where `com' is the command to be re-executed, `val' is the | |
1621 argument to `com', `ch' is a flag for repeat, and `reg' is optional; | |
1622 if it exists, it is the name of the register for `com'. | |
1623 If the prefix argument, ARG, is non-nil, it is used instead of `val'." | |
1624 (interactive "P") | |
1625 (let ((save-point (point)) ; save point before repeating prev cmd | |
1626 ;; Pass along that we are repeating a destructive command | |
19078 | 1627 ;; This tells viper-set-destructive-command not to update |
1628 ;; viper-command-ring | |
1629 (viper-intermediate-command 'viper-repeat)) | |
1630 (if (eq last-command 'viper-undo) | |
1631 ;; if the last command was viper-undo, then undo-more | |
1632 (viper-undo-more) | |
1633 ;; otherwise execute the command stored in viper-d-com. if arg is | |
1634 ;; non-nil its prefix value is used as new prefix value for the command. | |
1635 (let ((m-com (car viper-d-com)) | |
1636 (val (viper-P-val arg)) | |
1637 (com (nth 2 viper-d-com)) | |
1638 (reg (nth 3 viper-d-com))) | |
1639 (if (null val) (setq val (nth 1 viper-d-com))) | |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33842
diff
changeset
|
1640 (if (null m-com) (error "No previous command to repeat")) |
19078 | 1641 (setq viper-use-register reg) |
1642 (if (nth 4 viper-d-com) ; text inserted by command | |
1643 (setq viper-last-insertion (nth 4 viper-d-com) | |
1644 viper-d-char (nth 4 viper-d-com))) | |
18129 | 1645 (funcall m-com (cons val com)) |
19078 | 1646 (cond ((and (< save-point (point)) viper-keep-point-on-repeat) |
18839 | 1647 (goto-char save-point)) ; go back to before repeat. |
19462 | 1648 ((and (< save-point (point)) viper-ex-style-editing) |
18839 | 1649 (or (bolp) (backward-char 1)))) |
18129 | 1650 (if (and (eolp) (not (bolp))) |
1651 (backward-char 1)) | |
1652 )) | |
19462 | 1653 (viper-adjust-undo) ; take care of undo |
18129 | 1654 ;; 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
|
1655 ;; just executed a command from that ring. So, push it on the ring again. |
19078 | 1656 ;; If we are just executing previous command , then don't push viper-d-com |
1657 ;; 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
|
1658 ;; the inserted text may be nil). Besides, in this case, the command |
18129 | 1659 ;; executed by `.' is already on the ring. |
19078 | 1660 (if (eq last-command 'viper-display-current-destructive-command) |
1661 (viper-push-onto-ring viper-d-com 'viper-command-ring)) | |
1662 (viper-deactivate-mark) | |
18129 | 1663 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1664 |
19078 | 1665 (defun viper-repeat-from-history () |
18129 | 1666 "Repeat a destructive command from history. |
19078 | 1667 Doesn't change viper-command-ring in any way, so `.' will work as before |
18129 | 1668 executing this command. |
1669 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
|
1670 the second character is a digit 0 to 9. The digit indicates which |
18129 | 1671 history command to execute. `<char>0' is equivalent to `.', `<char>1' |
1672 invokes the command before that, etc." | |
1673 (interactive) | |
19078 | 1674 (let* ((viper-intermediate-command 'repeating-display-destructive-command) |
1675 (idx (cond (viper-this-kbd-macro | |
18129 | 1676 (string-to-number |
19078 | 1677 (symbol-name (elt viper-this-kbd-macro 1)))) |
18129 | 1678 (t 0))) |
1679 (num idx) | |
19078 | 1680 (viper-d-com viper-d-com)) |
18129 | 1681 |
1682 (or (and (numberp num) (<= 0 num) (<= num 9)) | |
1683 (progn | |
1684 (setq idx 0 | |
1685 num 0) | |
1686 (message | |
19078 | 1687 "`viper-repeat-from-history' must be invoked as a Vi macro bound to `<key><digit>'"))) |
18129 | 1688 (while (< 0 num) |
19078 | 1689 (setq viper-d-com (viper-special-ring-rotate1 viper-command-ring -1)) |
18129 | 1690 (setq num (1- num))) |
19078 | 1691 (viper-repeat nil) |
18129 | 1692 (while (> idx num) |
19078 | 1693 (viper-special-ring-rotate1 viper-command-ring 1) |
18129 | 1694 (setq num (1+ num))) |
1695 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1696 |
18129 | 1697 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
1698 ;; The hash-command. It is invoked interactively by the key sequence #<char>. |
19078 | 1699 ;; The chars that can follow `#' are determined by viper-hash-command-p |
1700 (defun viper-special-prefix-com (char) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1701 (cond ((viper= char ?c) |
19078 | 1702 (downcase-region (min viper-com-point (point)) |
1703 (max viper-com-point (point)))) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1704 ((viper= char ?C) |
19078 | 1705 (upcase-region (min viper-com-point (point)) |
1706 (max viper-com-point (point)))) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1707 ((viper= char ?g) |
19078 | 1708 (push-mark viper-com-point t) |
73486
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
1709 ;; execute the last emacs kbd macro on each line of the region |
19078 | 1710 (viper-global-execute)) |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1711 ((viper= char ?q) |
19078 | 1712 (push-mark viper-com-point t) |
1713 (viper-quote-region)) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1714 ((viper= char ?s) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
1715 (funcall viper-spell-function viper-com-point (point))) |
19078 | 1716 (t (error "#%c: %s" char viper-InvalidViCommand)))) |
18129 | 1717 |
1718 | |
1719 ;; undoing | |
1720 | |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1721 ;; hook used inside undo |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1722 (defvar viper-undo-functions nil) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1723 |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1724 ;; Runs viper-before-change-functions inside before-change-functions |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1725 (defun viper-undo-sentinel (beg end length) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1726 (run-hook-with-args 'viper-undo-functions beg end length)) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1727 |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1728 (add-hook 'after-change-functions 'viper-undo-sentinel) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1729 |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1730 ;; Hook used in viper-undo |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1731 (defun viper-after-change-undo-hook (beg end len) |
72579
5ab6646918c5
2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72516
diff
changeset
|
1732 (if (and (boundp 'undo-in-progress) undo-in-progress) |
72516
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1733 (setq undo-beg-posn beg |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1734 undo-end-posn (or end beg)) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1735 ;; some other hooks may be changing various text properties in |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1736 ;; the buffer in response to 'undo'; so remove this hook to avoid |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1737 ;; its repeated invocation |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1738 (remove-hook 'viper-undo-functions 'viper-after-change-undo-hook 'local) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1739 )) |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1740 |
19078 | 1741 (defun viper-undo () |
18129 | 1742 "Undo previous change." |
1743 (interactive) | |
1744 (message "undo!") | |
1745 (let ((modified (buffer-modified-p)) | |
1746 (before-undo-pt (point-marker)) | |
1747 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
|
1748 |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1749 ;; the viper-after-change-undo-hook removes itself after the 1st invocation |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1750 (add-hook 'viper-undo-functions 'viper-after-change-undo-hook nil 'local) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1751 |
18129 | 1752 (undo-start) |
1753 (undo-more 2) | |
72516
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1754 ;;(setq undo-beg-posn (or undo-beg-posn (point)) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1755 ;; undo-end-posn (or undo-end-posn (point))) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1756 ;;(setq undo-beg-posn (or undo-beg-posn before-undo-pt) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1757 ;; undo-end-posn (or undo-end-posn undo-beg-posn)) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1758 |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1759 (if (and undo-beg-posn undo-end-posn) |
18129 | 1760 (progn |
72516
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1761 (goto-char undo-beg-posn) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1762 (sit-for 0) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1763 (if (and viper-keep-point-on-undo |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1764 (pos-visible-in-window-p before-undo-pt)) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1765 (progn |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1766 (push-mark (point-marker) t) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1767 (viper-sit-for-short 300) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1768 (goto-char undo-end-posn) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1769 (viper-sit-for-short 300) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1770 (if (pos-visible-in-window-p undo-beg-posn) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1771 (goto-char before-undo-pt) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1772 (goto-char undo-beg-posn))) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1773 (push-mark before-undo-pt t)) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1774 )) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
1775 |
18129 | 1776 (if (and (eolp) (not (bolp))) (backward-char 1)) |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1777 ) |
19078 | 1778 (setq this-command 'viper-undo)) |
18129 | 1779 |
1780 ;; Continue undoing previous changes. | |
19078 | 1781 (defun viper-undo-more () |
18129 | 1782 (message "undo more!") |
1783 (condition-case nil | |
1784 (undo-more 1) | |
1785 (error (beep) | |
1786 (message "No further undo information in this buffer"))) | |
1787 (if (and (eolp) (not (bolp))) (backward-char 1)) | |
19078 | 1788 (setq this-command 'viper-undo)) |
18129 | 1789 |
1790 ;; The following two functions are used to set up undo properly. | |
1791 ;; 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
|
1792 ;; they are undone all at once. |
19078 | 1793 (defun viper-adjust-undo () |
19462 | 1794 (if viper-undo-needs-adjustment |
1795 (let ((inhibit-quit t) | |
1796 tmp tmp2) | |
1797 (setq viper-undo-needs-adjustment nil) | |
1798 (if (listp buffer-undo-list) | |
1799 (if (setq tmp (memq viper-buffer-undo-list-mark buffer-undo-list)) | |
1800 (progn | |
1801 (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
|
1802 |
19462 | 1803 ;; cut tail from buffer-undo-list temporarily by direct |
1804 ;; manipulation with pointers in buffer-undo-list | |
1805 (setcdr tmp nil) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1806 |
19462 | 1807 (setq buffer-undo-list (delq nil buffer-undo-list)) |
1808 (setq buffer-undo-list | |
1809 (delq viper-buffer-undo-list-mark buffer-undo-list)) | |
1810 ;; restore tail of buffer-undo-list | |
1811 (setq buffer-undo-list (nconc buffer-undo-list tmp2))) | |
1812 (setq buffer-undo-list (delq nil buffer-undo-list))))) | |
1813 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1814 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1815 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1816 (defun viper-set-complex-command-for-undo () |
18129 | 1817 (if (listp buffer-undo-list) |
19078 | 1818 (if (not viper-undo-needs-adjustment) |
18129 | 1819 (let ((inhibit-quit t)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1820 (setq buffer-undo-list |
19078 | 1821 (cons viper-buffer-undo-list-mark buffer-undo-list)) |
1822 (setq viper-undo-needs-adjustment t))))) | |
18129 | 1823 |
1824 | |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1825 ;;; Viper's destructive Command ring utilities |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1826 |
19078 | 1827 (defun viper-display-current-destructive-command () |
1828 (let ((text (nth 4 viper-d-com)) | |
1829 (keys (nth 5 viper-d-com)) | |
18129 | 1830 (max-text-len 30)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1831 |
19078 | 1832 (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
|
1833 |
18129 | 1834 (message " `.' runs %s%s" |
19078 | 1835 (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
|
1836 (viper-abbreviate-string |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
1837 (if (featurep 'xemacs) |
93615
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
1838 (replace-in-string ; xemacs |
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
1839 (cond ((characterp text) (char-to-string text)) |
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
1840 ((stringp text) text) |
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
1841 (t "")) |
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
1842 "\n" "^J") |
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
1843 text ; emacs |
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
1844 ) |
19079 | 1845 max-text-len |
1846 " inserting `" "'" " .......")) | |
18129 | 1847 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1848 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1849 |
19078 | 1850 ;; don't change viper-d-com if it was viper-repeat command invoked with `.' |
18129 | 1851 ;; or in some other way (non-interactively). |
19078 | 1852 (defun viper-set-destructive-command (list) |
1853 (or (eq viper-intermediate-command 'viper-repeat) | |
18129 | 1854 (progn |
19078 | 1855 (setq viper-d-com list) |
1856 (setcar (nthcdr 5 viper-d-com) | |
1857 (viper-array-to-string (if (arrayp viper-this-command-keys) | |
1858 viper-this-command-keys | |
1859 (this-command-keys)))) | |
1860 (viper-push-onto-ring viper-d-com 'viper-command-ring))) | |
1861 (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
|
1862 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1863 |
19078 | 1864 (defun viper-prev-destructive-command (next) |
18129 | 1865 "Find previous destructive command in the history of destructive commands. |
1866 With prefix argument, find next destructive command." | |
1867 (interactive "P") | |
19078 | 1868 (let (cmd viper-intermediate-command) |
1869 (if (eq last-command 'viper-display-current-destructive-command) | |
18129 | 1870 ;; repeated search through command history |
19078 | 1871 (setq viper-intermediate-command |
1872 'repeating-display-destructive-command) | |
18129 | 1873 ;; first search through command history--set temp ring |
85890
d505125b0b46
2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82467
diff
changeset
|
1874 (setq viper-temp-command-ring (ring-copy viper-command-ring))) |
18129 | 1875 (setq cmd (if next |
19078 | 1876 (viper-special-ring-rotate1 viper-temp-command-ring 1) |
1877 (viper-special-ring-rotate1 viper-temp-command-ring -1))) | |
18129 | 1878 (if (null cmd) |
1879 () | |
19078 | 1880 (setq viper-d-com cmd)) |
1881 (viper-display-current-destructive-command))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1882 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1883 |
19078 | 1884 (defun viper-next-destructive-command () |
18129 | 1885 "Find next destructive command in the history of destructive commands." |
1886 (interactive) | |
19078 | 1887 (viper-prev-destructive-command 'next)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
1888 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1889 |
19078 | 1890 (defun viper-insert-prev-from-insertion-ring (arg) |
18129 | 1891 "Cycle through insertion ring in the direction of older insertions. |
1892 Undoes previous insertion and inserts new. | |
1893 With prefix argument, cycles in the direction of newer elements. | |
1894 In minibuffer, this command executes whatever the invocation key is bound | |
1895 to in the global map, instead of cycling through the insertion ring." | |
1896 (interactive "P") | |
19078 | 1897 (let (viper-intermediate-command) |
1898 (if (eq last-command 'viper-insert-from-insertion-ring) | |
18129 | 1899 (progn ; repeated search through insertion history |
19078 | 1900 (setq viper-intermediate-command 'repeating-insertion-from-ring) |
1901 (if (eq viper-current-state 'replace-state) | |
18129 | 1902 (undo 1) |
19078 | 1903 (if viper-last-inserted-string-from-insertion-ring |
18129 | 1904 (backward-delete-char |
19078 | 1905 (length viper-last-inserted-string-from-insertion-ring)))) |
18129 | 1906 ) |
1907 ;;first search through insertion history | |
85890
d505125b0b46
2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82467
diff
changeset
|
1908 (setq viper-temp-insertion-ring (ring-copy viper-insertion-ring))) |
19078 | 1909 (setq this-command 'viper-insert-from-insertion-ring) |
18129 | 1910 ;; so that things will be undone properly |
1911 (setq buffer-undo-list (cons nil buffer-undo-list)) | |
19078 | 1912 (setq viper-last-inserted-string-from-insertion-ring |
1913 (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
|
1914 |
19078 | 1915 ;; this change of viper-intermediate-command must come after |
1916 ;; viper-special-ring-rotate1, so that the ring will rotate, but before the | |
18129 | 1917 ;; insertion. |
19078 | 1918 (setq viper-intermediate-command nil) |
1919 (if viper-last-inserted-string-from-insertion-ring | |
1920 (insert viper-last-inserted-string-from-insertion-ring)) | |
18129 | 1921 )) |
1922 | |
19078 | 1923 (defun viper-insert-next-from-insertion-ring () |
18129 | 1924 "Cycle through insertion ring in the direction of older insertions. |
1925 Undo previous insertion and inserts new." | |
1926 (interactive) | |
19078 | 1927 (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
|
1928 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
1929 |
18129 | 1930 |
1931 ;; some region utilities | |
1932 | |
1933 ;; If at the last line of buffer, add \\n before eob, if newline is missing. | |
19078 | 1934 (defun viper-add-newline-at-eob-if-necessary () |
18129 | 1935 (save-excursion |
1936 (end-of-line) | |
1937 ;; make sure all lines end with newline, unless in the minibuffer or | |
1938 ;; when requested otherwise (require-final-newline is nil) | |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1939 (save-restriction |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1940 (widen) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1941 (if (and (eobp) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1942 (not (bolp)) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1943 require-final-newline |
74857
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
1944 ;; add newline only if we actually edited buffer. otherwise it |
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
1945 ;; might unintentionally modify binary buffers |
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
1946 (buffer-modified-p) |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1947 (not (viper-is-in-minibuffer)) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1948 (not buffer-read-only)) |
74857
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
1949 ;; text property may be read-only |
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
1950 (condition-case nil |
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
1951 (insert "\n") |
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
1952 (error nil)) |
2e5f946f7726
2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
73486
diff
changeset
|
1953 )) |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
1954 )) |
18129 | 1955 |
19078 | 1956 (defun viper-yank-defun () |
18129 | 1957 (mark-defun) |
1958 (copy-region-as-kill (point) (mark t))) | |
1959 | |
1960 ;; Enlarge region between BEG and END. | |
19078 | 1961 (defun viper-enlarge-region (beg end) |
18129 | 1962 (or beg (setq beg end)) ; if beg is nil, set to end |
1963 (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
|
1964 |
18129 | 1965 (if (< beg end) |
1966 (progn (goto-char beg) (set-mark end)) | |
1967 (goto-char end) | |
1968 (set-mark beg)) | |
1969 (beginning-of-line) | |
1970 (exchange-point-and-mark) | |
1971 (if (or (not (eobp)) (not (bolp))) (forward-line 1)) | |
1972 (if (not (eobp)) (beginning-of-line)) | |
1973 (if (> beg end) (exchange-point-and-mark))) | |
1974 | |
1975 | |
1976 ;; Quote region by each line with a user supplied string. | |
19078 | 1977 (defun viper-quote-region () |
20343 | 1978 (let ((quote-str viper-quote-string) |
1979 (donot-change-dafault t)) | |
1980 (setq quote-str | |
1981 (viper-read-string-with-history | |
1982 "Quote string: " | |
1983 nil | |
1984 'viper-quote-region-history | |
1985 (cond ((string-match "tex.*-mode" (symbol-name major-mode)) "%%") | |
1986 ((string-match "java.*-mode" (symbol-name major-mode)) "//") | |
1987 ((string-match "perl.*-mode" (symbol-name major-mode)) "#") | |
1988 ((string-match "lisp.*-mode" (symbol-name major-mode)) ";;") | |
1989 ((memq major-mode '(c-mode cc-mode c++-mode)) "//") | |
1990 ((memq major-mode '(sh-mode shell-mode)) "#") | |
1991 (t (setq donot-change-dafault nil) | |
1992 quote-str)))) | |
1993 (or donot-change-dafault | |
1994 (setq viper-quote-string quote-str)) | |
1995 (viper-enlarge-region (point) (mark t)) | |
1996 (if (> (point) (mark t)) (exchange-point-and-mark)) | |
1997 (insert quote-str) | |
18129 | 1998 (beginning-of-line) |
20343 | 1999 (forward-line 1) |
2000 (while (and (< (point) (mark t)) (bolp)) | |
2001 (insert quote-str) | |
2002 (beginning-of-line) | |
2003 (forward-line 1)))) | |
18129 | 2004 |
2005 ;; Tells whether BEG is on the same line as END. | |
2006 ;; If one of the args is nil, it'll return nil. | |
19078 | 2007 (defun viper-same-line (beg end) |
18129 | 2008 (let ((selective-display nil) |
2009 (incr 0) | |
2010 temp) | |
2011 (if (and beg end (> beg end)) | |
2012 (setq temp beg | |
2013 beg end | |
2014 end temp)) | |
2015 (if (and beg end) | |
2016 (cond ((or (> beg (point-max)) (> end (point-max))) ; out of range | |
2017 nil) | |
2018 (t | |
2019 ;; This 'if' is needed because Emacs treats the next empty line | |
2020 ;; as part of the previous line. | |
19078 | 2021 (if (= (viper-line-pos 'start) end) |
18129 | 2022 (setq incr 1)) |
2023 (<= (+ incr (count-lines beg end)) 1)))) | |
2024 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2025 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2026 |
18129 | 2027 ;; Check if the string ends with a newline. |
19078 | 2028 (defun viper-end-with-a-newline-p (string) |
18129 | 2029 (or (string= string "") |
19078 | 2030 (= (viper-seq-last-elt string) ?\n))) |
2031 | |
2032 (defun viper-tmp-insert-at-eob (msg) | |
18129 | 2033 (let ((savemax (point-max))) |
2034 (goto-char savemax) | |
2035 (insert msg) | |
2036 (sit-for 2) | |
2037 (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
|
2038 )) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2039 |
18129 | 2040 |
2041 | |
2042 ;;; Minibuffer business | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2043 |
19078 | 2044 (defsubst viper-set-minibuffer-style () |
65627
511f8e9d22ca
2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64750
diff
changeset
|
2045 (add-hook 'minibuffer-setup-hook 'viper-minibuffer-setup-sentinel) |
511f8e9d22ca
2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64750
diff
changeset
|
2046 (add-hook 'post-command-hook 'viper-minibuffer-post-command-hook)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2047 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2048 |
19078 | 2049 (defun viper-minibuffer-setup-sentinel () |
2050 (let ((hook (if viper-vi-style-in-minibuffer | |
2051 'viper-change-state-to-insert | |
2052 'viper-change-state-to-emacs))) | |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2053 ;; making buffer-local variables so that normal buffers won't affect the |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2054 ;; minibuffer and vice versa. Otherwise, command arguments will affect |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2055 ;; minibuffer ops and insertions from the minibuffer will change those in |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2056 ;; the normal buffers |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2057 (make-local-variable 'viper-d-com) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2058 (make-local-variable 'viper-last-insertion) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2059 (make-local-variable 'viper-command-ring) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2060 (setq viper-d-com nil |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2061 viper-last-insertion nil |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2062 viper-command-ring nil) |
18129 | 2063 (funcall hook) |
2064 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2065 |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2066 ;; 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
|
2067 ;; A dirty feature, but it is the simplest way to have it do the right thing. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45738
diff
changeset
|
2068 ;; The INIT-MESSAGE and INITIAL vars come from the scope set by |
27899
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
2069 ;; viper-read-string-with-history |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2070 (defun viper-minibuffer-standard-hook () |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2071 (if (stringp init-message) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2072 (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
|
2073 (if (stringp initial) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2074 (progn |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2075 ;; 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
|
2076 (or unread-command-events |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2077 executing-kbd-macro |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2078 (sit-for 840)) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2079 (if (fboundp 'minibuffer-prompt-end) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2080 (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
|
2081 (erase-buffer)) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2082 (insert initial)))) |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2083 |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2084 (defsubst viper-minibuffer-real-start () |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2085 (if (fboundp 'minibuffer-prompt-end) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2086 (minibuffer-prompt-end) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2087 (point-min))) |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2088 |
65627
511f8e9d22ca
2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64750
diff
changeset
|
2089 (defun viper-minibuffer-post-command-hook() |
511f8e9d22ca
2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64750
diff
changeset
|
2090 (when (active-minibuffer-window) |
511f8e9d22ca
2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64750
diff
changeset
|
2091 (when (< (point) (viper-minibuffer-real-start)) |
511f8e9d22ca
2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64750
diff
changeset
|
2092 (goto-char (viper-minibuffer-real-start))))) |
511f8e9d22ca
2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64750
diff
changeset
|
2093 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2094 |
19756 | 2095 ;; Interpret last event in the local map first; if fails, use exit-minibuffer. |
2096 ;; Run viper-minibuffer-exit-hook before exiting. | |
19078 | 2097 (defun viper-exit-minibuffer () |
19756 | 2098 "Exit minibuffer Viper way." |
18129 | 2099 (interactive) |
2100 (let (command) | |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
2101 (setq command (local-key-binding (char-to-string last-command-event))) |
19756 | 2102 (run-hooks 'viper-minibuffer-exit-hook) |
18129 | 2103 (if command |
2104 (command-execute command) | |
2105 (exit-minibuffer)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2106 |
19756 | 2107 |
2108 (defcustom viper-smart-suffix-list | |
29412
ecd388a0937d
2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27899
diff
changeset
|
2109 '("" "tex" "c" "cc" "C" "java" "el" "html" "htm" "xml" |
ecd388a0937d
2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27899
diff
changeset
|
2110 "pl" "flr" "P" "p" "h" "H") |
19905
9a4cdbf423ea
(viper-smart-suffix-list): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19891
diff
changeset
|
2111 "*List of suffixes that Viper tries to append to filenames ending with a `.'. |
45594
1282cafdee89
(viper-smart-suffix-list, viper-ask-level): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
2112 This is useful when the current directory contains files with the same |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2113 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
|
2114 represents an editable file. However, file completion will stop at the `.' |
19756 | 2115 The smart suffix feature lets you hit RET in such a case, and Viper will |
2116 select the appropriate suffix. | |
2117 | |
2118 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
|
2119 corresponding file exists is selected. If no file exists for any of the |
19756 | 2120 suffixes, the user is asked to confirm. |
2121 | |
2122 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
|
2123 :type '(repeat string) |
20003 | 2124 :group 'viper-misc) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2125 |
19756 | 2126 |
2127 ;; Try to add a suitable suffix to files whose name ends with a `.' | |
2128 ;; Useful when the user hits RET on a non-completed file name. | |
2129 ;; Used as a minibuffer exit hook in read-file-name | |
2130 (defun viper-file-add-suffix () | |
2131 (let ((count 0) | |
2132 (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
|
2133 (file (buffer-substring-no-properties |
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2134 (viper-minibuffer-real-start) (point-max))) |
19756 | 2135 found key cmd suff) |
2136 (goto-char (point-max)) | |
2137 (if (and viper-smart-suffix-list (string-match "\\.$" file)) | |
2138 (progn | |
2139 (while (and (not found) (< count len)) | |
2140 (setq suff (nth count viper-smart-suffix-list) | |
2141 count (1+ count)) | |
2142 (if (file-exists-p | |
2143 (format "%s%s" (substitute-in-file-name file) suff)) | |
2144 (progn | |
2145 (setq found t) | |
2146 (insert suff)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2147 |
19756 | 2148 (if found |
2149 () | |
2150 (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
|
2151 (unwind-protect |
19756 | 2152 (while (not (memq cmd |
2153 '(exit-minibuffer viper-exit-minibuffer))) | |
2154 (setq cmd | |
2155 (key-binding (setq key (read-key-sequence nil)))) | |
2156 (cond ((eq cmd 'self-insert-command) | |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
2157 (if (featurep 'xemacs) |
93615
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
2158 (insert (events-to-keys key)) ; xemacs |
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
2159 (insert key) ; emacs |
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
2160 )) |
19756 | 2161 ((memq cmd '(exit-minibuffer viper-exit-minibuffer)) |
2162 nil) | |
2163 (t (command-execute cmd))) | |
2164 ))) | |
2165 )))) | |
2166 | |
2167 | |
2168 (defun viper-minibuffer-trim-tail () | |
2169 "Delete junk at the end of the first line of the minibuffer input. | |
2170 Remove this function from `viper-minibuffer-exit-hook', if this causes | |
2171 problems." | |
2172 (if (viper-is-in-minibuffer) | |
68997
6169b51037af
2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68648
diff
changeset
|
2173 (let ((inhibit-field-text-motion t)) |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26702
diff
changeset
|
2174 (goto-char (viper-minibuffer-real-start)) |
19756 | 2175 (end-of-line) |
2176 (delete-region (point) (point-max))))) | |
2177 | |
18129 | 2178 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2179 ;;; Reading string with history |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2180 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2181 (defun viper-read-string-with-history (prompt &optional initial |
20343 | 2182 history-var default keymap |
2183 init-message) | |
18129 | 2184 ;; Read string, prompting with PROMPT and inserting the INITIAL |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2185 ;; value. Uses HISTORY-VAR. DEFAULT is the default value to accept if the |
20343 | 2186 ;; input is an empty string. |
18129 | 2187 ;; 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
|
2188 ;; minibuffer. |
20343 | 2189 ;; KEYMAP is used, if given, instead of minibuffer-local-map. |
2190 ;; INIT-MESSAGE is the message temporarily displayed after entering the | |
2191 ;; minibuffer. | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2192 (let ((minibuffer-setup-hook |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2193 ;; stolen from add-hook |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2194 (let ((old |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2195 (if (boundp 'minibuffer-setup-hook) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2196 minibuffer-setup-hook |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2197 nil))) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2198 (cons |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2199 'viper-minibuffer-standard-hook |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2200 (if (or (not (listp old)) (eq (car old) 'lambda)) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2201 (list old) old)))) |
18129 | 2202 (val "") |
2203 (padding "") | |
2204 temp-msg) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2205 |
18129 | 2206 (setq keymap (or keymap minibuffer-local-map) |
2207 initial (or initial "") | |
2208 temp-msg (if default | |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65627
diff
changeset
|
2209 (format "(default %s) " default) |
18129 | 2210 "")) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2211 |
19078 | 2212 (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
|
2213 (setq val (read-from-minibuffer prompt |
18129 | 2214 (concat temp-msg initial val padding) |
2215 keymap nil history-var)) | |
2216 (setq minibuffer-setup-hook nil | |
19078 | 2217 padding (viper-array-to-string (this-command-keys)) |
18129 | 2218 temp-msg "") |
2219 ;; the following tries to be smart about what to put in history | |
2220 (if (not (string= val (car (eval history-var)))) | |
2221 (set history-var (cons val (eval history-var)))) | |
2222 (if (or (string= (nth 0 (eval history-var)) (nth 1 (eval history-var))) | |
2223 (string= (nth 0 (eval history-var)) "")) | |
2224 (set history-var (cdr (eval history-var)))) | |
19078 | 2225 ;; 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
|
2226 ;; viper-command-argument, or `! shell-command', this probably means |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2227 ;; that the user typed something then erased. Return "" in this case, not |
18129 | 2228 ;; the default---the default is too confusing in this case. |
2229 (cond ((and (string= val "") | |
2230 (not (string= prompt "!")) ; was a `! shell-command' | |
2231 (not (memq last-command | |
19078 | 2232 '(viper-ex |
2233 viper-command-argument | |
18129 | 2234 t) |
2235 ))) | |
2236 "") | |
2237 ((string= val "") (or default "")) | |
2238 (t val)) | |
2239 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2240 |
18129 | 2241 |
2242 | |
2243 ;; insertion commands | |
2244 | |
2245 ;; Called when state changes from Insert Vi command mode. | |
2246 ;; Repeats the insertion command if Insert state was entered with prefix | |
2247 ;; argument > 1. | |
19078 | 2248 (defun viper-repeat-insert-command () |
2249 (let ((i-com (car viper-d-com)) | |
2250 (val (nth 1 viper-d-com)) | |
2251 (char (nth 2 viper-d-com))) | |
18129 | 2252 (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
|
2253 (progn |
19078 | 2254 (setq viper-d-com (list i-com (1- val) ?r nil nil nil)) |
2255 (viper-repeat nil) | |
2256 (setq viper-d-com (list i-com val char nil nil nil)) | |
18129 | 2257 )))) |
2258 | |
19078 | 2259 (defun viper-insert (arg) |
18129 | 2260 "Insert before point." |
2261 (interactive "P") | |
19078 | 2262 (viper-set-complex-command-for-undo) |
2263 (let ((val (viper-p-val arg)) | |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2264 ;;(com (viper-getcom arg)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2265 ) |
19078 | 2266 (viper-set-destructive-command (list 'viper-insert val ?r nil nil nil)) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2267 (if (eq viper-intermediate-command 'viper-repeat) |
19078 | 2268 (viper-loop val (viper-yank-last-insertion)) |
2269 (viper-change-state-to-insert)))) | |
2270 | |
2271 (defun viper-append (arg) | |
18129 | 2272 "Append after point." |
2273 (interactive "P") | |
19078 | 2274 (viper-set-complex-command-for-undo) |
2275 (let ((val (viper-p-val arg)) | |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2276 ;;(com (viper-getcom arg)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2277 ) |
19078 | 2278 (viper-set-destructive-command (list 'viper-append val ?r nil nil nil)) |
18129 | 2279 (if (not (eolp)) (forward-char)) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2280 (if (eq viper-intermediate-command 'viper-repeat) |
19078 | 2281 (viper-loop val (viper-yank-last-insertion)) |
2282 (viper-change-state-to-insert)))) | |
2283 | |
2284 (defun viper-Append (arg) | |
18129 | 2285 "Append at end of line." |
2286 (interactive "P") | |
19078 | 2287 (viper-set-complex-command-for-undo) |
2288 (let ((val (viper-p-val arg)) | |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2289 ;;(com (viper-getcom arg)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2290 ) |
19078 | 2291 (viper-set-destructive-command (list 'viper-Append val ?r nil nil nil)) |
18129 | 2292 (end-of-line) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2293 (if (eq viper-intermediate-command 'viper-repeat) |
19078 | 2294 (viper-loop val (viper-yank-last-insertion)) |
2295 (viper-change-state-to-insert)))) | |
2296 | |
2297 (defun viper-Insert (arg) | |
18129 | 2298 "Insert before first non-white." |
2299 (interactive "P") | |
19078 | 2300 (viper-set-complex-command-for-undo) |
2301 (let ((val (viper-p-val arg)) | |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2302 ;;(com (viper-getcom arg)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2303 ) |
19078 | 2304 (viper-set-destructive-command (list 'viper-Insert val ?r nil nil nil)) |
18129 | 2305 (back-to-indentation) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2306 (if (eq viper-intermediate-command 'viper-repeat) |
19078 | 2307 (viper-loop val (viper-yank-last-insertion)) |
2308 (viper-change-state-to-insert)))) | |
2309 | |
2310 (defun viper-open-line (arg) | |
18129 | 2311 "Open line below." |
2312 (interactive "P") | |
19078 | 2313 (viper-set-complex-command-for-undo) |
2314 (let ((val (viper-p-val arg)) | |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2315 ;;(com (viper-getcom arg)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2316 ) |
19078 | 2317 (viper-set-destructive-command (list 'viper-open-line val ?r nil nil nil)) |
18129 | 2318 (let ((col (current-indentation))) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2319 (if (eq viper-intermediate-command 'viper-repeat) |
19078 | 2320 (viper-loop val |
18129 | 2321 (end-of-line) |
2322 (newline 1) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2323 (viper-indent-line col) |
19462 | 2324 (viper-yank-last-insertion)) |
18129 | 2325 (end-of-line) |
2326 (newline 1) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2327 (viper-indent-line col) |
19078 | 2328 (viper-change-state-to-insert))))) |
2329 | |
2330 (defun viper-Open-line (arg) | |
18129 | 2331 "Open line above." |
2332 (interactive "P") | |
19078 | 2333 (viper-set-complex-command-for-undo) |
2334 (let ((val (viper-p-val arg)) | |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2335 ;;(com (viper-getcom arg)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2336 ) |
19078 | 2337 (viper-set-destructive-command (list 'viper-Open-line val ?r nil nil nil)) |
18129 | 2338 (let ((col (current-indentation))) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2339 (if (eq viper-intermediate-command 'viper-repeat) |
19078 | 2340 (viper-loop val |
18129 | 2341 (beginning-of-line) |
2342 (open-line 1) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2343 (viper-indent-line col) |
19462 | 2344 (viper-yank-last-insertion)) |
18129 | 2345 (beginning-of-line) |
2346 (open-line 1) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2347 (viper-indent-line col) |
19078 | 2348 (viper-change-state-to-insert))))) |
2349 | |
2350 (defun viper-open-line-at-point (arg) | |
18129 | 2351 "Open line at point." |
2352 (interactive "P") | |
19078 | 2353 (viper-set-complex-command-for-undo) |
2354 (let ((val (viper-p-val arg)) | |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2355 ;;(com (viper-getcom arg)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2356 ) |
19078 | 2357 (viper-set-destructive-command |
2358 (list 'viper-open-line-at-point val ?r nil nil nil)) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2359 (if (eq viper-intermediate-command 'viper-repeat) |
19078 | 2360 (viper-loop val |
18129 | 2361 (open-line 1) |
19462 | 2362 (viper-yank-last-insertion)) |
18129 | 2363 (open-line 1) |
19078 | 2364 (viper-change-state-to-insert)))) |
2365 | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2366 ;; bound to s |
19078 | 2367 (defun viper-substitute (arg) |
18129 | 2368 "Substitute characters." |
2369 (interactive "P") | |
19078 | 2370 (let ((val (viper-p-val arg)) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2371 ;;(com (viper-getcom arg)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2372 ) |
18129 | 2373 (push-mark nil t) |
2374 (forward-char val) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2375 (if (eq viper-intermediate-command 'viper-repeat) |
19078 | 2376 (viper-change-subr (mark t) (point)) |
2377 (viper-change (mark t) (point))) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2378 ;; com is set to ?r when we repeat this comand with dot |
19078 | 2379 (viper-set-destructive-command (list 'viper-substitute val ?r nil nil nil)) |
18129 | 2380 )) |
2381 | |
19078 | 2382 ;; Command bound to S |
2383 (defun viper-substitute-line (arg) | |
18129 | 2384 "Substitute lines." |
2385 (interactive "p") | |
19078 | 2386 (viper-set-complex-command-for-undo) |
2387 (viper-line (cons arg ?C))) | |
18129 | 2388 |
2389 ;; Prepare for replace | |
19078 | 2390 (defun viper-start-replace () |
2391 (setq viper-began-as-replace t | |
2392 viper-sitting-in-replace t | |
19462 | 2393 viper-replace-chars-to-delete 0) |
21940 | 2394 (add-hook |
2395 'viper-after-change-functions 'viper-replace-mode-spy-after t 'local) | |
2396 (add-hook | |
2397 'viper-before-change-functions 'viper-replace-mode-spy-before t 'local) | |
18129 | 2398 ;; this will get added repeatedly, but no harm |
19078 | 2399 (add-hook 'after-change-functions 'viper-after-change-sentinel t) |
2400 (add-hook 'before-change-functions 'viper-before-change-sentinel t) | |
21940 | 2401 (viper-move-marker-locally |
2402 'viper-last-posn-in-replace-region (viper-replace-start)) | |
2403 (add-hook | |
2404 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel | |
2405 t 'local) | |
2406 (add-hook | |
2407 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel t 'local) | |
18129 | 2408 ;; guard against a smartie who switched from R-replace to normal replace |
21940 | 2409 (remove-hook |
2410 'viper-post-command-hooks 'viper-R-state-post-command-sentinel 'local) | |
33842
f6a67d77484a
* ediff-diff.el: Moved variables around to have it compile under NT.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
33019
diff
changeset
|
2411 (if overwrite-mode (overwrite-mode -1)) |
18129 | 2412 ) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2413 |
18129 | 2414 |
19078 | 2415 (defun viper-replace-mode-spy-before (beg end) |
19462 | 2416 (setq viper-replace-region-chars-deleted (viper-chars-in-region beg end)) |
2417 ) | |
2418 | |
2419 ;; 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
|
2420 ;; 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
|
2421 ;; if this command performs several separate buffer changes. Therefore, if |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2422 ;; 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
|
2423 ;; deleted. |
19078 | 2424 (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
|
2425 (if (memq viper-intermediate-command |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2426 '(dabbrev-expand hippie-expand repeating-insertion-from-ring)) |
19462 | 2427 ;; Take special care of text insertion from insertion ring inside |
2428 ;; replacement overlays. | |
18129 | 2429 (progn |
19078 | 2430 (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
|
2431 (viper-move-marker-locally |
19078 | 2432 '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
|
2433 |
19462 | 2434 (let* ((real-end (min end (viper-replace-end))) |
2435 (column-shift (- (save-excursion (goto-char real-end) | |
2436 (current-column)) | |
2437 (save-excursion (goto-char beg) | |
2438 (current-column)))) | |
2439 (chars-deleted 0)) | |
2440 | |
2441 (if (> length 0) | |
2442 (setq chars-deleted viper-replace-region-chars-deleted)) | |
2443 (setq viper-replace-region-chars-deleted 0) | |
2444 (setq viper-replace-chars-to-delete | |
2445 (+ viper-replace-chars-to-delete | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2446 (- |
19462 | 2447 ;; if column shift is bigger, due to a TAB insertion, take |
2448 ;; column-shift instead of the number of inserted chars | |
2449 (max (viper-chars-in-region beg real-end) | |
2450 ;; This test accounts for Chinese/Japanese/... chars, | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2451 ;; which occupy 2 columns instead of one. If we use |
19462 | 2452 ;; 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
|
2453 ;; one when the user types one Chinese character. |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2454 ;; Deleting two would be OK, if they were European chars, |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2455 ;; but it is not OK if they are Chinese chars. |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2456 ;; Since it is hard to |
19462 | 2457 ;; figure out which characters are being deleted in any |
2458 ;; given region, we decided to treat Eastern and European | |
2459 ;; characters equally, even though Eastern chars may | |
2460 ;; occupy more columns. | |
2461 (if (memq this-command '(self-insert-command | |
2462 quoted-insert viper-insert-tab)) | |
2463 column-shift | |
2464 0)) | |
2465 ;; the number of deleted chars | |
2466 chars-deleted))) | |
2467 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2468 (viper-move-marker-locally |
19078 | 2469 'viper-last-posn-in-replace-region |
19462 | 2470 (max (if (> end (viper-replace-end)) (viper-replace-end) end) |
19078 | 2471 (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
|
2472 (viper-replace-start)) |
18129 | 2473 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2474 |
18129 | 2475 ))) |
2476 | |
19462 | 2477 |
2478 ;; Delete stuff between viper-last-posn-in-replace-region and the end of | |
2479 ;; viper-replace-overlay-marker, if viper-last-posn-in-replace-region is within | |
2480 ;; the overlay and current point is before the end of the overlay. | |
2481 ;; Don't delete anything if current point is past the end of the overlay. | |
2482 (defun viper-finish-change () | |
21940 | 2483 (remove-hook |
2484 'viper-after-change-functions 'viper-replace-mode-spy-after 'local) | |
2485 (remove-hook | |
2486 'viper-before-change-functions 'viper-replace-mode-spy-before 'local) | |
2487 (remove-hook | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2488 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel 'local) |
21940 | 2489 (remove-hook |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2490 '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
|
2491 (viper-restore-cursor-color 'after-replace-mode) |
19078 | 2492 (setq viper-sitting-in-replace nil) ; just in case we'll need to know it |
18129 | 2493 (save-excursion |
19462 | 2494 (if (and viper-replace-overlay |
2495 (viper-pos-within-region viper-last-posn-in-replace-region | |
2496 (viper-replace-start) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2497 (viper-replace-end)) |
19462 | 2498 (< (point) (viper-replace-end))) |
2499 (delete-region | |
2500 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
|
2501 |
19078 | 2502 (if (eq viper-current-state 'replace-state) |
2503 (viper-downgrade-to-insert)) | |
2504 ;; replace mode ended => nullify viper-last-posn-in-replace-region | |
2505 (viper-move-marker-locally 'viper-last-posn-in-replace-region nil) | |
2506 (viper-hide-replace-overlay) | |
2507 (viper-refresh-mode-line) | |
2508 (viper-put-string-on-kill-ring viper-last-replace-region) | |
18129 | 2509 ) |
2510 | |
2511 ;; Make STRING be the first element of the kill ring. | |
19078 | 2512 (defun viper-put-string-on-kill-ring (string) |
18129 | 2513 (setq kill-ring (cons string kill-ring)) |
2514 (if (> (length kill-ring) kill-ring-max) | |
2515 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil)) | |
2516 (setq kill-ring-yank-pointer kill-ring)) | |
2517 | |
19078 | 2518 (defun viper-finish-R-mode () |
21940 | 2519 (remove-hook |
2520 'viper-post-command-hooks 'viper-R-state-post-command-sentinel 'local) | |
2521 (remove-hook | |
2522 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel 'local) | |
19078 | 2523 (viper-downgrade-to-insert)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2524 |
19078 | 2525 (defun viper-start-R-mode () |
18129 | 2526 ;; Leave arg as 1, not t: XEmacs insists that it must be a pos number |
2527 (overwrite-mode 1) | |
21940 | 2528 (add-hook |
2529 'viper-post-command-hooks 'viper-R-state-post-command-sentinel t 'local) | |
2530 (add-hook | |
2531 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel t 'local) | |
18129 | 2532 ;; guard against a smartie who switched from R-replace to normal replace |
21940 | 2533 (remove-hook |
2534 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel 'local) | |
18129 | 2535 ) |
2536 | |
2537 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2538 |
19078 | 2539 (defun viper-replace-state-exit-cmd () |
18129 | 2540 "Binding for keys that cause Replace state to switch to Vi or to Insert. |
2541 These keys are ESC, RET, and LineFeed" | |
2542 (interactive) | |
19462 | 2543 (if overwrite-mode ; if in replace mode invoked via 'R' |
19078 | 2544 (viper-finish-R-mode) |
19462 | 2545 (viper-finish-change)) |
18129 | 2546 (let (com) |
19078 | 2547 (if (eq this-command 'viper-intercept-ESC-key) |
2548 (setq com 'viper-exit-insert-state) | |
101013
dbe70c3aa01d
Replace last-input-char with last-input-event.
Glenn Morris <rgm@gnu.org>
parents:
101009
diff
changeset
|
2549 (viper-set-unread-command-events last-input-event) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2550 (setq com (key-binding (viper-read-key-sequence nil)))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2551 |
18129 | 2552 (condition-case conds |
2553 (command-execute com) | |
2554 (error | |
19078 | 2555 (viper-message-conditions conds))) |
18129 | 2556 ) |
19078 | 2557 (viper-hide-replace-overlay)) |
2558 | |
2559 | |
2560 (defun viper-replace-state-carriage-return () | |
2561 "Carriage return in Viper replace state." | |
18129 | 2562 (interactive) |
2563 ;; If Emacs start supporting overlay maps, as it currently supports | |
19078 | 2564 ;; 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
|
2565 ;; just have keymap attached to replace overlay. Then the "if part" of this |
18129 | 2566 ;; statement can be deleted. |
19078 | 2567 (if (or (< (point) (viper-replace-start)) |
2568 (> (point) (viper-replace-end))) | |
2569 (let (viper-replace-minor-mode com) | |
101013
dbe70c3aa01d
Replace last-input-char with last-input-event.
Glenn Morris <rgm@gnu.org>
parents:
101009
diff
changeset
|
2570 (viper-set-unread-command-events last-input-event) |
18129 | 2571 (setq com (key-binding (read-key-sequence nil))) |
2572 (condition-case conds | |
2573 (command-execute com) | |
2574 (error | |
19078 | 2575 (viper-message-conditions conds)))) |
2576 (if (not viper-allow-multiline-replace-regions) | |
2577 (viper-replace-state-exit-cmd) | |
2578 (if (viper-same-line (point) (viper-replace-end)) | |
2579 (viper-replace-state-exit-cmd) | |
2580 ;; delete the rest of line | |
2581 (delete-region (point) (viper-line-pos 'end)) | |
2582 (save-excursion | |
2583 (end-of-line) | |
2584 (if (eobp) (error "Last line in buffer"))) | |
2585 ;; skip to the next line | |
2586 (forward-line 1) | |
2587 (back-to-indentation) | |
2588 )))) | |
18129 | 2589 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2590 |
18129 | 2591 ;; This is the function bound to 'R'---unlimited replace. |
2592 ;; 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
|
2593 (defun viper-overwrite (arg) |
18129 | 2594 "Begin overwrite mode." |
2595 (interactive "P") | |
19078 | 2596 (let ((val (viper-p-val arg)) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2597 ;;(com (viper-getcom arg)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2598 (len)) |
19078 | 2599 (viper-set-destructive-command (list 'viper-overwrite val ?r nil nil nil)) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2600 (if (eq viper-intermediate-command 'viper-repeat) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2601 (progn |
19078 | 2602 ;; Viper saves inserted text in viper-last-insertion |
2603 (setq len (length viper-last-insertion)) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2604 (delete-char (min len (- (point-max) (point) 1))) |
19078 | 2605 (viper-loop val (viper-yank-last-insertion))) |
2606 (setq last-command 'viper-overwrite) | |
2607 (viper-set-complex-command-for-undo) | |
2608 (viper-set-replace-overlay (point) (viper-line-pos 'end)) | |
2609 (viper-change-state-to-replace) | |
18129 | 2610 ))) |
2611 | |
2612 | |
2613 ;; line commands | |
2614 | |
19078 | 2615 (defun viper-line (arg) |
18129 | 2616 (let ((val (car arg)) |
2617 (com (cdr arg))) | |
19078 | 2618 (viper-move-marker-locally 'viper-com-point (point)) |
18129 | 2619 (if (not (eobp)) |
19078 | 2620 (viper-next-line-carefully (1- val))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2621 ;; 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
|
2622 ;; last line of buffer when this line has no \n. |
19078 | 2623 (viper-add-newline-at-eob-if-necessary) |
2624 (viper-execute-com 'viper-line val com)) | |
65627
511f8e9d22ca
2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64750
diff
changeset
|
2625 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) |
18129 | 2626 ) |
2627 | |
19078 | 2628 (defun viper-yank-line (arg) |
18129 | 2629 "Yank ARG lines (in Vi's sense)." |
2630 (interactive "P") | |
19078 | 2631 (let ((val (viper-p-val arg))) |
2632 (viper-line (cons val ?Y)))) | |
18129 | 2633 |
2634 | |
2635 ;; region commands | |
2636 | |
19078 | 2637 (defun viper-region (arg) |
18129 | 2638 "Execute command on a region." |
2639 (interactive "P") | |
19078 | 2640 (let ((val (viper-P-val arg)) |
2641 (com (viper-getcom arg))) | |
2642 (viper-move-marker-locally 'viper-com-point (point)) | |
18129 | 2643 (exchange-point-and-mark) |
19078 | 2644 (viper-execute-com 'viper-region val com))) |
2645 | |
2646 (defun viper-Region (arg) | |
18129 | 2647 "Execute command on a Region." |
2648 (interactive "P") | |
19078 | 2649 (let ((val (viper-P-val arg)) |
2650 (com (viper-getCom arg))) | |
2651 (viper-move-marker-locally 'viper-com-point (point)) | |
18129 | 2652 (exchange-point-and-mark) |
19078 | 2653 (viper-execute-com 'viper-Region val com))) |
2654 | |
2655 (defun viper-replace-char (arg) | |
18129 | 2656 "Replace the following ARG chars by the character read." |
2657 (interactive "P") | |
2658 (if (and (eolp) (bolp)) (error "No character to replace here")) | |
19078 | 2659 (let ((val (viper-p-val arg)) |
2660 (com (viper-getcom arg))) | |
2661 (viper-replace-char-subr com val) | |
18129 | 2662 (if (and (eolp) (not (bolp))) (forward-char 1)) |
19462 | 2663 (setq viper-this-command-keys |
2664 (format "%sr" (if (integerp arg) arg ""))) | |
19078 | 2665 (viper-set-destructive-command |
2666 (list 'viper-replace-char val ?r nil viper-d-char nil)) | |
18129 | 2667 )) |
2668 | |
19078 | 2669 (defun viper-replace-char-subr (com arg) |
39288
25dc021070bc
2001-09-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
2670 (let ((inhibit-quit t) |
25dc021070bc
2001-09-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
2671 char) |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2672 (viper-set-complex-command-for-undo) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2673 (or (eq viper-intermediate-command 'viper-repeat) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2674 (viper-special-read-and-insert-char)) |
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38514
diff
changeset
|
2675 |
39901
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2676 (delete-char 1 t) |
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2677 (setq char (if com viper-d-char (viper-char-at-pos 'backward))) |
42288
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
2678 |
39901
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2679 (if com (insert char)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45738
diff
changeset
|
2680 |
39901
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2681 (setq viper-d-char char) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45738
diff
changeset
|
2682 |
39901
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2683 (viper-loop (1- (if (> arg 0) arg (- arg))) |
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2684 (delete-char 1 t) |
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2685 (insert char)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45738
diff
changeset
|
2686 |
39901
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2687 (viper-adjust-undo) |
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2688 (backward-char arg) |
50f67a72ea1b
2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39288
diff
changeset
|
2689 )) |
18129 | 2690 |
2691 | |
2692 ;; basic cursor movement. j, k, l, h commands. | |
2693 | |
19078 | 2694 (defun viper-forward-char (arg) |
18129 | 2695 "Move point right ARG characters (left if ARG negative). |
2696 On reaching end of line, stop and signal error." | |
2697 (interactive "P") | |
19078 | 2698 (viper-leave-region-active) |
2699 (let ((val (viper-p-val arg)) | |
2700 (com (viper-getcom arg))) | |
2701 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2702 (if viper-ex-style-motion | |
18129 | 2703 (progn |
2704 ;; the boundary condition check gets weird here because | |
2705 ;; forward-char may be the parameter of a delete, and 'dl' works | |
2706 ;; just like 'x' for the last char on a line, so we have to allow | |
19078 | 2707 ;; the forward motion before the 'viper-execute-com', but, of |
18129 | 2708 ;; course, 'dl' doesn't work on an empty line, so we have to |
19078 | 2709 ;; catch that condition before 'viper-execute-com' |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
2710 (if (and (eolp) (bolp)) (error "Viper bell") (forward-char val)) |
19078 | 2711 (if com (viper-execute-com 'viper-forward-char val com)) |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
2712 (if (eolp) (progn (backward-char 1) (error "Viper bell")))) |
18129 | 2713 (forward-char val) |
19078 | 2714 (if com (viper-execute-com 'viper-forward-char val com))))) |
2715 | |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2716 |
19078 | 2717 (defun viper-backward-char (arg) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2718 "Move point left ARG characters (right if ARG negative). |
18129 | 2719 On reaching beginning of line, stop and signal error." |
2720 (interactive "P") | |
19078 | 2721 (viper-leave-region-active) |
2722 (let ((val (viper-p-val arg)) | |
2723 (com (viper-getcom arg))) | |
2724 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2725 (if viper-ex-style-motion | |
18129 | 2726 (progn |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
2727 (if (bolp) (error "Viper bell") (backward-char val)) |
19078 | 2728 (if com (viper-execute-com 'viper-backward-char val com))) |
18129 | 2729 (backward-char val) |
19078 | 2730 (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
|
2731 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2732 |
18129 | 2733 ;; 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
|
2734 ;; Returns distance traveled |
19462 | 2735 ;; (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
|
2736 (defun viper-forward-char-carefully (&optional arg) |
18129 | 2737 (setq arg (or arg 1)) |
19462 | 2738 (let ((pt (point))) |
2739 (condition-case nil | |
2740 (forward-char arg) | |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
2741 (error nil)) |
19462 | 2742 (if (< (point) pt) ; arg was negative |
2743 (- (viper-chars-in-region pt (point))) | |
2744 (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
|
2745 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2746 |
19462 | 2747 ;; Like backward-char, but doesn't move at beg of buffer. |
2748 ;; Returns distance traveled | |
2749 ;; (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
|
2750 (defun viper-backward-char-carefully (&optional arg) |
18129 | 2751 (setq arg (or arg 1)) |
19462 | 2752 (let ((pt (point))) |
2753 (condition-case nil | |
2754 (backward-char arg) | |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
2755 (error nil)) |
19462 | 2756 (if (> (point) pt) ; arg was negative |
2757 (viper-chars-in-region pt (point)) | |
2758 (- (viper-chars-in-region pt (point)))))) | |
18129 | 2759 |
19078 | 2760 (defun viper-next-line-carefully (arg) |
18129 | 2761 (condition-case nil |
85890
d505125b0b46
2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82467
diff
changeset
|
2762 ;; do not use forward-line! need to keep column |
99595
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
2763 (let ((line-move-visual nil)) |
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
2764 (if (featurep 'emacs) |
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
2765 (with-no-warnings (next-line arg)) |
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
2766 (next-line arg))) |
18129 | 2767 (error nil))) |
2768 | |
2769 | |
2770 | |
2771 ;;; Word command | |
2772 | |
19078 | 2773 ;; 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
|
2774 ;; word movement. When executed with a destructive command, \n is usually left |
19078 | 2775 ;; 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
|
2776 ;; word and what is a separator. However, \n is always a separator. Also, if |
19078 | 2777 ;; viper-syntax-preference is 'vi, then `_' is part of the word. |
18129 | 2778 |
2779 ;; skip only one \n | |
19078 | 2780 (defun viper-skip-separators (forward) |
18129 | 2781 (if forward |
2782 (progn | |
19078 | 2783 (viper-skip-all-separators-forward 'within-line) |
18129 | 2784 (if (looking-at "\n") |
2785 (progn | |
2786 (forward-char) | |
19078 | 2787 (viper-skip-all-separators-forward 'within-line)))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2788 ;; 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
|
2789 (if (and (eobp) (save-excursion |
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
2790 (viper-backward-char-carefully) |
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
2791 (viper-looking-at-separator))) |
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
2792 (viper-backward-char-carefully)) |
19078 | 2793 (viper-skip-all-separators-backward 'within-line) |
19462 | 2794 (viper-backward-char-carefully) |
18129 | 2795 (if (looking-at "\n") |
19078 | 2796 (viper-skip-all-separators-backward 'within-line) |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
2797 (or (viper-looking-at-separator) (forward-char))))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2798 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
2799 |
19078 | 2800 (defun viper-forward-word-kernel (val) |
18129 | 2801 (while (> val 0) |
19078 | 2802 (cond ((viper-looking-at-alpha) |
2803 (viper-skip-alpha-forward "_") | |
2804 (viper-skip-separators t)) | |
2805 ((viper-looking-at-separator) | |
2806 (viper-skip-separators t)) | |
2807 ((not (viper-looking-at-alphasep)) | |
2808 (viper-skip-nonalphasep-forward) | |
2809 (viper-skip-separators t))) | |
18129 | 2810 (setq val (1- val)))) |
2811 | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
2812 ;; first skip non-newline separators backward, then skip \n. Then, if TWICE is |
19462 | 2813 ;; non-nil, skip non-\n back again, but don't overshoot the limit LIM. |
2814 (defun viper-separator-skipback-special (twice lim) | |
2815 (let ((prev-char (viper-char-at-pos 'backward)) | |
2816 (saved-point (point))) | |
2817 ;; skip non-newline separators backward | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
2818 (while (and (not (viper-memq-char prev-char '(nil \n))) |
19462 | 2819 (< lim (point)) |
2820 ;; must be non-newline separator | |
2821 (if (eq viper-syntax-preference 'strict-vi) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
2822 (viper-memq-char prev-char '(?\ ?\t)) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
2823 (viper-memq-char (char-syntax prev-char) '(?\ ?-)))) |
19462 | 2824 (viper-backward-char-carefully) |
2825 (setq prev-char (viper-char-at-pos 'backward))) | |
2826 | |
2827 (if (and (< lim (point)) (eq prev-char ?\n)) | |
2828 (backward-char) | |
2829 ;; If we skipped to the next word and the prefix of this line doesn't | |
2830 ;; consist of separators preceded by a newline, then don't skip backwards | |
2831 ;; at all. | |
2832 (goto-char saved-point)) | |
2833 (setq prev-char (viper-char-at-pos 'backward)) | |
2834 | |
2835 ;; skip again, but make sure we don't overshoot the limit | |
2836 (if twice | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
2837 (while (and (not (viper-memq-char prev-char '(nil \n))) |
19462 | 2838 (< lim (point)) |
2839 ;; must be non-newline separator | |
2840 (if (eq viper-syntax-preference 'strict-vi) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
2841 (viper-memq-char prev-char '(?\ ?\t)) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
2842 (viper-memq-char (char-syntax prev-char) '(?\ ?-)))) |
19462 | 2843 (viper-backward-char-carefully) |
2844 (setq prev-char (viper-char-at-pos 'backward)))) | |
2845 | |
2846 (if (= (point) lim) | |
2847 (viper-forward-char-carefully)) | |
2848 )) | |
18129 | 2849 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2850 |
19078 | 2851 (defun viper-forward-word (arg) |
18129 | 2852 "Forward word." |
2853 (interactive "P") | |
19078 | 2854 (viper-leave-region-active) |
2855 (let ((val (viper-p-val arg)) | |
2856 (com (viper-getcom arg))) | |
2857 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2858 (viper-forward-word-kernel val) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2859 (if com |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2860 (progn |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2861 (cond ((viper-char-equal com ?c) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2862 (viper-separator-skipback-special 'twice viper-com-point)) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2863 ;; Yank words including the whitespace, but not newline |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2864 ((viper-char-equal com ?y) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2865 (viper-separator-skipback-special nil viper-com-point)) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2866 ((viper-dotable-command-p com) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2867 (viper-separator-skipback-special nil viper-com-point))) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2868 (viper-execute-com 'viper-forward-word val com))) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
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-forward-Word (arg) |
18129 | 2873 "Forward word delimited by white characters." |
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))) | |
2879 (viper-loop val | |
2880 (viper-skip-nonseparators 'forward) | |
19462 | 2881 (viper-skip-separators t)) |
18129 | 2882 (if com (progn |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2883 (cond ((viper-char-equal com ?c) |
19462 | 2884 (viper-separator-skipback-special 'twice viper-com-point)) |
18129 | 2885 ;; Yank words including the whitespace, but not newline |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
2886 ((viper-char-equal com ?y) |
19462 | 2887 (viper-separator-skipback-special nil viper-com-point)) |
19078 | 2888 ((viper-dotable-command-p com) |
19462 | 2889 (viper-separator-skipback-special nil viper-com-point))) |
19078 | 2890 (viper-execute-com 'viper-forward-Word val com))))) |
18129 | 2891 |
2892 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2893 ;; this is a bit different from Vi, but Vi's end of word |
18129 | 2894 ;; makes no sense whatsoever |
19078 | 2895 (defun viper-end-of-word-kernel () |
2896 (if (viper-end-of-word-p) (forward-char)) | |
2897 (if (viper-looking-at-separator) | |
2898 (viper-skip-all-separators-forward)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2899 |
19078 | 2900 (cond ((viper-looking-at-alpha) (viper-skip-alpha-forward "_")) |
2901 ((not (viper-looking-at-alphasep)) (viper-skip-nonalphasep-forward))) | |
2902 (viper-backward-char-carefully)) | |
2903 | |
2904 (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
|
2905 (or (eobp) |
18129 | 2906 (save-excursion |
19078 | 2907 (cond ((viper-looking-at-alpha) |
18129 | 2908 (forward-char) |
19078 | 2909 (not (viper-looking-at-alpha))) |
2910 ((not (viper-looking-at-alphasep)) | |
18129 | 2911 (forward-char) |
19078 | 2912 (viper-looking-at-alphasep)))))) |
2913 | |
2914 | |
2915 (defun viper-end-of-word (arg &optional careful) | |
18129 | 2916 "Move point to end of current word." |
2917 (interactive "P") | |
19078 | 2918 (viper-leave-region-active) |
2919 (let ((val (viper-p-val arg)) | |
2920 (com (viper-getcom arg))) | |
2921 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2922 (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
|
2923 (if com |
18129 | 2924 (progn |
2925 (forward-char) | |
19078 | 2926 (viper-execute-com 'viper-end-of-word val com))))) |
2927 | |
2928 (defun viper-end-of-Word (arg) | |
18129 | 2929 "Forward to end of word delimited by white character." |
2930 (interactive "P") | |
19078 | 2931 (viper-leave-region-active) |
2932 (let ((val (viper-p-val arg)) | |
2933 (com (viper-getcom arg))) | |
2934 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
2935 (viper-loop val | |
2936 (viper-end-of-word-kernel) | |
2937 (viper-skip-nonseparators 'forward) | |
19462 | 2938 (backward-char)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
2939 (if com |
18129 | 2940 (progn |
2941 (forward-char) | |
19078 | 2942 (viper-execute-com 'viper-end-of-Word val com))))) |
2943 | |
2944 (defun viper-backward-word-kernel (val) | |
18129 | 2945 (while (> val 0) |
19462 | 2946 (viper-backward-char-carefully) |
19078 | 2947 (cond ((viper-looking-at-alpha) |
2948 (viper-skip-alpha-backward "_")) | |
2949 ((viper-looking-at-separator) | |
18129 | 2950 (forward-char) |
19078 | 2951 (viper-skip-separators nil) |
19462 | 2952 (viper-backward-char-carefully) |
19078 | 2953 (cond ((viper-looking-at-alpha) |
2954 (viper-skip-alpha-backward "_")) | |
2955 ((not (viper-looking-at-alphasep)) | |
2956 (viper-skip-nonalphasep-backward)) | |
19462 | 2957 ((bobp)) ; could still be at separator, but at beg of buffer |
18129 | 2958 (t (forward-char)))) |
19078 | 2959 ((not (viper-looking-at-alphasep)) |
2960 (viper-skip-nonalphasep-backward))) | |
18129 | 2961 (setq val (1- val)))) |
2962 | |
19078 | 2963 (defun viper-backward-word (arg) |
18129 | 2964 "Backward word." |
2965 (interactive "P") | |
19078 | 2966 (viper-leave-region-active) |
2967 (let ((val (viper-p-val arg)) | |
2968 (com (viper-getcom arg))) | |
18129 | 2969 (if com |
2970 (let (i) | |
2971 (if (setq i (save-excursion (backward-char) (looking-at "\n"))) | |
2972 (backward-char)) | |
19078 | 2973 (viper-move-marker-locally 'viper-com-point (point)) |
18129 | 2974 (if i (forward-char)))) |
19078 | 2975 (viper-backward-word-kernel val) |
2976 (if com (viper-execute-com 'viper-backward-word val com)))) | |
2977 | |
2978 (defun viper-backward-Word (arg) | |
18129 | 2979 "Backward word delimited by white character." |
2980 (interactive "P") | |
19078 | 2981 (viper-leave-region-active) |
2982 (let ((val (viper-p-val arg)) | |
2983 (com (viper-getcom arg))) | |
18129 | 2984 (if com |
2985 (let (i) | |
2986 (if (setq i (save-excursion (backward-char) (looking-at "\n"))) | |
2987 (backward-char)) | |
19078 | 2988 (viper-move-marker-locally 'viper-com-point (point)) |
18129 | 2989 (if i (forward-char)))) |
19078 | 2990 (viper-loop val |
19462 | 2991 (viper-skip-separators nil) ; nil means backward here |
2992 (viper-skip-nonseparators 'backward)) | |
19078 | 2993 (if com (viper-execute-com 'viper-backward-Word val com)))) |
18129 | 2994 |
2995 | |
2996 | |
2997 ;; line commands | |
2998 | |
19078 | 2999 (defun viper-beginning-of-line (arg) |
18129 | 3000 "Go to beginning of line." |
3001 (interactive "P") | |
19078 | 3002 (viper-leave-region-active) |
3003 (let ((val (viper-p-val arg)) | |
3004 (com (viper-getcom arg))) | |
3005 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3006 (beginning-of-line val) |
19078 | 3007 (if com (viper-execute-com 'viper-beginning-of-line val com)))) |
3008 | |
3009 (defun viper-bol-and-skip-white (arg) | |
18129 | 3010 "Beginning of line at first non-white character." |
3011 (interactive "P") | |
19078 | 3012 (viper-leave-region-active) |
3013 (let ((val (viper-p-val arg)) | |
3014 (com (viper-getcom arg))) | |
3015 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3016 (forward-to-indentation (1- val)) |
19078 | 3017 (if com (viper-execute-com 'viper-bol-and-skip-white val com)))) |
3018 | |
3019 (defun viper-goto-eol (arg) | |
18129 | 3020 "Go to end of line." |
3021 (interactive "P") | |
19078 | 3022 (viper-leave-region-active) |
3023 (let ((val (viper-p-val arg)) | |
3024 (com (viper-getcom arg))) | |
3025 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3026 (end-of-line val) |
19078 | 3027 (if com (viper-execute-com 'viper-goto-eol val com)) |
3028 (if viper-ex-style-motion | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3029 (if (and (eolp) (not (bolp)) |
19078 | 3030 ;; a fix for viper-change-to-eol |
3031 (not (equal viper-current-state 'insert-state))) | |
18129 | 3032 (backward-char 1) |
3033 )))) | |
3034 | |
3035 | |
19078 | 3036 (defun viper-goto-col (arg) |
18129 | 3037 "Go to ARG's column." |
3038 (interactive "P") | |
19078 | 3039 (viper-leave-region-active) |
3040 (let ((val (viper-p-val arg)) | |
3041 (com (viper-getcom arg)) | |
18129 | 3042 line-len) |
19462 | 3043 (setq line-len |
3044 (viper-chars-in-region | |
3045 (viper-line-pos 'start) (viper-line-pos 'end))) | |
19078 | 3046 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 3047 (beginning-of-line) |
3048 (forward-char (1- (min line-len val))) | |
3049 (while (> (current-column) (1- val)) | |
3050 (backward-char 1)) | |
19078 | 3051 (if com (viper-execute-com 'viper-goto-col val com)) |
18129 | 3052 (save-excursion |
3053 (end-of-line) | |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
3054 (if (> val (current-column)) (error "Viper bell"))) |
18129 | 3055 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3056 |
18129 | 3057 |
19078 | 3058 (defun viper-next-line (arg) |
18129 | 3059 "Go to next line." |
3060 (interactive "P") | |
19078 | 3061 (viper-leave-region-active) |
3062 (let ((val (viper-p-val arg)) | |
3063 (com (viper-getCom arg))) | |
3064 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
85890
d505125b0b46
2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82467
diff
changeset
|
3065 ;; do not use forward-line! need to keep column |
99595
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
3066 (let ((line-move-visual nil)) |
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
3067 (if (featurep 'emacs) |
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
3068 (with-no-warnings (next-line val)) |
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
3069 (next-line val))) |
19078 | 3070 (if viper-ex-style-motion |
18129 | 3071 (if (and (eolp) (not (bolp))) (backward-char 1))) |
3072 (setq this-command 'next-line) | |
19078 | 3073 (if com (viper-execute-com 'viper-next-line val com)))) |
3074 | |
87691
f2c8fd594360
2008-01-10 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
87678
diff
changeset
|
3075 (declare-function widget-type "wid-edit" (widget)) |
f2c8fd594360
2008-01-10 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
87678
diff
changeset
|
3076 (declare-function widget-button-press "wid-edit" (pos &optional event)) |
f2c8fd594360
2008-01-10 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
87678
diff
changeset
|
3077 (declare-function viper-set-hooks "viper" ()) |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3078 |
19078 | 3079 (defun viper-next-line-at-bol (arg) |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3080 "Next line at beginning of line. |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3081 If point is on a widget or a button, simulate clicking on that widget/button." |
18129 | 3082 (interactive "P") |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3083 (let* ((field (get-char-property (point) 'field)) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3084 (button (get-char-property (point) 'button)) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3085 (doc (get-char-property (point) 'widget-doc)) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3086 (widget (or field button doc))) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3087 (if (and widget |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3088 (if (symbolp widget) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3089 (get widget 'widget-type) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3090 (and (consp widget) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3091 (get (widget-type widget) 'widget-type)))) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3092 (widget-button-press (point)) |
72974
54ea774c3eed
* viper.el: Bumped up version/date of update to reflect the substantial
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72579
diff
changeset
|
3093 (if (and (fboundp 'button-at) (fboundp 'push-button) (button-at (point))) |
71382
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3094 (push-button) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3095 ;; not a widget or a button |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3096 (viper-leave-region-active) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3097 (save-excursion |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3098 (end-of-line) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3099 (if (eobp) (error "Last line in buffer"))) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3100 (let ((val (viper-p-val arg)) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3101 (com (viper-getCom arg))) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3102 (if com (viper-move-marker-locally 'viper-com-point (point))) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3103 (forward-line val) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3104 (back-to-indentation) |
4033086b16b6
2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
68997
diff
changeset
|
3105 (if com (viper-execute-com 'viper-next-line-at-bol val com))))))) |
19078 | 3106 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
3107 |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3108 (defun viper-previous-line (arg) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3109 "Go to previous line." |
18129 | 3110 (interactive "P") |
19078 | 3111 (viper-leave-region-active) |
3112 (let ((val (viper-p-val arg)) | |
3113 (com (viper-getCom arg))) | |
3114 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
85890
d505125b0b46
2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82467
diff
changeset
|
3115 ;; do not use forward-line! need to keep column |
99595
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
3116 (let ((line-move-visual nil)) |
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
3117 (if (featurep 'emacs) |
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
3118 (with-no-warnings (previous-line val)) |
eb7532b56b78
2008-11-16 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
94658
diff
changeset
|
3119 (previous-line val))) |
19078 | 3120 (if viper-ex-style-motion |
18129 | 3121 (if (and (eolp) (not (bolp))) (backward-char 1))) |
3122 (setq this-command 'previous-line) | |
19078 | 3123 (if com (viper-execute-com 'viper-previous-line val com)))) |
3124 | |
3125 | |
3126 (defun viper-previous-line-at-bol (arg) | |
18129 | 3127 "Previous line at beginning of line." |
3128 (interactive "P") | |
19078 | 3129 (viper-leave-region-active) |
18129 | 3130 (save-excursion |
3131 (beginning-of-line) | |
3132 (if (bobp) (error "First line in buffer"))) | |
19078 | 3133 (let ((val (viper-p-val arg)) |
3134 (com (viper-getCom arg))) | |
3135 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3136 (forward-line (- val)) |
3137 (back-to-indentation) | |
19078 | 3138 (if com (viper-execute-com 'viper-previous-line val com)))) |
3139 | |
3140 (defun viper-change-to-eol (arg) | |
18129 | 3141 "Change to end of line." |
3142 (interactive "P") | |
19078 | 3143 (viper-goto-eol (cons arg ?c))) |
3144 | |
3145 (defun viper-kill-line (arg) | |
18129 | 3146 "Delete line." |
3147 (interactive "P") | |
19078 | 3148 (viper-goto-eol (cons arg ?d))) |
3149 | |
3150 (defun viper-erase-line (arg) | |
18129 | 3151 "Erase line." |
3152 (interactive "P") | |
19078 | 3153 (viper-beginning-of-line (cons arg ?d))) |
18129 | 3154 |
3155 | |
3156 ;;; Moving around | |
3157 | |
19078 | 3158 (defun viper-goto-line (arg) |
18129 | 3159 "Go to ARG's line. Without ARG go to end of buffer." |
3160 (interactive "P") | |
19078 | 3161 (let ((val (viper-P-val arg)) |
3162 (com (viper-getCom arg))) | |
3163 (viper-move-marker-locally 'viper-com-point (point)) | |
3164 (viper-deactivate-mark) | |
18129 | 3165 (push-mark nil t) |
3166 (if (null val) | |
3167 (goto-char (point-max)) | |
3168 (goto-char (point-min)) | |
3169 (forward-line (1- val))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3170 |
18129 | 3171 ;; positioning is done twice: before and after command execution |
3172 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) | |
3173 (back-to-indentation) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3174 |
19078 | 3175 (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
|
3176 |
18129 | 3177 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) |
3178 (back-to-indentation) | |
3179 )) | |
3180 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3181 ;; Find ARG's occurrence of CHAR on the current line. |
18129 | 3182 ;; If FORWARD then search is forward, otherwise backward. OFFSET is used to |
3183 ;; adjust point after search. | |
19078 | 3184 (defun viper-find-char (arg char forward offset) |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
3185 (or (char-or-string-p char) (error "Viper bell")) |
18129 | 3186 (let ((arg (if forward arg (- arg))) |
19078 | 3187 (cmd (if (eq viper-intermediate-command 'viper-repeat) |
3188 (nth 5 viper-d-com) | |
3189 (viper-array-to-string (this-command-keys)))) | |
21940 | 3190 point region-beg region-end) |
18129 | 3191 (save-excursion |
3192 (save-restriction | |
21940 | 3193 (if (> arg 0) ; forward |
3194 (progn | |
3195 (setq region-beg (point)) | |
3196 (if viper-allow-multiline-replace-regions | |
3197 (viper-forward-paragraph 1) | |
3198 (end-of-line)) | |
3199 (setq region-end (point))) | |
3200 (setq region-end (point)) | |
3201 (if viper-allow-multiline-replace-regions | |
3202 (viper-backward-paragraph 1) | |
3203 (beginning-of-line)) | |
3204 (setq region-beg (point))) | |
3205 (if (or (and (< arg 0) | |
3206 (< (- region-end region-beg) | |
3207 (if viper-allow-multiline-replace-regions | |
3208 2 1)) | |
3209 (bolp)) | |
3210 (and (> arg 0) | |
3211 (< (- region-end region-beg) | |
3212 (if viper-allow-multiline-replace-regions | |
3213 3 2)) | |
3214 (eolp))) | |
3215 (error "Command `%s': At %s of %s" | |
3216 cmd | |
3217 (if (> arg 0) "end" "beginning") | |
3218 (if viper-allow-multiline-replace-regions | |
3219 "paragraph" "line"))) | |
3220 (narrow-to-region region-beg region-end) | |
18129 | 3221 ;; if arg > 0, point is forwarded before search. |
3222 (if (> arg 0) (goto-char (1+ (point-min))) | |
3223 (goto-char (point-max))) | |
3224 (if (let ((case-fold-search nil)) | |
3225 (search-forward (char-to-string char) nil 0 arg)) | |
3226 (setq point (point)) | |
3227 (error "Command `%s': `%c' not found" cmd char)))) | |
19462 | 3228 (goto-char point) |
3229 (if (> arg 0) | |
3230 (backward-char (if offset 2 1)) | |
3231 (forward-char (if offset 1 0))))) | |
18129 | 3232 |
19078 | 3233 (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
|
3234 "Find char on the line. |
18129 | 3235 If called interactively read the char to find from the terminal, and if |
63268
b9bfb8457681
(viper-find-char-forward): Fix spellings in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
62440
diff
changeset
|
3236 called from viper-repeat, the char last used is used. This behavior is |
18129 | 3237 controlled by the sign of prefix numeric value." |
3238 (interactive "P") | |
19078 | 3239 (let ((val (viper-p-val arg)) |
3240 (com (viper-getcom arg)) | |
3241 (cmd-representation (nth 5 viper-d-com))) | |
18129 | 3242 (if (> val 0) |
3243 ;; this means that the function was called interactively | |
19078 | 3244 (setq viper-f-char (read-char) |
3245 viper-f-forward t | |
3246 viper-f-offset nil) | |
3247 ;; viper-repeat --- set viper-F-char from command-keys | |
3248 (setq viper-F-char (if (stringp cmd-representation) | |
3249 (viper-seq-last-elt cmd-representation) | |
3250 viper-F-char) | |
3251 viper-f-char viper-F-char) | |
18129 | 3252 (setq val (- val))) |
19078 | 3253 (if com (viper-move-marker-locally 'viper-com-point (point))) |
3254 (viper-find-char | |
3255 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) t nil) | |
18129 | 3256 (setq val (- val)) |
3257 (if com | |
3258 (progn | |
19078 | 3259 (setq viper-F-char viper-f-char) ; set new viper-F-char |
18129 | 3260 (forward-char) |
19078 | 3261 (viper-execute-com 'viper-find-char-forward val com))))) |
3262 | |
3263 (defun viper-goto-char-forward (arg) | |
18129 | 3264 "Go up to char ARG forward on line." |
3265 (interactive "P") | |
19078 | 3266 (let ((val (viper-p-val arg)) |
3267 (com (viper-getcom arg)) | |
3268 (cmd-representation (nth 5 viper-d-com))) | |
18129 | 3269 (if (> val 0) |
3270 ;; this means that the function was called interactively | |
19078 | 3271 (setq viper-f-char (read-char) |
3272 viper-f-forward t | |
3273 viper-f-offset t) | |
3274 ;; viper-repeat --- set viper-F-char from command-keys | |
3275 (setq viper-F-char (if (stringp cmd-representation) | |
3276 (viper-seq-last-elt cmd-representation) | |
3277 viper-F-char) | |
3278 viper-f-char viper-F-char) | |
18129 | 3279 (setq val (- val))) |
19078 | 3280 (if com (viper-move-marker-locally 'viper-com-point (point))) |
3281 (viper-find-char | |
3282 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) t t) | |
18129 | 3283 (setq val (- val)) |
3284 (if com | |
3285 (progn | |
19078 | 3286 (setq viper-F-char viper-f-char) ; set new viper-F-char |
18129 | 3287 (forward-char) |
19078 | 3288 (viper-execute-com 'viper-goto-char-forward val com))))) |
3289 | |
3290 (defun viper-find-char-backward (arg) | |
18129 | 3291 "Find char ARG on line backward." |
3292 (interactive "P") | |
19078 | 3293 (let ((val (viper-p-val arg)) |
3294 (com (viper-getcom arg)) | |
3295 (cmd-representation (nth 5 viper-d-com))) | |
18129 | 3296 (if (> val 0) |
3297 ;; this means that the function was called interactively | |
19078 | 3298 (setq viper-f-char (read-char) |
3299 viper-f-forward nil | |
3300 viper-f-offset nil) | |
3301 ;; viper-repeat --- set viper-F-char from command-keys | |
3302 (setq viper-F-char (if (stringp cmd-representation) | |
3303 (viper-seq-last-elt cmd-representation) | |
3304 viper-F-char) | |
3305 viper-f-char viper-F-char) | |
18129 | 3306 (setq val (- val))) |
19078 | 3307 (if com (viper-move-marker-locally 'viper-com-point (point))) |
3308 (viper-find-char | |
3309 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) nil nil) | |
18129 | 3310 (setq val (- val)) |
3311 (if com | |
3312 (progn | |
19078 | 3313 (setq viper-F-char viper-f-char) ; set new viper-F-char |
3314 (viper-execute-com 'viper-find-char-backward val com))))) | |
3315 | |
3316 (defun viper-goto-char-backward (arg) | |
18129 | 3317 "Go up to char ARG backward on line." |
3318 (interactive "P") | |
19078 | 3319 (let ((val (viper-p-val arg)) |
3320 (com (viper-getcom arg)) | |
3321 (cmd-representation (nth 5 viper-d-com))) | |
18129 | 3322 (if (> val 0) |
3323 ;; this means that the function was called interactively | |
19078 | 3324 (setq viper-f-char (read-char) |
3325 viper-f-forward nil | |
3326 viper-f-offset t) | |
3327 ;; viper-repeat --- set viper-F-char from command-keys | |
3328 (setq viper-F-char (if (stringp cmd-representation) | |
3329 (viper-seq-last-elt cmd-representation) | |
3330 viper-F-char) | |
3331 viper-f-char viper-F-char) | |
18129 | 3332 (setq val (- val))) |
19078 | 3333 (if com (viper-move-marker-locally 'viper-com-point (point))) |
3334 (viper-find-char | |
3335 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) nil t) | |
18129 | 3336 (setq val (- val)) |
3337 (if com | |
3338 (progn | |
19078 | 3339 (setq viper-F-char viper-f-char) ; set new viper-F-char |
3340 (viper-execute-com 'viper-goto-char-backward val com))))) | |
3341 | |
3342 (defun viper-repeat-find (arg) | |
18129 | 3343 "Repeat previous find command." |
3344 (interactive "P") | |
19078 | 3345 (let ((val (viper-p-val arg)) |
3346 (com (viper-getcom arg))) | |
3347 (viper-deactivate-mark) | |
3348 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
3349 (viper-find-char val viper-f-char viper-f-forward viper-f-offset) | |
18129 | 3350 (if com |
3351 (progn | |
19078 | 3352 (if viper-f-forward (forward-char)) |
3353 (viper-execute-com 'viper-repeat-find val com))))) | |
3354 | |
3355 (defun viper-repeat-find-opposite (arg) | |
18129 | 3356 "Repeat previous find command in the opposite direction." |
3357 (interactive "P") | |
19078 | 3358 (let ((val (viper-p-val arg)) |
3359 (com (viper-getcom arg))) | |
3360 (viper-deactivate-mark) | |
3361 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
3362 (viper-find-char val viper-f-char (not viper-f-forward) viper-f-offset) | |
18129 | 3363 (if com |
3364 (progn | |
19078 | 3365 (if viper-f-forward (forward-char)) |
3366 (viper-execute-com 'viper-repeat-find-opposite val com))))) | |
18129 | 3367 |
3368 | |
3369 ;; window scrolling etc. | |
3370 | |
19078 | 3371 (defun viper-window-top (arg) |
18129 | 3372 "Go to home window line." |
3373 (interactive "P") | |
19078 | 3374 (let ((val (viper-p-val arg)) |
3375 (com (viper-getCom arg))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3376 (viper-leave-region-active) |
19078 | 3377 (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
|
3378 (push-mark nil t) |
18129 | 3379 (move-to-window-line (1- val)) |
3380 | |
3381 ;; positioning is done twice: before and after command execution | |
3382 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) | |
3383 (back-to-indentation) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3384 |
19078 | 3385 (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
|
3386 |
18129 | 3387 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) |
3388 (back-to-indentation) | |
3389 )) | |
3390 | |
19078 | 3391 (defun viper-window-middle (arg) |
18129 | 3392 "Go to middle window line." |
3393 (interactive "P") | |
19078 | 3394 (let ((val (viper-p-val arg)) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3395 (com (viper-getCom arg))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3396 (viper-leave-region-active) |
19078 | 3397 (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
|
3398 (push-mark nil t) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3399 (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
|
3400 |
18129 | 3401 ;; positioning is done twice: before and after command execution |
3402 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) | |
3403 (back-to-indentation) | |
3404 | |
19078 | 3405 (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
|
3406 |
18129 | 3407 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) |
3408 (back-to-indentation) | |
3409 )) | |
3410 | |
19078 | 3411 (defun viper-window-bottom (arg) |
18129 | 3412 "Go to last window line." |
3413 (interactive "P") | |
19078 | 3414 (let ((val (viper-p-val arg)) |
3415 (com (viper-getCom arg))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3416 (viper-leave-region-active) |
19078 | 3417 (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
|
3418 (push-mark nil t) |
18129 | 3419 (move-to-window-line (- val)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3420 |
18129 | 3421 ;; positioning is done twice: before and after command execution |
3422 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) | |
3423 (back-to-indentation) | |
3424 | |
19078 | 3425 (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
|
3426 |
18129 | 3427 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1)) |
3428 (back-to-indentation) | |
3429 )) | |
3430 | |
19078 | 3431 (defun viper-line-to-top (arg) |
18129 | 3432 "Put current line on the home line." |
3433 (interactive "p") | |
3434 (recenter (1- arg))) | |
3435 | |
19078 | 3436 (defun viper-line-to-middle (arg) |
18129 | 3437 "Put current line on the middle line." |
3438 (interactive "p") | |
3439 (recenter (+ (1- arg) (/ (1- (window-height)) 2)))) | |
3440 | |
19078 | 3441 (defun viper-line-to-bottom (arg) |
18129 | 3442 "Put current line on the last line." |
3443 (interactive "p") | |
3444 (recenter (- (window-height) (1+ arg)))) | |
3445 | |
19078 | 3446 ;; If point is within viper-search-scroll-threshold of window top or bottom, |
18129 | 3447 ;; 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
|
3448 ;; 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
|
3449 ;; (which is called from viper-search-forward/backward/next). If the value of |
19078 | 3450 ;; viper-search-scroll-threshold is negative - don't scroll. |
3451 (defun viper-adjust-window () | |
93615
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
3452 (let ((win-height (if (featurep 'xemacs) |
34417c118a39
2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
92379
diff
changeset
|
3453 (window-displayed-height) |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
3454 (1- (window-height)))) ; adjust for modeline |
18129 | 3455 (pt (point)) |
3456 at-top-p at-bottom-p | |
3457 min-scroll direction) | |
3458 (save-excursion | |
3459 (move-to-window-line 0) ; top | |
3460 (setq at-top-p | |
3461 (<= (count-lines pt (point)) | |
19078 | 3462 viper-search-scroll-threshold)) |
18129 | 3463 (move-to-window-line -1) ; bottom |
3464 (setq at-bottom-p | |
92379
3b2c0edcb428
(zmacs-region-stays): No need to define for compiler.
Glenn Morris <rgm@gnu.org>
parents:
87691
diff
changeset
|
3465 (<= (count-lines pt (point)) viper-search-scroll-threshold))) |
19078 | 3466 (cond (at-top-p (setq min-scroll (1- viper-search-scroll-threshold) |
18129 | 3467 direction 1)) |
19078 | 3468 (at-bottom-p (setq min-scroll (1+ viper-search-scroll-threshold) |
18129 | 3469 direction -1))) |
3470 (if min-scroll | |
3471 (recenter | |
3472 (* (max min-scroll (/ win-height 7)) direction))) | |
3473 )) | |
3474 | |
3475 | |
3476 ;; paren match | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3477 ;; must correct this to only match ( to ) etc. On the other hand |
18129 | 3478 ;; 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
|
3479 ;; catch _all_ imbalances. |
18129 | 3480 |
19078 | 3481 (defun viper-paren-match (arg) |
18129 | 3482 "Go to the matching parenthesis." |
3483 (interactive "P") | |
19078 | 3484 (viper-leave-region-active) |
3485 (let ((com (viper-getcom arg)) | |
3486 (parse-sexp-ignore-comments viper-parse-sexp-ignore-comments) | |
18129 | 3487 anchor-point) |
3488 (if (integerp arg) | |
3489 (if (or (> arg 99) (< arg 1)) | |
3490 (error "Prefix must be between 1 and 99") | |
3491 (goto-char | |
3492 (if (> (point-max) 80000) | |
3493 (* (/ (point-max) 100) arg) | |
3494 (/ (* (point-max) arg) 100))) | |
3495 (back-to-indentation)) | |
3496 (let (beg-lim end-lim) | |
3497 (if (and (eolp) (not (bolp))) (forward-char -1)) | |
3498 (if (not (looking-at "[][(){}]")) | |
3499 (setq anchor-point (point))) | |
3500 (save-excursion | |
3501 (beginning-of-line) | |
3502 (setq beg-lim (point)) | |
3503 (end-of-line) | |
3504 (setq end-lim (point))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3505 (cond ((re-search-forward "[][(){}]" end-lim t) |
18129 | 3506 (backward-char) ) |
3507 ((re-search-backward "[][(){}]" beg-lim t)) | |
3508 (t | |
3509 (error "No matching character on line")))) | |
3510 (cond ((looking-at "[\(\[{]") | |
19078 | 3511 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 3512 (forward-sexp 1) |
3513 (if com | |
19078 | 3514 (viper-execute-com 'viper-paren-match nil com) |
18129 | 3515 (backward-char))) |
3516 (anchor-point | |
3517 (if com | |
3518 (progn | |
19078 | 3519 (viper-move-marker-locally 'viper-com-point anchor-point) |
18129 | 3520 (forward-char 1) |
19078 | 3521 (viper-execute-com 'viper-paren-match nil com) |
18129 | 3522 ))) |
3523 ((looking-at "[])}]") | |
3524 (forward-char) | |
19078 | 3525 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 3526 (backward-sexp 1) |
19078 | 3527 (if com (viper-execute-com 'viper-paren-match nil com))) |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
3528 (t (error "Viper bell")))))) |
18129 | 3529 |
19078 | 3530 (defun viper-toggle-parse-sexp-ignore-comments () |
18129 | 3531 (interactive) |
19078 | 3532 (setq viper-parse-sexp-ignore-comments |
3533 (not viper-parse-sexp-ignore-comments)) | |
18839 | 3534 (princ (format |
3535 "From now on, `%%' will %signore parentheses inside comment fields" | |
19078 | 3536 (if viper-parse-sexp-ignore-comments "" "NOT ")))) |
18129 | 3537 |
3538 | |
21940 | 3539 ;; sentence, paragraph and heading |
18129 | 3540 |
19078 | 3541 (defun viper-forward-sentence (arg) |
18129 | 3542 "Forward sentence." |
3543 (interactive "P") | |
20003 | 3544 (or (eq last-command this-command) |
3545 (push-mark nil t)) | |
19078 | 3546 (let ((val (viper-p-val arg)) |
3547 (com (viper-getcom arg))) | |
3548 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3549 (forward-sentence val) |
19078 | 3550 (if com (viper-execute-com 'viper-forward-sentence nil com)))) |
3551 | |
3552 (defun viper-backward-sentence (arg) | |
18129 | 3553 "Backward sentence." |
3554 (interactive "P") | |
20003 | 3555 (or (eq last-command this-command) |
3556 (push-mark nil t)) | |
19078 | 3557 (let ((val (viper-p-val arg)) |
3558 (com (viper-getcom arg))) | |
3559 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3560 (backward-sentence val) |
19078 | 3561 (if com (viper-execute-com 'viper-backward-sentence nil com)))) |
3562 | |
3563 (defun viper-forward-paragraph (arg) | |
18129 | 3564 "Forward paragraph." |
3565 (interactive "P") | |
20003 | 3566 (or (eq last-command this-command) |
3567 (push-mark nil t)) | |
19078 | 3568 (let ((val (viper-p-val arg)) |
21940 | 3569 ;; if you want d} operate on whole lines, change viper-getcom to |
3570 ;; viper-getCom below | |
3571 (com (viper-getcom arg))) | |
19078 | 3572 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 3573 (forward-paragraph val) |
3574 (if com | |
3575 (progn | |
3576 (backward-char 1) | |
19078 | 3577 (viper-execute-com 'viper-forward-paragraph nil com))))) |
3578 | |
3579 (defun viper-backward-paragraph (arg) | |
18129 | 3580 "Backward paragraph." |
3581 (interactive "P") | |
20003 | 3582 (or (eq last-command this-command) |
3583 (push-mark nil t)) | |
19078 | 3584 (let ((val (viper-p-val arg)) |
21940 | 3585 ;; if you want d{ operate on whole lines, change viper-getcom to |
3586 ;; viper-getCom below | |
3587 (com (viper-getcom arg))) | |
19078 | 3588 (if com (viper-move-marker-locally 'viper-com-point (point))) |
18129 | 3589 (backward-paragraph val) |
3590 (if com | |
3591 (progn | |
3592 (forward-char 1) | |
19078 | 3593 (viper-execute-com 'viper-backward-paragraph nil com) |
18129 | 3594 (backward-char 1))))) |
3595 | |
20003 | 3596 ;; should be mode-specific |
19078 | 3597 (defun viper-prev-heading (arg) |
18129 | 3598 (interactive "P") |
19078 | 3599 (let ((val (viper-p-val arg)) |
3600 (com (viper-getCom arg))) | |
3601 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
3602 (re-search-backward viper-heading-start nil t val) | |
18129 | 3603 (goto-char (match-beginning 0)) |
19078 | 3604 (if com (viper-execute-com 'viper-prev-heading nil com)))) |
3605 | |
3606 (defun viper-heading-end (arg) | |
18129 | 3607 (interactive "P") |
19078 | 3608 (let ((val (viper-p-val arg)) |
3609 (com (viper-getCom arg))) | |
3610 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
3611 (re-search-forward viper-heading-end nil t val) | |
18129 | 3612 (goto-char (match-beginning 0)) |
19078 | 3613 (if com (viper-execute-com 'viper-heading-end nil com)))) |
3614 | |
3615 (defun viper-next-heading (arg) | |
18129 | 3616 (interactive "P") |
19078 | 3617 (let ((val (viper-p-val arg)) |
3618 (com (viper-getCom arg))) | |
3619 (if com (viper-move-marker-locally 'viper-com-point (point))) | |
18129 | 3620 (end-of-line) |
19078 | 3621 (re-search-forward viper-heading-start nil t val) |
18129 | 3622 (goto-char (match-beginning 0)) |
19078 | 3623 (if com (viper-execute-com 'viper-next-heading nil com)))) |
18129 | 3624 |
3625 | |
3626 ;; scrolling | |
3627 | |
19078 | 3628 (defun viper-scroll-screen (arg) |
18129 | 3629 "Scroll to next screen." |
3630 (interactive "p") | |
3631 (condition-case nil | |
3632 (if (> arg 0) | |
3633 (while (> arg 0) | |
3634 (scroll-up) | |
3635 (setq arg (1- arg))) | |
3636 (while (> 0 arg) | |
3637 (scroll-down) | |
3638 (setq arg (1+ arg)))) | |
3639 (error (beep 1) | |
3640 (if (> arg 0) | |
3641 (progn | |
3642 (message "End of buffer") | |
3643 (goto-char (point-max))) | |
3644 (message "Beginning of buffer") | |
3645 (goto-char (point-min)))) | |
3646 )) | |
3647 | |
19078 | 3648 (defun viper-scroll-screen-back (arg) |
18129 | 3649 "Scroll to previous screen." |
3650 (interactive "p") | |
19078 | 3651 (viper-scroll-screen (- arg))) |
3652 | |
3653 (defun viper-scroll-down (arg) | |
18129 | 3654 "Pull down half screen." |
3655 (interactive "P") | |
3656 (condition-case nil | |
3657 (if (null arg) | |
3658 (scroll-down (/ (window-height) 2)) | |
3659 (scroll-down arg)) | |
3660 (error (beep 1) | |
3661 (message "Beginning of buffer") | |
3662 (goto-char (point-min))))) | |
3663 | |
19078 | 3664 (defun viper-scroll-down-one (arg) |
18129 | 3665 "Scroll up one line." |
3666 (interactive "p") | |
3667 (scroll-down arg)) | |
3668 | |
19078 | 3669 (defun viper-scroll-up (arg) |
18129 | 3670 "Pull up half screen." |
3671 (interactive "P") | |
3672 (condition-case nil | |
3673 (if (null arg) | |
3674 (scroll-up (/ (window-height) 2)) | |
3675 (scroll-up arg)) | |
3676 (error (beep 1) | |
3677 (message "End of buffer") | |
3678 (goto-char (point-max))))) | |
3679 | |
19078 | 3680 (defun viper-scroll-up-one (arg) |
18129 | 3681 "Scroll down one line." |
3682 (interactive "p") | |
3683 (scroll-up arg)) | |
3684 | |
3685 | |
3686 ;; searching | |
3687 | |
104277
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3688 (defun viper-insert-isearch-string () |
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3689 "Insert `isearch' last search string." |
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3690 (interactive) |
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3691 (when isearch-string (insert isearch-string))) |
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3692 |
19078 | 3693 (defun viper-if-string (prompt) |
3694 (if (memq viper-intermediate-command | |
3695 '(viper-command-argument viper-digit-argument viper-repeat)) | |
3696 (setq viper-this-command-keys (this-command-keys))) | |
104277
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3697 (let* ((keymap (let ((keymap (copy-keymap minibuffer-local-map))) |
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3698 (define-key keymap [(control ?s)] 'viper-insert-isearch-string) |
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3699 keymap)) |
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3700 (s (viper-read-string-with-history |
18129 | 3701 prompt |
3702 nil ; no initial | |
19078 | 3703 'viper-search-history |
104277
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3704 (car viper-search-history) |
affb617d6101
2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
101013
diff
changeset
|
3705 keymap))) |
18129 | 3706 (if (not (string= s "")) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3707 (setq viper-s-string s)))) |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3708 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3709 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3710 (defun viper-toggle-search-style (arg) |
19078 | 3711 "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
|
3712 Without prefix argument, will ask which search style to toggle. With prefix |
19078 | 3713 arg 1,toggles viper-case-fold-search; with arg 2 toggles viper-re-search. |
3714 | |
3715 Although this function is bound to \\[viper-toggle-search-style], the most | |
18129 | 3716 convenient way to use it is to bind `//' to the macro |
19078 | 3717 `1 M-x viper-toggle-search-style' and `///' to |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3718 `2 M-x viper-toggle-search-style'. In this way, hitting `//' quickly will |
18129 | 3719 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
|
3720 search. Macros are more convenient in this case because they don't affect |
18129 | 3721 the Emacs binding of `/'." |
3722 (interactive "P") | |
3723 (let (msg) | |
3724 (cond ((or (eq arg 1) | |
3725 (and (null arg) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3726 (y-or-n-p (format "Search style: '%s'. Want '%s'? " |
19078 | 3727 (if viper-case-fold-search |
18129 | 3728 "case-insensitive" "case-sensitive") |
19078 | 3729 (if viper-case-fold-search |
18129 | 3730 "case-sensitive" |
3731 "case-insensitive"))))) | |
19078 | 3732 (setq viper-case-fold-search (null viper-case-fold-search)) |
3733 (if viper-case-fold-search | |
18129 | 3734 (setq msg "Search becomes case-insensitive") |
3735 (setq msg "Search becomes case-sensitive"))) | |
3736 ((or (eq arg 2) | |
3737 (and (null arg) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
3738 (y-or-n-p (format "Search style: '%s'. Want '%s'? " |
19078 | 3739 (if viper-re-search |
18129 | 3740 "regexp-search" "vanilla-search") |
19078 | 3741 (if viper-re-search |
18129 | 3742 "vanilla-search" |
3743 "regexp-search"))))) | |
19078 | 3744 (setq viper-re-search (null viper-re-search)) |
3745 (if viper-re-search | |
18129 | 3746 (setq msg "Search becomes regexp-style") |
3747 (setq msg "Search becomes vanilla-style"))) | |
3748 (t | |
3749 (setq msg "Search style remains unchanged"))) | |
18839 | 3750 (princ msg t))) |
3751 | |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3752 (defun viper-set-searchstyle-toggling-macros (unset &optional major-mode) |
18129 | 3753 "Set the macros for toggling the search style in Viper's vi-state. |
3754 The macro that toggles case sensitivity is bound to `//', and the one that | |
3755 toggles regexp search is bound to `///'. | |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3756 With a prefix argument, this function unsets the macros. |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3757 If MAJOR-MODE is set, set the macros only in that major mode." |
18129 | 3758 (interactive "P") |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3759 (let (scope) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3760 (if (and major-mode (symbolp major-mode)) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3761 (setq scope major-mode) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3762 (setq scope 't)) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3763 (or noninteractive |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3764 (if (not unset) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3765 (progn |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3766 ;; toggle case sensitivity in search |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3767 (viper-record-kbd-macro |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3768 "//" 'vi-state |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3769 [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] |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3770 scope) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3771 ;; toggle regexp/vanila search |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3772 (viper-record-kbd-macro |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3773 "///" 'vi-state |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3774 [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] |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3775 scope) |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
104277
diff
changeset
|
3776 (if (called-interactively-p 'interactive) |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3777 (message |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3778 "// and /// now toggle case-sensitivity and regexp search"))) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3779 (viper-unrecord-kbd-macro "//" 'vi-state) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3780 (sit-for 2) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3781 (viper-unrecord-kbd-macro "///" 'vi-state))) |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
3782 )) |
63268
b9bfb8457681
(viper-find-char-forward): Fix spellings in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
62440
diff
changeset
|
3783 |
b9bfb8457681
(viper-find-char-forward): Fix spellings in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
62440
diff
changeset
|
3784 |
19078 | 3785 (defun viper-set-parsing-style-toggling-macro (unset) |
18839 | 3786 "Set `%%%' to be a macro that toggles whether comment fields should be parsed for matching parentheses. |
3787 This is used in conjunction with the `%' command. | |
3788 | |
3789 With a prefix argument, unsets the macro." | |
3790 (interactive "P") | |
3791 (or noninteractive | |
3792 (if (not unset) | |
3793 (progn | |
3794 ;; Make %%% toggle parsing comments for matching parentheses | |
19078 | 3795 (viper-record-kbd-macro |
18839 | 3796 "%%%" 'vi-state |
19078 | 3797 [(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 | 3798 't) |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
104277
diff
changeset
|
3799 (if (called-interactively-p 'interactive) |
18839 | 3800 (message |
3801 "%%%%%% now toggles whether comments should be parsed for matching parentheses"))) | |
19078 | 3802 (viper-unrecord-kbd-macro "%%%" 'vi-state)))) |
3803 | |
3804 | |
3805 (defun viper-set-emacs-state-searchstyle-macros (unset &optional arg-majormode) | |
18129 | 3806 "Set the macros for toggling the search style in Viper's emacs-state. |
3807 The macro that toggles case sensitivity is bound to `//', and the one that | |
3808 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
|
3809 With a prefix argument, this function unsets the macros. |
18129 | 3810 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
|
3811 this sets the macros only in the macros in that major mode. Otherwise, |
18129 | 3812 the macros are set in the current major mode. |
3813 \(When unsetting the macros, the second argument has no effect.\)" | |
3814 (interactive "P") | |
3815 (or noninteractive | |
3816 (if (not unset) | |
3817 (progn | |
3818 ;; toggle case sensitivity in search | |
19078 | 3819 (viper-record-kbd-macro |
18129 | 3820 "//" 'emacs-state |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3821 [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 | 3822 (or arg-majormode major-mode)) |
3823 ;; toggle regexp/vanila search | |
19078 | 3824 (viper-record-kbd-macro |
18129 | 3825 "///" 'emacs-state |
19078 | 3826 [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 | 3827 (or arg-majormode major-mode)) |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
104277
diff
changeset
|
3828 (if (called-interactively-p 'interactive) |
18129 | 3829 (message |
3830 "// and /// now toggle case-sensitivity and regexp search."))) | |
19078 | 3831 (viper-unrecord-kbd-macro "//" 'emacs-state) |
18129 | 3832 (sit-for 2) |
19078 | 3833 (viper-unrecord-kbd-macro "///" 'emacs-state)))) |
3834 | |
3835 | |
3836 (defun viper-search-forward (arg) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3837 "Search a string forward. |
18129 | 3838 ARG is used to find the ARG's occurrence of the string. |
3839 Null string will repeat previous search." | |
3840 (interactive "P") | |
19078 | 3841 (let ((val (viper-P-val arg)) |
3842 (com (viper-getcom arg)) | |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3843 (old-str viper-s-string) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3844 debug-on-error) |
19078 | 3845 (setq viper-s-forward t) |
3846 (viper-if-string "/") | |
18129 | 3847 ;; this is not used at present, but may be used later |
19078 | 3848 (if (or (not (equal old-str viper-s-string)) |
3849 (not (markerp viper-local-search-start-marker)) | |
3850 (not (marker-buffer viper-local-search-start-marker))) | |
3851 (setq viper-local-search-start-marker (point-marker))) | |
3852 (viper-search viper-s-string t val) | |
18129 | 3853 (if com |
3854 (progn | |
19078 | 3855 (viper-move-marker-locally 'viper-com-point (mark t)) |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3856 (viper-execute-com 'viper-search-next val com))) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3857 )) |
19078 | 3858 |
3859 (defun viper-search-backward (arg) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3860 "Search a string backward. |
18129 | 3861 ARG is used to find the ARG's occurrence of the string. |
3862 Null string will repeat previous search." | |
3863 (interactive "P") | |
19078 | 3864 (let ((val (viper-P-val arg)) |
3865 (com (viper-getcom arg)) | |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3866 (old-str viper-s-string) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3867 debug-on-error) |
19078 | 3868 (setq viper-s-forward nil) |
3869 (viper-if-string "?") | |
18129 | 3870 ;; this is not used at present, but may be used later |
19078 | 3871 (if (or (not (equal old-str viper-s-string)) |
3872 (not (markerp viper-local-search-start-marker)) | |
3873 (not (marker-buffer viper-local-search-start-marker))) | |
3874 (setq viper-local-search-start-marker (point-marker))) | |
3875 (viper-search viper-s-string nil val) | |
18129 | 3876 (if com |
3877 (progn | |
19078 | 3878 (viper-move-marker-locally 'viper-com-point (mark t)) |
3879 (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
|
3880 |
18129 | 3881 |
3882 ;; Search for COUNT's occurrence of STRING. | |
3883 ;; Search is forward if FORWARD is non-nil, otherwise backward. | |
3884 ;; INIT-POINT is the position where search is to start. | |
3885 ;; Arguments: | |
3886 ;; (STRING FORW COUNT &optional NO-OFFSET INIT-POINT LIMIT FAIL-IF-NOT-FOUND) | |
19078 | 3887 (defun viper-search (string forward arg |
3888 &optional no-offset init-point fail-if-not-found) | |
18129 | 3889 (if (not (equal string "")) |
19078 | 3890 (let ((val (viper-p-val arg)) |
3891 (com (viper-getcom arg)) | |
18129 | 3892 (offset (not no-offset)) |
19078 | 3893 (case-fold-search viper-case-fold-search) |
18129 | 3894 (start-point (or init-point (point)))) |
19078 | 3895 (viper-deactivate-mark) |
18129 | 3896 (if forward |
3897 (condition-case nil | |
3898 (progn | |
19078 | 3899 (if offset (viper-forward-char-carefully)) |
3900 (if viper-re-search | |
18129 | 3901 (progn |
3902 (re-search-forward string nil nil val) | |
3903 (re-search-backward string)) | |
3904 (search-forward string nil nil val) | |
3905 (search-backward string)) | |
3906 (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
|
3907 (push-mark start-point t))) |
18129 | 3908 (search-failed |
93773
d7554c14325c
2008-04-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
93615
diff
changeset
|
3909 (if (and (not fail-if-not-found) viper-search-wrap-around) |
18129 | 3910 (progn |
3911 (message "Search wrapped around BOTTOM of buffer") | |
3912 (goto-char (point-min)) | |
19078 | 3913 (viper-search string forward (cons 1 com) t start-point 'fail) |
18129 | 3914 ;; don't wait in macros |
19078 | 3915 (or executing-kbd-macro |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3916 (memq viper-intermediate-command |
19078 | 3917 '(viper-repeat |
3918 viper-digit-argument | |
3919 viper-command-argument)) | |
3920 (sit-for 2)) | |
18129 | 3921 ;; delete the wrap-around message |
3922 (message "") | |
3923 ) | |
3924 (goto-char start-point) | |
3925 (error "`%s': %s not found" | |
3926 string | |
19078 | 3927 (if viper-re-search "Pattern" "String")) |
18129 | 3928 ))) |
3929 ;; backward | |
3930 (condition-case nil | |
3931 (progn | |
19078 | 3932 (if viper-re-search |
18129 | 3933 (re-search-backward string nil nil val) |
3934 (search-backward string nil nil val)) | |
3935 (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
|
3936 (push-mark start-point t))) |
18129 | 3937 (search-failed |
93773
d7554c14325c
2008-04-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
93615
diff
changeset
|
3938 (if (and (not fail-if-not-found) viper-search-wrap-around) |
18129 | 3939 (progn |
3940 (message "Search wrapped around TOP of buffer") | |
3941 (goto-char (point-max)) | |
19078 | 3942 (viper-search string forward (cons 1 com) t start-point 'fail) |
18129 | 3943 ;; don't wait in macros |
19078 | 3944 (or executing-kbd-macro |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3945 (memq viper-intermediate-command |
19078 | 3946 '(viper-repeat |
3947 viper-digit-argument | |
3948 viper-command-argument)) | |
3949 (sit-for 2)) | |
18129 | 3950 ;; delete the wrap-around message |
3951 (message "") | |
3952 ) | |
3953 (goto-char start-point) | |
3954 (error "`%s': %s not found" | |
3955 string | |
19078 | 3956 (if viper-re-search "Pattern" "String")) |
18129 | 3957 )))) |
3958 ;; pull up or down if at top/bottom of window | |
19078 | 3959 (viper-adjust-window) |
18129 | 3960 ;; highlight the result of search |
3961 ;; don't wait and don't highlight in macros | |
3962 (or executing-kbd-macro | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
3963 (memq viper-intermediate-command |
19078 | 3964 '(viper-repeat viper-digit-argument viper-command-argument)) |
3965 (viper-flash-search-pattern)) | |
18129 | 3966 ))) |
3967 | |
19078 | 3968 (defun viper-search-next (arg) |
18129 | 3969 "Repeat previous search." |
3970 (interactive "P") | |
19078 | 3971 (let ((val (viper-p-val arg)) |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3972 (com (viper-getcom arg)) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3973 debug-on-error) |
72516
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
3974 (if (or (null viper-s-string) (string= viper-s-string "")) |
aba79a1f03ed
2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
71382
diff
changeset
|
3975 (error viper-NoPrevSearch)) |
19078 | 3976 (viper-search viper-s-string viper-s-forward arg) |
18129 | 3977 (if com |
3978 (progn | |
19078 | 3979 (viper-move-marker-locally 'viper-com-point (mark t)) |
3980 (viper-execute-com 'viper-search-next val com))))) | |
3981 | |
3982 (defun viper-search-Next (arg) | |
18129 | 3983 "Repeat previous search in the reverse direction." |
3984 (interactive "P") | |
19078 | 3985 (let ((val (viper-p-val arg)) |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3986 (com (viper-getcom arg)) |
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
3987 debug-on-error) |
19078 | 3988 (if (null viper-s-string) (error viper-NoPrevSearch)) |
3989 (viper-search viper-s-string (not viper-s-forward) arg) | |
18129 | 3990 (if com |
3991 (progn | |
19078 | 3992 (viper-move-marker-locally 'viper-com-point (mark t)) |
3993 (viper-execute-com 'viper-search-Next val com))))) | |
18129 | 3994 |
3995 | |
3996 ;; Search contents of buffer defined by one of Viper's motion commands. | |
3997 ;; Repeatable via `n' and `N'. | |
19078 | 3998 (defun viper-buffer-search-enable (&optional c) |
3999 (cond (c (setq viper-buffer-search-char c)) | |
4000 ((null viper-buffer-search-char) | |
73486
db25befb2938
2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
72974
diff
changeset
|
4001 ;; ?g acts as a default value for viper-buffer-search-char |
19078 | 4002 (setq viper-buffer-search-char ?g))) |
4003 (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
|
4004 (cond ((viper-characterp viper-buffer-search-char) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4005 (char-to-string viper-buffer-search-char)) |
42288
3ce98f3e0608
2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39901
diff
changeset
|
4006 (t (error "viper-buffer-search-char: wrong value type, %S" |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4007 viper-buffer-search-char))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4008 'viper-command-argument) |
19078 | 4009 (aset viper-exec-array viper-buffer-search-char 'viper-exec-buffer-search) |
4010 (setq viper-prefix-commands | |
4011 (cons viper-buffer-search-char viper-prefix-commands))) | |
18129 | 4012 |
4013 ;; This is a Viper wraper for isearch-forward. | |
19078 | 4014 (defun viper-isearch-forward (arg) |
18129 | 4015 "Do incremental search forward." |
4016 (interactive "P") | |
4017 ;; emacs bug workaround | |
4018 (if (listp arg) (setq arg (car arg))) | |
19078 | 4019 (viper-exec-form-in-emacs (list 'isearch-forward arg))) |
18129 | 4020 |
4021 ;; This is a Viper wraper for isearch-backward." | |
19078 | 4022 (defun viper-isearch-backward (arg) |
18129 | 4023 "Do incremental search backward." |
4024 (interactive "P") | |
4025 ;; emacs bug workaround | |
4026 (if (listp arg) (setq arg (car arg))) | |
19078 | 4027 (viper-exec-form-in-emacs (list 'isearch-backward arg))) |
18129 | 4028 |
4029 | |
4030 ;; visiting and killing files, buffers | |
4031 | |
19078 | 4032 (defun viper-switch-to-buffer () |
18129 | 4033 "Switch to buffer in the current window." |
4034 (interactive) | |
22283
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
4035 (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
|
4036 buffer) |
18129 | 4037 (setq buffer |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4038 (funcall viper-read-buffer-function |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4039 "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
|
4040 (switch-to-buffer buffer))) |
18129 | 4041 |
19078 | 4042 (defun viper-switch-to-buffer-other-window () |
18129 | 4043 "Switch to buffer in another window." |
4044 (interactive) | |
22283
3649674ebf29
(viper-backward-Word, viper-skip-separators): Bug fixes.
Karl Heuer <kwzh@gnu.org>
parents:
21940
diff
changeset
|
4045 (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
|
4046 buffer) |
18129 | 4047 (setq buffer |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4048 (funcall viper-read-buffer-function |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4049 "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
|
4050 (switch-to-buffer-other-window buffer))) |
18129 | 4051 |
19078 | 4052 (defun viper-kill-buffer () |
18129 | 4053 "Kill a buffer." |
4054 (interactive) | |
4055 (let (buffer buffer-name) | |
4056 (setq buffer-name | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4057 (funcall viper-read-buffer-function |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4058 (format "Kill buffer \(%s\): " |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4059 (buffer-name (current-buffer))))) |
18129 | 4060 (setq buffer |
4061 (if (null buffer-name) | |
4062 (current-buffer) | |
4063 (get-buffer buffer-name))) | |
4064 (if (null buffer) (error "`%s': No such buffer" buffer-name)) | |
4065 (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
|
4066 (y-or-n-p |
18129 | 4067 (format |
4068 "Buffer `%s' is modified, are you sure you want to kill it? " | |
4069 buffer-name))) | |
4070 (kill-buffer buffer) | |
4071 (error "Buffer not killed")))) | |
4072 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4073 |
18129 | 4074 |
4075 ;; yank and pop | |
4076 | |
19078 | 4077 (defsubst viper-yank (text) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4078 "Yank TEXT silently. This works correctly with Emacs's yank-pop command." |
18129 | 4079 (insert text) |
4080 (setq this-command 'yank)) | |
4081 | |
19078 | 4082 (defun viper-put-back (arg) |
18129 | 4083 "Put back after point/below line." |
4084 (interactive "P") | |
19078 | 4085 (let ((val (viper-p-val arg)) |
4086 (text (if viper-use-register | |
4087 (cond ((viper-valid-register viper-use-register '(digit)) | |
4088 (current-kill | |
4089 (- viper-use-register ?1) 'do-not-rotate)) | |
4090 ((viper-valid-register viper-use-register) | |
4091 (get-register (downcase viper-use-register))) | |
4092 (t (error viper-InvalidRegister viper-use-register))) | |
21940 | 4093 (current-kill 0))) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4094 sv-point chars-inserted lines-inserted) |
18129 | 4095 (if (null text) |
19078 | 4096 (if viper-use-register |
4097 (let ((reg viper-use-register)) | |
4098 (setq viper-use-register nil) | |
4099 (error viper-EmptyRegister reg)) | |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
4100 (error "Viper bell"))) |
19078 | 4101 (setq viper-use-register nil) |
4102 (if (viper-end-with-a-newline-p text) | |
18129 | 4103 (progn |
4104 (end-of-line) | |
4105 (if (eobp) | |
4106 (insert "\n") | |
4107 (forward-line 1)) | |
4108 (beginning-of-line)) | |
19078 | 4109 (if (not (eolp)) (viper-forward-char-carefully))) |
4110 (set-marker (viper-mark-marker) (point) (current-buffer)) | |
4111 (viper-set-destructive-command | |
4112 (list 'viper-put-back val nil viper-use-register nil nil)) | |
21940 | 4113 (setq sv-point (point)) |
4114 (viper-loop val (viper-yank text)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4115 (setq chars-inserted (abs (- (point) sv-point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4116 lines-inserted (abs (count-lines (point) sv-point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4117 (if (or (> chars-inserted viper-change-notification-threshold) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4118 (> lines-inserted viper-change-notification-threshold)) |
64750
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
4119 (unless (viper-is-in-minibuffer) |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
4120 (message "Inserted %d character(s), %d line(s)" |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
4121 chars-inserted lines-inserted)))) |
18129 | 4122 ;; 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
|
4123 ;; newline; it leaves the cursor at the beginning when the text contains |
18129 | 4124 ;; a newline |
19078 | 4125 (if (viper-same-line (point) (mark)) |
4126 (or (= (point) (mark)) (viper-backward-char-carefully)) | |
18129 | 4127 (exchange-point-and-mark) |
4128 (if (bolp) | |
4129 (back-to-indentation))) | |
19078 | 4130 (viper-deactivate-mark)) |
4131 | |
4132 (defun viper-Put-back (arg) | |
18129 | 4133 "Put back at point/above line." |
4134 (interactive "P") | |
19078 | 4135 (let ((val (viper-p-val arg)) |
4136 (text (if viper-use-register | |
4137 (cond ((viper-valid-register viper-use-register '(digit)) | |
4138 (current-kill | |
4139 (- viper-use-register ?1) 'do-not-rotate)) | |
4140 ((viper-valid-register viper-use-register) | |
4141 (get-register (downcase viper-use-register))) | |
4142 (t (error viper-InvalidRegister viper-use-register))) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4143 (current-kill 0))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4144 sv-point chars-inserted lines-inserted) |
18129 | 4145 (if (null text) |
19078 | 4146 (if viper-use-register |
4147 (let ((reg viper-use-register)) | |
4148 (setq viper-use-register nil) | |
4149 (error viper-EmptyRegister reg)) | |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
4150 (error "Viper bell"))) |
19078 | 4151 (setq viper-use-register nil) |
4152 (if (viper-end-with-a-newline-p text) (beginning-of-line)) | |
4153 (viper-set-destructive-command | |
4154 (list 'viper-Put-back val nil viper-use-register nil nil)) | |
4155 (set-marker (viper-mark-marker) (point) (current-buffer)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4156 (setq sv-point (point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4157 (viper-loop val (viper-yank text)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4158 (setq chars-inserted (abs (- (point) sv-point)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4159 lines-inserted (abs (count-lines (point) sv-point))) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4160 (if (or (> chars-inserted viper-change-notification-threshold) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4161 (> lines-inserted viper-change-notification-threshold)) |
64750
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
4162 (unless (viper-is-in-minibuffer) |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
4163 (message "Inserted %d character(s), %d line(s)" |
fbdb9482b6fc
2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64701
diff
changeset
|
4164 chars-inserted lines-inserted)))) |
18129 | 4165 ;; 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
|
4166 ;; newline; it leaves the cursor at the beginning when the text contains |
18129 | 4167 ;; a newline |
19078 | 4168 (if (viper-same-line (point) (mark)) |
4169 (or (= (point) (mark)) (viper-backward-char-carefully)) | |
18129 | 4170 (exchange-point-and-mark) |
4171 (if (bolp) | |
4172 (back-to-indentation))) | |
19078 | 4173 (viper-deactivate-mark)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4174 |
18129 | 4175 |
4176 ;; Copy region to kill-ring. | |
4177 ;; If BEG and END do not belong to the same buffer, copy empty region. | |
19078 | 4178 (defun viper-copy-region-as-kill (beg end) |
18129 | 4179 (condition-case nil |
4180 (copy-region-as-kill beg end) | |
4181 (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
|
4182 |
18129 | 4183 |
19078 | 4184 (defun viper-delete-char (arg) |
19462 | 4185 "Delete next character." |
18129 | 4186 (interactive "P") |
19462 | 4187 (let ((val (viper-p-val arg)) |
4188 end-del-pos) | |
19078 | 4189 (viper-set-destructive-command |
4190 (list 'viper-delete-char val nil nil nil nil)) | |
19462 | 4191 (if (and viper-ex-style-editing |
4192 (> val (viper-chars-in-region (point) (viper-line-pos 'end)))) | |
4193 (setq val (viper-chars-in-region (point) (viper-line-pos 'end)))) | |
19078 | 4194 (if (and viper-ex-style-motion (eolp)) |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
4195 (if (bolp) (error "Viper bell") (setq val 0))) ; not bol---simply back 1 ch |
19462 | 4196 (save-excursion |
4197 (viper-forward-char-carefully val) | |
4198 (setq end-del-pos (point))) | |
19078 | 4199 (if viper-use-register |
18129 | 4200 (progn |
19078 | 4201 (cond ((viper-valid-register viper-use-register '((Letter))) |
4202 (viper-append-to-register | |
19462 | 4203 (downcase viper-use-register) (point) end-del-pos)) |
19078 | 4204 ((viper-valid-register viper-use-register) |
18129 | 4205 (copy-to-register |
19462 | 4206 viper-use-register (point) end-del-pos nil)) |
19078 | 4207 (t (error viper-InvalidRegister viper-use-register))) |
4208 (setq viper-use-register nil))) | |
19462 | 4209 |
4210 (delete-char val t) | |
19078 | 4211 (if viper-ex-style-motion |
19462 | 4212 (if (and (eolp) (not (bolp))) (backward-char 1))) |
4213 )) | |
18129 | 4214 |
19078 | 4215 (defun viper-delete-backward-char (arg) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4216 "Delete previous character. On reaching beginning of line, stop and beep." |
18129 | 4217 (interactive "P") |
19462 | 4218 (let ((val (viper-p-val arg)) |
4219 end-del-pos) | |
19078 | 4220 (viper-set-destructive-command |
4221 (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
|
4222 (if (and |
19462 | 4223 viper-ex-style-editing |
4224 (> val (viper-chars-in-region (viper-line-pos 'start) (point)))) | |
4225 (setq val (viper-chars-in-region (viper-line-pos 'start) (point)))) | |
4226 (save-excursion | |
4227 (viper-backward-char-carefully val) | |
4228 (setq end-del-pos (point))) | |
19078 | 4229 (if viper-use-register |
18129 | 4230 (progn |
19078 | 4231 (cond ((viper-valid-register viper-use-register '(Letter)) |
4232 (viper-append-to-register | |
19462 | 4233 (downcase viper-use-register) end-del-pos (point))) |
19078 | 4234 ((viper-valid-register viper-use-register) |
18129 | 4235 (copy-to-register |
19462 | 4236 viper-use-register end-del-pos (point) nil)) |
19078 | 4237 (t (error viper-InvalidRegister viper-use-register))) |
4238 (setq viper-use-register nil))) | |
19462 | 4239 (if (and (bolp) viper-ex-style-editing) |
4240 (ding)) | |
4241 (delete-backward-char val t))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4242 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
4243 |
19078 | 4244 (defun viper-del-backward-char-in-insert () |
18129 | 4245 "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
|
4246 (interactive) |
19462 | 4247 (if (and viper-ex-style-editing (bolp)) |
18129 | 4248 (beep 1) |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
4249 ;; don't put on kill ring |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
4250 (delete-backward-char 1 nil))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4251 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
4252 |
19078 | 4253 (defun viper-del-backward-char-in-replace () |
18129 | 4254 "Delete one character in replace mode. |
19078 | 4255 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
|
4256 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
|
4257 to Vi. The variable `viper-ex-style-editing', if t, doesn't let the |
18129 | 4258 cursor move past the beginning of line." |
4259 (interactive) | |
19078 | 4260 (cond (viper-delete-backwards-in-replace |
18129 | 4261 (cond ((not (bolp)) |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
4262 ;; don't put on kill ring |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
4263 (delete-backward-char 1 nil)) |
19462 | 4264 (viper-ex-style-editing |
18129 | 4265 (beep 1)) |
4266 ((bobp) | |
4267 (beep 1)) | |
4268 (t | |
60168
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
4269 ;; don't put on kill ring |
d96e54250eea
* viper-cmd.el (viper-prefix-commands): make into a defconst.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
52401
diff
changeset
|
4270 (delete-backward-char 1 nil)))) |
19462 | 4271 (viper-ex-style-editing |
18129 | 4272 (if (bolp) |
4273 (beep 1) | |
4274 (backward-char 1))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4275 (t |
18129 | 4276 (backward-char 1)))) |
4277 | |
4278 | |
4279 | |
4280 ;; join lines. | |
4281 | |
19078 | 4282 (defun viper-join-lines (arg) |
18129 | 4283 "Join this line to next, if ARG is nil. Otherwise, join ARG lines." |
4284 (interactive "*P") | |
19078 | 4285 (let ((val (viper-P-val arg))) |
4286 (viper-set-destructive-command | |
4287 (list 'viper-join-lines val nil nil nil nil)) | |
4288 (viper-loop (if (null val) 1 (1- val)) | |
18129 | 4289 (end-of-line) |
4290 (if (not (eobp)) | |
4291 (progn | |
4292 (forward-line 1) | |
4293 (delete-region (point) (1- (point))) | |
18839 | 4294 (fixup-whitespace) |
4295 ;; fixup-whitespace sometimes does not leave space | |
4296 ;; between objects, so we insert it as in Vi | |
4297 (or (looking-at " ") | |
4298 (insert " ") | |
4299 (backward-char 1)) | |
19462 | 4300 ))))) |
18129 | 4301 |
4302 | |
4303 ;; Replace state | |
4304 | |
19078 | 4305 (defun viper-change (beg end) |
18129 | 4306 (if (markerp beg) (setq beg (marker-position beg))) |
4307 (if (markerp end) (setq end (marker-position end))) | |
4308 ;; beg is sometimes (mark t), which may be nil | |
4309 (or beg (setq beg end)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4310 |
19078 | 4311 (viper-set-complex-command-for-undo) |
4312 (if viper-use-register | |
18129 | 4313 (progn |
19078 | 4314 (copy-to-register viper-use-register beg end nil) |
4315 (setq viper-use-register nil))) | |
4316 (viper-set-replace-overlay beg end) | |
18129 | 4317 (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
|
4318 |
19078 | 4319 (if (= (viper-replace-start) (point-max)) |
18129 | 4320 (error "End of buffer")) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4321 |
19078 | 4322 (setq viper-last-replace-region |
4323 (buffer-substring (viper-replace-start) | |
4324 (viper-replace-end))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4325 |
18129 | 4326 ;; protect against error while inserting "@" and other disasters |
4327 ;; (e.g., read-only buff) | |
4328 (condition-case conds | |
19078 | 4329 (if (or viper-allow-multiline-replace-regions |
4330 (viper-same-line (viper-replace-start) | |
19203 | 4331 (viper-replace-end))) |
18129 | 4332 (progn |
4333 ;; tabs cause problems in replace, so untabify | |
19078 | 4334 (goto-char (viper-replace-end)) |
18129 | 4335 (insert-before-markers "@") ; put placeholder after the TAB |
19078 | 4336 (untabify (viper-replace-start) (point)) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4337 ;; del @, don't put on kill ring |
18129 | 4338 (delete-backward-char 1) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4339 |
19078 | 4340 (viper-set-replace-overlay-glyphs |
4341 viper-replace-region-start-delimiter | |
4342 viper-replace-region-end-delimiter) | |
18129 | 4343 ;; 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
|
4344 ;; has to be shifted because of insert. We can't simply insert |
18129 | 4345 ;; "$" before-markers because then overlay-start will shift the |
4346 ;; 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
|
4347 ;; character. This fixes the bug with `s' and `cl' commands. |
19078 | 4348 (viper-move-replace-overlay (viper-replace-start) (point)) |
4349 (goto-char (viper-replace-start)) | |
4350 (viper-change-state-to-replace t)) | |
4351 (kill-region (viper-replace-start) | |
4352 (viper-replace-end)) | |
4353 (viper-hide-replace-overlay) | |
4354 (viper-change-state-to-insert)) | |
18129 | 4355 (error ;; make sure that the overlay doesn't stay. |
4356 ;; go back to the original point | |
19078 | 4357 (goto-char (viper-replace-start)) |
4358 (viper-hide-replace-overlay) | |
4359 (viper-message-conditions conds)))) | |
4360 | |
4361 | |
4362 (defun viper-change-subr (beg end) | |
18129 | 4363 ;; beg is sometimes (mark t), which may be nil |
4364 (or beg (setq beg end)) | |
19078 | 4365 (if viper-use-register |
18129 | 4366 (progn |
19078 | 4367 (copy-to-register viper-use-register beg end nil) |
4368 (setq viper-use-register nil))) | |
18129 | 4369 (kill-region beg end) |
19078 | 4370 (setq this-command 'viper-change) |
4371 (viper-yank-last-insertion)) | |
4372 | |
4373 (defun viper-toggle-case (arg) | |
18129 | 4374 "Toggle character case." |
4375 (interactive "P") | |
19078 | 4376 (let ((val (viper-p-val arg)) (c)) |
4377 (viper-set-destructive-command | |
4378 (list 'viper-toggle-case val nil nil nil nil)) | |
18129 | 4379 (while (> val 0) |
4380 (setq c (following-char)) | |
4381 (delete-char 1 nil) | |
4382 (if (eq c (upcase c)) | |
4383 (insert-char (downcase c) 1) | |
4384 (insert-char (upcase c) 1)) | |
4385 (if (eolp) (backward-char 1)) | |
4386 (setq val (1- val))))) | |
4387 | |
4388 | |
4389 ;; query replace | |
4390 | |
19078 | 4391 (defun viper-query-replace () |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4392 "Query replace. |
18129 | 4393 If a null string is suplied as the string to be replaced, |
4394 the query replace mode will toggle between string replace | |
4395 and regexp replace." | |
4396 (interactive) | |
4397 (let (str) | |
19078 | 4398 (setq str (viper-read-string-with-history |
4399 (if viper-re-query-replace "Query replace regexp: " | |
18129 | 4400 "Query replace: ") |
4401 nil ; no initial | |
19078 | 4402 'viper-replace1-history |
4403 (car viper-replace1-history) ; default | |
18129 | 4404 )) |
4405 (if (string= str "") | |
4406 (progn | |
19078 | 4407 (setq viper-re-query-replace (not viper-re-query-replace)) |
18129 | 4408 (message "Query replace mode changed to %s" |
19078 | 4409 (if viper-re-query-replace "regexp replace" |
18129 | 4410 "string replace"))) |
19078 | 4411 (if viper-re-query-replace |
18129 | 4412 (query-replace-regexp |
4413 str | |
19078 | 4414 (viper-read-string-with-history |
18129 | 4415 (format "Query replace regexp `%s' with: " str) |
4416 nil ; no initial | |
19078 | 4417 'viper-replace1-history |
4418 (car viper-replace1-history) ; default | |
18129 | 4419 )) |
4420 (query-replace | |
4421 str | |
19078 | 4422 (viper-read-string-with-history |
18129 | 4423 (format "Query replace `%s' with: " str) |
4424 nil ; no initial | |
19078 | 4425 'viper-replace1-history |
4426 (car viper-replace1-history) ; default | |
18129 | 4427 )))))) |
4428 | |
4429 | |
4430 ;; marking | |
4431 | |
19078 | 4432 (defun viper-mark-beginning-of-buffer () |
18129 | 4433 "Mark beginning of buffer." |
4434 (interactive) | |
4435 (push-mark (point)) | |
4436 (goto-char (point-min)) | |
4437 (exchange-point-and-mark) | |
4438 (message "Mark set at the beginning of buffer")) | |
4439 | |
19078 | 4440 (defun viper-mark-end-of-buffer () |
18129 | 4441 "Mark end of buffer." |
4442 (interactive) | |
4443 (push-mark (point)) | |
4444 (goto-char (point-max)) | |
4445 (exchange-point-and-mark) | |
4446 (message "Mark set at the end of buffer")) | |
4447 | |
19078 | 4448 (defun viper-mark-point () |
18129 | 4449 "Set mark at point of buffer." |
4450 (interactive) | |
4451 (let ((char (read-char))) | |
4452 (cond ((and (<= ?a char) (<= char ?z)) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4453 (point-to-register (viper-int-to-char (1+ (- char ?a))))) |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4454 ((viper= char ?<) (viper-mark-beginning-of-buffer)) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4455 ((viper= char ?>) (viper-mark-end-of-buffer)) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4456 ((viper= char ?.) (viper-set-mark-if-necessary)) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4457 ((viper= char ?,) (viper-cycle-through-mark-ring)) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4458 ((viper= char ?^) (push-mark viper-saved-mark t t)) |
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4459 ((viper= char ?D) (mark-defun)) |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
4460 (t (error "Viper bell")) |
18129 | 4461 ))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4462 |
18129 | 4463 ;; Algorithm: If first invocation of this command save mark on ring, goto |
4464 ;; mark, M0, and pop the most recent elt from the mark ring into mark, | |
4465 ;; making it into the new mark, M1. | |
4466 ;; Push this mark back and set mark to the original point position, p1. | |
4467 ;; So, if you hit '' or `` then you can return to p1. | |
4468 ;; | |
4469 ;; 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
|
4470 ;; jump there. This forgets the position, p1, and puts M1 back into mark. |
18129 | 4471 ;; Then we save the current pos, which is M0, jump to M1 and pop M2 from |
4472 ;; the ring into mark. Push M2 back on the ring and set mark to M0. | |
4473 ;; etc. | |
19078 | 4474 (defun viper-cycle-through-mark-ring () |
18129 | 4475 "Visit previous locations on the mark ring. |
4476 One can use `` and '' to temporarily jump 1 step back." | |
4477 (let* ((sv-pt (point))) | |
4478 ;; if repeated `m,' command, pop the previously saved mark. | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4479 ;; 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
|
4480 ;; user types `` or '' and is discarded |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4481 ;; from the mark ring by the next `m,' command. |
18129 | 4482 ;; In any case, go to the previous or previously saved mark. |
4483 ;; 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
|
4484 ;; point to be the mark. Current pt as mark is discarded by the next |
18129 | 4485 ;; m, command. |
19078 | 4486 (if (eq last-command 'viper-cycle-through-mark-ring) |
18129 | 4487 () |
4488 ;; save current mark if the first iteration | |
19078 | 4489 (setq mark-ring (delete (viper-mark-marker) mark-ring)) |
18129 | 4490 (if (mark t) |
4491 (push-mark (mark t) t)) ) | |
4492 (pop-mark) | |
4493 (set-mark-command 1) | |
4494 ;; don't duplicate mark on the ring | |
19078 | 4495 (setq mark-ring (delete (viper-mark-marker) mark-ring)) |
18129 | 4496 (push-mark sv-pt t) |
19078 | 4497 (viper-deactivate-mark) |
4498 (setq this-command 'viper-cycle-through-mark-ring) | |
18129 | 4499 )) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4500 |
18129 | 4501 |
19078 | 4502 (defun viper-goto-mark (arg) |
18129 | 4503 "Go to mark." |
4504 (interactive "P") | |
4505 (let ((char (read-char)) | |
19078 | 4506 (com (viper-getcom arg))) |
4507 (viper-goto-mark-subr char com nil))) | |
4508 | |
4509 (defun viper-goto-mark-and-skip-white (arg) | |
18129 | 4510 "Go to mark and skip to first non-white character on line." |
4511 (interactive "P") | |
4512 (let ((char (read-char)) | |
19078 | 4513 (com (viper-getCom arg))) |
4514 (viper-goto-mark-subr char com t))) | |
4515 | |
4516 (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
|
4517 (if (eobp) |
18129 | 4518 (if (bobp) |
4519 (error "Empty buffer") | |
4520 (backward-char 1))) | |
19078 | 4521 (cond ((viper-valid-register char '(letter)) |
18129 | 4522 (let* ((buff (current-buffer)) |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4523 (reg (viper-int-to-char (1+ (- char ?a)))) |
18129 | 4524 (text-marker (get-register reg))) |
27899
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4525 ;; If marker points to file that had markers set (and those markers |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4526 ;; were saved (as e.g., in session.el), then restore those markers |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4527 (if (and (consp text-marker) |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4528 (eq (car text-marker) 'file-query) |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4529 (or (find-buffer-visiting (nth 1 text-marker)) |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4530 (y-or-n-p (format "Visit file %s again? " |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4531 (nth 1 text-marker))))) |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4532 (save-excursion |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4533 (find-file (nth 1 text-marker)) |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4534 (when (and (<= (nth 2 text-marker) (point-max)) |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4535 (<= (point-min) (nth 2 text-marker))) |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4536 (setq text-marker (copy-marker (nth 2 text-marker))) |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26743
diff
changeset
|
4537 (set-register reg text-marker)))) |
19078 | 4538 (if com (viper-move-marker-locally 'viper-com-point (point))) |
4539 (if (not (viper-valid-marker text-marker)) | |
4540 (error viper-EmptyTextmarker char)) | |
4541 (if (and (viper-same-line (point) viper-last-jump) | |
4542 (= (point) viper-last-jump-ignore)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4543 (push-mark viper-last-jump t) |
18129 | 4544 (push-mark nil t)) ; no msg |
19078 | 4545 (viper-register-to-point reg) |
4546 (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
|
4547 (cond (skip-white |
18129 | 4548 (back-to-indentation) |
19078 | 4549 (setq viper-last-jump-ignore (point)))) |
18129 | 4550 (if com |
4551 (if (equal buff (current-buffer)) | |
19078 | 4552 (viper-execute-com (if skip-white |
4553 'viper-goto-mark-and-skip-white | |
4554 'viper-goto-mark) | |
18129 | 4555 nil com) |
4556 (switch-to-buffer buff) | |
19078 | 4557 (goto-char viper-com-point) |
4558 (viper-change-state-to-vi) | |
82467
ff85cbd27ee2
2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
82140
diff
changeset
|
4559 (error "Viper bell"))))) |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4560 ((and (not skip-white) (viper= char ?`)) |
19078 | 4561 (if com (viper-move-marker-locally 'viper-com-point (point))) |
4562 (if (and (viper-same-line (point) viper-last-jump) | |
4563 (= (point) viper-last-jump-ignore)) | |
4564 (goto-char viper-last-jump)) | |
18129 | 4565 (if (null (mark t)) (error "Mark is not set in this buffer")) |
4566 (if (= (point) (mark t)) (pop-mark)) | |
4567 (exchange-point-and-mark) | |
19078 | 4568 (setq viper-last-jump (point-marker) |
4569 viper-last-jump-ignore 0) | |
4570 (if com (viper-execute-com 'viper-goto-mark nil com))) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4571 ((and skip-white (viper= char ?')) |
19078 | 4572 (if com (viper-move-marker-locally 'viper-com-point (point))) |
4573 (if (and (viper-same-line (point) viper-last-jump) | |
4574 (= (point) viper-last-jump-ignore)) | |
4575 (goto-char viper-last-jump)) | |
18129 | 4576 (if (= (point) (mark t)) (pop-mark)) |
4577 (exchange-point-and-mark) | |
19078 | 4578 (setq viper-last-jump (point)) |
18129 | 4579 (back-to-indentation) |
19078 | 4580 (setq viper-last-jump-ignore (point)) |
4581 (if com (viper-execute-com 'viper-goto-mark-and-skip-white nil com))) | |
4582 (t (error viper-InvalidTextmarker char)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4583 |
19078 | 4584 (defun viper-insert-tab () |
18129 | 4585 (interactive) |
4586 (insert-tab)) | |
4587 | |
19078 | 4588 (defun viper-exchange-point-and-mark () |
18129 | 4589 (interactive) |
4590 (exchange-point-and-mark) | |
4591 (back-to-indentation)) | |
4592 | |
4593 ;; Input Mode Indentation | |
4594 | |
4595 ;; Returns t, if the string before point matches the regexp STR. | |
19078 | 4596 (defsubst viper-looking-back (str) |
18129 | 4597 (and (save-excursion (re-search-backward str nil t)) |
4598 (= (point) (match-end 0)))) | |
4599 | |
4600 | |
19078 | 4601 (defun viper-forward-indent () |
18129 | 4602 "Indent forward -- `C-t' in Vi." |
4603 (interactive) | |
19078 | 4604 (setq viper-cted t) |
4605 (indent-to (+ (current-column) viper-shift-width))) | |
4606 | |
4607 (defun viper-backward-indent () | |
18129 | 4608 "Backtab, C-d in VI" |
4609 (interactive) | |
19078 | 4610 (if viper-cted |
18129 | 4611 (let ((p (point)) (c (current-column)) bol (indent t)) |
19078 | 4612 (if (viper-looking-back "[0^]") |
18129 | 4613 (progn |
4614 (if (eq ?^ (preceding-char)) | |
19078 | 4615 (setq viper-preserve-indent t)) |
18129 | 4616 (delete-backward-char 1) |
4617 (setq p (point)) | |
4618 (setq indent nil))) | |
4619 (save-excursion | |
4620 (beginning-of-line) | |
4621 (setq bol (point))) | |
4622 (if (re-search-backward "[^ \t]" bol 1) (forward-char)) | |
4623 (delete-region (point) p) | |
4624 (if indent | |
19078 | 4625 (indent-to (- c viper-shift-width))) |
4626 (if (or (bolp) (viper-looking-back "[^ \t]")) | |
4627 (setq viper-cted nil))))) | |
4628 | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4629 ;; do smart indent |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4630 (defun viper-indent-line (col) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4631 (if viper-auto-indent |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4632 (progn |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4633 (setq viper-cted t) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4634 (if (and viper-electric-mode |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4635 (not (memq major-mode '(fundamental-mode |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4636 text-mode |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4637 paragraph-indent-text-mode)))) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4638 (indent-according-to-mode) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4639 (indent-to col))))) |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4640 |
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4641 |
19078 | 4642 (defun viper-autoindent () |
18129 | 4643 "Auto Indentation, Vi-style." |
4644 (interactive) | |
4645 (let ((col (current-indentation))) | |
4646 (if abbrev-mode (expand-abbrev)) | |
19078 | 4647 (if viper-preserve-indent |
4648 (setq viper-preserve-indent nil) | |
4649 (setq viper-current-indent col)) | |
18129 | 4650 ;; don't leave whitespace lines around |
4651 (if (memq last-command | |
19078 | 4652 '(viper-autoindent |
4653 viper-open-line viper-Open-line | |
4654 viper-replace-state-exit-cmd)) | |
18129 | 4655 (indent-to-left-margin)) |
4656 ;; use \n instead of newline, or else <Return> will move the insert point | |
4657 ;;(newline 1) | |
4658 (insert "\n") | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4659 (viper-indent-line viper-current-indent) |
18129 | 4660 )) |
4661 | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4662 |
18129 | 4663 ;; Viewing registers |
4664 | |
19078 | 4665 (defun viper-ket-function (arg) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4666 "Function called by \], the ket. View registers and call \]\]." |
18129 | 4667 (interactive "P") |
4668 (let ((reg (read-char))) | |
19078 | 4669 (cond ((viper-valid-register reg '(letter Letter)) |
18129 | 4670 (view-register (downcase reg))) |
19078 | 4671 ((viper-valid-register reg '(digit)) |
18129 | 4672 (let ((text (current-kill (- reg ?1) 'do-not-rotate))) |
20003 | 4673 (with-output-to-temp-buffer " *viper-info*" |
4674 (princ (format "Register %c contains the string:\n" reg)) | |
4675 (princ text)) | |
4676 )) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4677 ((viper= ?\] reg) |
19078 | 4678 (viper-next-heading arg)) |
18129 | 4679 (t (error |
19078 | 4680 viper-InvalidRegister reg))))) |
4681 | |
4682 (defun viper-brac-function (arg) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4683 "Function called by \[, the brac. View textmarkers and call \[\[" |
18129 | 4684 (interactive "P") |
4685 (let ((reg (read-char))) | |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4686 (cond ((viper= ?\[ reg) |
19078 | 4687 (viper-prev-heading arg)) |
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29412
diff
changeset
|
4688 ((viper= ?\] reg) |
19078 | 4689 (viper-heading-end arg)) |
4690 ((viper-valid-register reg '(letter)) | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4691 (let* ((val (get-register (viper-int-to-char (1+ (- reg ?a))))) |
20003 | 4692 (buf (if (not (markerp val)) |
19078 | 4693 (error viper-EmptyTextmarker reg) |
18129 | 4694 (marker-buffer val))) |
4695 (pos (marker-position val)) | |
4696 line-no text (s pos) (e pos)) | |
20003 | 4697 (with-output-to-temp-buffer " *viper-info*" |
18129 | 4698 (if (and buf pos) |
4699 (progn | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4700 (save-excursion |
18129 | 4701 (set-buffer buf) |
4702 (setq line-no (1+ (count-lines (point-min) val))) | |
4703 (goto-char pos) | |
4704 (beginning-of-line) | |
4705 (if (re-search-backward "[^ \t]" nil t) | |
4706 (progn | |
4707 (beginning-of-line) | |
4708 (setq s (point)))) | |
4709 (goto-char pos) | |
4710 (forward-line 1) | |
4711 (if (re-search-forward "[^ \t]" nil t) | |
4712 (progn | |
4713 (end-of-line) | |
4714 (setq e (point)))) | |
4715 (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
|
4716 (setq text (format "%s<%c>%s" |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4717 (substring text 0 (- pos s)) |
18129 | 4718 reg (substring text (- pos s))))) |
20003 | 4719 (princ |
18129 | 4720 (format |
4721 "Textmarker `%c' is in buffer `%s' at line %d.\n" | |
4722 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
|
4723 (princ (format "Here is some text around %c:\n\n %s" |
18129 | 4724 reg text))) |
20003 | 4725 (princ (format viper-EmptyTextmarker reg)))) |
4726 )) | |
19078 | 4727 (t (error viper-InvalidTextmarker reg))))) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4728 |
18129 | 4729 |
4730 | |
19078 | 4731 (defun viper-delete-backward-word (arg) |
18129 | 4732 "Delete previous word." |
4733 (interactive "p") | |
4734 (save-excursion | |
4735 (push-mark nil t) | |
4736 (backward-word arg) | |
4737 (delete-region (point) (mark t)) | |
4738 (pop-mark))) | |
4739 | |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4740 |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4741 |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4742 ;; Get viper standard value of SYMBOL. If symbol is customized, get its |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4743 ;; standard value. Otherwise, get the value saved in the alist STORAGE. If |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45738
diff
changeset
|
4744 ;; STORAGE is nil, use viper-saved-user-settings. |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4745 (defun viper-standard-value (symbol &optional storage) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4746 (or (eval (car (get symbol 'customized-value))) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4747 (eval (car (get symbol 'saved-value))) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4748 (nth 1 (assoc symbol (or storage viper-saved-user-settings))))) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4749 |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
4750 |
18129 | 4751 |
18839 | 4752 (defun viper-set-expert-level (&optional dont-change-unless) |
18129 | 4753 "Sets the expert level for a Viper user. |
4754 Can be called interactively to change (temporarily or permanently) the | |
4755 current expert level. | |
4756 | |
18289 | 4757 The optional argument DONT-CHANGE-UNLESS, if not nil, says that |
18129 | 4758 the level should not be changed, unless its current value is |
4759 meaningless (i.e., not one of 1,2,3,4,5). | |
4760 | |
4761 User level determines the setting of Viper variables that are most | |
4762 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
|
4763 |
18129 | 4764 (interactive) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4765 |
18839 | 4766 (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
|
4767 |
18129 | 4768 (save-window-excursion |
4769 (delete-other-windows) | |
18839 | 4770 ;; if 0 < viper-expert-level < viper-max-expert-level |
18129 | 4771 ;; & dont-change-unless = t -- use it; else ask |
19078 | 4772 (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
|
4773 |
19078 | 4774 (setq viper-always t |
4775 viper-ex-style-motion t | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4776 viper-ex-style-editing t |
19078 | 4777 viper-want-ctl-h-help nil) |
18129 | 4778 |
18839 | 4779 (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
|
4780 (global-set-key ; in emacs-state |
19078 | 4781 viper-toggle-key |
4782 (if (viper-window-display-p) 'viper-iconify 'suspend-emacs)) | |
4783 (setq viper-no-multiple-ESC t | |
4784 viper-re-search t | |
4785 viper-vi-style-in-minibuffer t | |
93773
d7554c14325c
2008-04-06 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
93615
diff
changeset
|
4786 viper-search-wrap-around t |
19078 | 4787 viper-electric-mode nil |
4788 viper-want-emacs-keys-in-vi nil | |
4789 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
|
4790 |
18839 | 4791 ((and (> viper-expert-level 1) (< viper-expert-level 5)) |
18129 | 4792 ;; intermediate to guru |
19078 | 4793 (setq viper-no-multiple-ESC (if (viper-window-display-p) |
4794 t 'twice) | |
4795 viper-electric-mode t | |
4796 viper-want-emacs-keys-in-vi t | |
4797 viper-want-emacs-keys-in-insert (> viper-expert-level 2)) | |
4798 | |
4799 (if (eq viper-expert-level 4) ; respect user's ex-style motion | |
4800 ; and viper-no-multiple-ESC | |
18129 | 4801 (progn |
18839 | 4802 (setq-default |
19462 | 4803 viper-ex-style-editing |
4804 (viper-standard-value 'viper-ex-style-editing) | |
19078 | 4805 viper-ex-style-motion |
4806 (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
|
4807 (setq viper-ex-style-motion |
19078 | 4808 (viper-standard-value 'viper-ex-style-motion) |
19462 | 4809 viper-ex-style-editing |
4810 (viper-standard-value 'viper-ex-style-editing) | |
19078 | 4811 viper-re-search |
4812 (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
|
4813 viper-no-multiple-ESC |
19078 | 4814 (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
|
4815 |
18129 | 4816 ;; A wizard!! |
4817 ;; Ideally, if 5 is selected, a buffer should pop up to let the | |
4818 ;; user toggle the values of variables. | |
19462 | 4819 (t (setq-default viper-ex-style-editing |
4820 (viper-standard-value 'viper-ex-style-editing) | |
19078 | 4821 viper-ex-style-motion |
4822 (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
|
4823 (setq viper-want-ctl-h-help |
19078 | 4824 (viper-standard-value 'viper-want-ctl-h-help) |
18289 | 4825 viper-always |
18839 | 4826 (viper-standard-value 'viper-always) |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4827 viper-no-multiple-ESC |
19078 | 4828 (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
|
4829 viper-ex-style-motion |
19078 | 4830 (viper-standard-value 'viper-ex-style-motion) |
19462 | 4831 viper-ex-style-editing |
4832 (viper-standard-value 'viper-ex-style-editing) | |
19078 | 4833 viper-re-search |
4834 (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
|
4835 viper-electric-mode |
19078 | 4836 (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
|
4837 viper-want-emacs-keys-in-vi |
19078 | 4838 (viper-standard-value 'viper-want-emacs-keys-in-vi) |
4839 viper-want-emacs-keys-in-insert | |
4840 (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
|
4841 |
19078 | 4842 (viper-set-mode-vars-for viper-current-state) |
18289 | 4843 (if (or viper-always |
18839 | 4844 (and (> viper-expert-level 0) (> 5 viper-expert-level))) |
19078 | 4845 (viper-set-hooks))) |
18129 | 4846 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26429
diff
changeset
|
4847 |
18129 | 4848 ;; Ask user expert level. |
19078 | 4849 (defun viper-ask-level (dont-change-unless) |
4850 (let ((ask-buffer " *viper-ask-level*") | |
18129 | 4851 level-changed repeated) |
4852 (save-window-excursion | |
4853 (switch-to-buffer ask-buffer) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4854 |
18839 | 4855 (while (or (> viper-expert-level viper-max-expert-level) |
4856 (< viper-expert-level 1) | |
18129 | 4857 (null dont-change-unless)) |
4858 (erase-buffer) | |
4859 (if repeated | |
4860 (progn | |
4861 (message "Invalid user level") | |
4862 (beep 1)) | |
4863 (setq repeated t)) | |
4864 (setq dont-change-unless t | |
4865 level-changed t) | |
4866 (insert " | |
4867 Please specify your level of familiarity with the venomous VI PERil | |
65856
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
4868 \(and the VI Plan for Emacs Rescue). |
18839 | 4869 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
|
4870 |
18129 | 4871 1 -- BEGINNER: Almost all Emacs features are suppressed. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4872 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
|
4873 command history in the minibuffer are thrown in as a bonus. |
19078 | 4874 To use Emacs productively, you must reach level 3 or higher. |
18129 | 4875 2 -- MASTER: C-c now has its standard Emacs meaning in Vi command state, |
19078 | 4876 so most Emacs commands can be used when Viper is in Vi state. |
4877 Good progress---you are well on the way to level 3! | |
45594
1282cafdee89
(viper-smart-suffix-list, viper-ask-level): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
4878 3 -- GRAND MASTER: Like 2, but most Emacs commands are available also |
19078 | 4879 in Viper's insert state. |
4880 4 -- GURU: Like 3, but user settings are respected for viper-no-multiple-ESC, | |
19462 | 4881 viper-ex-style-motion, viper-ex-style-editing, and |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
4882 viper-re-search variables. Adjust these settings to your taste. |
18289 | 4883 5 -- WIZARD: Like 4, but user settings are also respected for viper-always, |
19078 | 4884 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
|
4885 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
|
4886 |
18129 | 4887 Please, specify your level now: ") |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4888 |
19078 | 4889 (setq viper-expert-level (- (viper-read-char-exclusive) ?0)) |
18129 | 4890 ) ; end while |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4891 |
18129 | 4892 ;; tell the user if level was changed |
4893 (and level-changed | |
4894 (progn | |
4895 (insert | |
4896 (format "\n\n\n\n\n\t\tYou have selected user level %d" | |
18839 | 4897 viper-expert-level)) |
18129 | 4898 (if (y-or-n-p "Do you wish to make this change permanent? ") |
18839 | 4899 ;; save the setting for viper-expert-level |
19078 | 4900 (viper-save-setting |
18839 | 4901 'viper-expert-level |
4902 (format "Saving user level %d ..." viper-expert-level) | |
19078 | 4903 viper-custom-file-name)) |
18129 | 4904 )) |
4905 (bury-buffer) ; remove ask-buffer from screen | |
4906 (message "") | |
4907 ))) | |
4908 | |
4909 | |
19078 | 4910 (defun viper-nil () |
18129 | 4911 (interactive) |
4912 (beep 1)) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4913 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4914 |
18129 | 4915 ;; if ENFORCE-BUFFER is not nil, error if CHAR is a marker in another buffer |
19078 | 4916 (defun viper-register-to-point (char &optional enforce-buffer) |
18129 | 4917 "Like jump-to-register, but switches to another buffer in another window." |
4918 (interactive "cViper register to point: ") | |
4919 (let ((val (get-register char))) | |
4920 (cond | |
4921 ((and (fboundp 'frame-configuration-p) | |
4922 (frame-configuration-p val)) | |
4923 (set-frame-configuration val)) | |
4924 ((window-configuration-p val) | |
4925 (set-window-configuration val)) | |
19078 | 4926 ((viper-valid-marker val) |
18129 | 4927 (if (and enforce-buffer |
4928 (not (equal (current-buffer) (marker-buffer val)))) | |
19078 | 4929 (error (concat viper-EmptyTextmarker " in this buffer") |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4930 (viper-int-to-char (1- (+ char ?a))))) |
18129 | 4931 (pop-to-buffer (marker-buffer val)) |
4932 (goto-char val)) | |
4933 ((and (consp val) (eq (car val) 'file)) | |
4934 (find-file (cdr val))) | |
4935 (t | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4936 (error viper-EmptyTextmarker (viper-int-to-char (1- (+ char ?a)))))))) |
19078 | 4937 |
4938 | |
4939 (defun viper-save-kill-buffer () | |
38514
10482dd382e7
* viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
4940 "Save then kill current buffer." |
18129 | 4941 (interactive) |
18839 | 4942 (if (< viper-expert-level 2) |
18129 | 4943 (save-buffers-kill-emacs) |
4944 (save-buffer) | |
4945 (kill-buffer (current-buffer)))) | |
4946 | |
4947 | |
4948 | |
4949 ;;; Bug Report | |
4950 | |
19078 | 4951 (defun viper-submit-report () |
18129 | 4952 "Submit bug report on Viper." |
4953 (interactive) | |
4954 (let ((reporter-prompt-for-summary-p t) | |
19078 | 4955 (viper-device-type (viper-device-type)) |
18129 | 4956 color-display-p frame-parameters |
4957 minibuffer-emacs-face minibuffer-vi-face minibuffer-insert-face | |
4958 varlist salutation window-config) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4959 |
18129 | 4960 ;; If mode info is needed, add variable to `let' and then set it below, |
4961 ;; 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
|
4962 (setq color-display-p (if (viper-window-display-p) |
19078 | 4963 (viper-color-display-p) |
18129 | 4964 'non-x) |
19078 | 4965 minibuffer-vi-face (if (viper-has-face-support-p) |
4966 (viper-get-face viper-minibuffer-vi-face) | |
18129 | 4967 'non-x) |
19078 | 4968 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
|
4969 (viper-get-face |
19078 | 4970 viper-minibuffer-insert-face) |
18129 | 4971 'non-x) |
19078 | 4972 minibuffer-emacs-face (if (viper-has-face-support-p) |
4973 (viper-get-face | |
4974 viper-minibuffer-emacs-face) | |
18129 | 4975 'non-x) |
4976 frame-parameters (if (fboundp 'frame-parameters) | |
4977 (frame-parameters (selected-frame)))) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4978 |
19078 | 4979 (setq varlist (list 'viper-vi-minibuffer-minor-mode |
4980 'viper-insert-minibuffer-minor-mode | |
4981 'viper-vi-intercept-minor-mode | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4982 'viper-vi-local-user-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4983 'viper-vi-kbd-minor-mode |
19078 | 4984 'viper-vi-global-user-minor-mode |
4985 '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
|
4986 'viper-vi-diehard-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4987 'viper-vi-basic-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4988 'viper-replace-minor-mode |
19078 | 4989 'viper-insert-intercept-minor-mode |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4990 'viper-insert-local-user-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4991 'viper-insert-kbd-minor-mode |
19078 | 4992 'viper-insert-global-user-minor-mode |
4993 '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
|
4994 'viper-insert-diehard-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4995 'viper-insert-basic-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4996 'viper-emacs-intercept-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4997 'viper-emacs-local-user-minor-mode |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
4998 'viper-emacs-kbd-minor-mode |
19078 | 4999 'viper-emacs-global-user-minor-mode |
5000 'viper-emacs-state-modifier-minor-mode | |
5001 'viper-automatic-iso-accents | |
19462 | 5002 'viper-special-input-method |
19078 | 5003 'viper-want-emacs-keys-in-insert |
5004 'viper-want-emacs-keys-in-vi | |
5005 'viper-keep-point-on-undo | |
5006 'viper-no-multiple-ESC | |
5007 'viper-electric-mode | |
5008 'viper-ESC-key | |
5009 'viper-want-ctl-h-help | |
19462 | 5010 'viper-ex-style-editing |
19078 | 5011 'viper-delete-backwards-in-replace |
5012 'viper-vi-style-in-minibuffer | |
5013 'viper-vi-state-hook | |
5014 'viper-insert-state-hook | |
5015 'viper-replace-state-hook | |
5016 'viper-emacs-state-hook | |
18129 | 5017 'ex-cycle-other-window |
5018 'ex-cycle-through-non-files | |
18839 | 5019 'viper-expert-level |
18129 | 5020 'major-mode |
19078 | 5021 'viper-device-type |
18129 | 5022 'color-display-p |
5023 'frame-parameters | |
5024 'minibuffer-vi-face | |
5025 'minibuffer-insert-face | |
5026 'minibuffer-emacs-face | |
5027 )) | |
5028 (setq salutation " | |
5029 Congratulations! You may have unearthed a bug in Viper! | |
5030 Please mail a concise, accurate summary of the problem to the address above. | |
5031 | |
5032 -------------------------------------------------------------------") | |
5033 (setq window-config (current-window-configuration)) | |
19078 | 5034 (with-output-to-temp-buffer " *viper-info*" |
5035 (switch-to-buffer " *viper-info*") | |
18129 | 5036 (delete-other-windows) |
5037 (princ " | |
5038 PLEASE FOLLOW THESE PROCEDURES | |
5039 ------------------------------ | |
5040 | |
5041 Before reporting a bug, please verify that it is related to Viper, and is | |
5042 not cause by other packages you are using. | |
5043 | |
5044 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
|
5045 problem. These warnings are normal and unavoidable. |
18129 | 5046 |
5047 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
|
5048 those advertised in the manual. Such `customization' is likely to crash |
18129 | 5049 Viper, as it would any other improperly customized Emacs package. |
5050 | |
5051 If you are reporting an error message received while executing one of the | |
5052 Viper commands, type: | |
5053 | |
5054 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
|
5055 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
5056 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
|
5057 back trace of the execution that leads to the error. Please include this |
18129 | 5058 trace in your bug report. |
5059 | |
5060 If you believe that one of Viper's commands goes into an infinite loop | |
5061 \(e.g., Emacs freezes\), type: | |
5062 | |
5063 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
|
5064 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
23313
diff
changeset
|
5065 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
|
5066 the current command. Include the resulting back trace in the bug report. |
18129 | 5067 |
5068 Mail anyway (y or n)? ") | |
5069 (if (y-or-n-p "Mail anyway? ") | |
5070 () | |
5071 (set-window-configuration window-config) | |
5072 (error "Bug report aborted"))) | |
5073 | |
5074 (require 'reporter) | |
5075 (set-window-configuration window-config) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
5076 |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
42288
diff
changeset
|
5077 (reporter-submit-bug-report "kifer@cs.stonybrook.edu" |
19078 | 5078 (viper-version) |
18129 | 5079 varlist |
5080 nil 'delete-other-windows | |
5081 salutation) | |
5082 )) | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
5083 |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26263
diff
changeset
|
5084 |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45738
diff
changeset
|
5085 |
18129 | 5086 |
65856
d64aeb0dc54e
2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
65680
diff
changeset
|
5087 ;; arch-tag: 739a6450-5fda-44d0-88b0-325053d888c2 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33842
diff
changeset
|
5088 ;;; viper-cmd.el ends here |