Mercurial > emacs
annotate lisp/emulation/vip.el @ 101169:39077981fbed
*** empty log message ***
author | Martin Rudalics <rudalics@gmx.at> |
---|---|
date | Wed, 14 Jan 2009 10:14:40 +0000 |
parents | ad9d2270860e |
children | 328150f0cf76 |
rev | line source |
---|---|
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1 ;;; vip.el --- a VI Package for GNU Emacs |
11 | 2 |
74466 | 3 ;; Copyright (C) 1986, 1987, 1988, 1992, 1993, 1998, 2001, 2002, 2003, |
100908 | 4 ;; 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
21986 | 5 |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
6 ;; Author: Masahiko Sato <ms@sail.stanford.edu> |
812
485e82a8acb5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
773
diff
changeset
|
7 ;; Keywords: emulations |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
8 |
14169 | 9 ;; This file is part of GNU Emacs. |
10 | |
94658
eb7b2376cae5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
14169 | 12 ;; 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:
93975
diff
changeset
|
13 ;; 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:
93975
diff
changeset
|
14 ;; (at your option) any later version. |
14169 | 15 |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; 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:
93975
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
14169 | 23 |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
24 ;;; Commentary: |
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
25 |
2319
d98c49df2acd
Added or corrected Commentary section
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1821
diff
changeset
|
26 ;; A full-featured vi(1) emulator. |
d98c49df2acd
Added or corrected Commentary section
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1821
diff
changeset
|
27 ;; |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
28 ;; In Japan, the author's address is: masahiko@sato.riec.tohoku.junet |
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
29 ;; |
11 | 30 ;; Send suggestions and bug reports to one of the above addresses. |
31 ;; When you report a bug, be sure to include the version number of VIP and | |
32 ;; Emacs you are using. | |
33 | |
34 ;; Execute info command by typing "M-x info" to get information on VIP. | |
35 | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
36 ;;; Code: |
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
37 |
21628 | 38 (defgroup vip nil |
39 "A VI Package for GNU Emacs." | |
40 :prefix "vip-" | |
41 :group 'emulations) | |
42 | |
11 | 43 ;; external variables |
44 | |
45 (defvar vip-emacs-local-map nil | |
73742
7c812bf3912c
(vip-emacs-local-map, vip-change-mode-to-emacs): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
68648
diff
changeset
|
46 "Local map used in Emacs mode. (Buffer-specific.)") |
11 | 47 |
48 (defvar vip-insert-local-map nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
49 "Local map used in insert command mode. (Buffer-specific.)") |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
50 |
11 | 51 (make-variable-buffer-local 'vip-emacs-local-map) |
52 (make-variable-buffer-local 'vip-insert-local-map) | |
53 | |
54 (defvar vip-insert-point nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
55 "Remember insert point as a marker. (Buffer-specific.)") |
11 | 56 |
57 (set-default 'vip-insert-point (make-marker)) | |
58 (make-variable-buffer-local 'vip-insert-point) | |
59 | |
60 (defvar vip-com-point nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
61 "Remember com point as a marker. (Buffer-specific.)") |
11 | 62 |
63 (set-default 'vip-com-point (make-marker)) | |
64 (make-variable-buffer-local 'vip-com-point) | |
65 | |
66 (defvar vip-current-mode nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
67 "Current mode. One of `emacs-mode', `vi-mode', `insert-mode'.") |
11 | 68 |
69 (make-variable-buffer-local 'vip-current-mode) | |
70 (setq-default vip-current-mode 'emacs-mode) | |
71 | |
72 (defvar vip-emacs-mode-line-buffer-identification nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
73 "Value of mode-line-buffer-identification in Emacs mode within vip.") |
11 | 74 (make-variable-buffer-local 'vip-emacs-mode-line-buffer-identification) |
75 (setq-default vip-emacs-mode-line-buffer-identification | |
76 '("Emacs: %17b")) | |
77 | |
78 (defvar vip-current-major-mode nil | |
79 "vip-current-major-mode is the major-mode vi considers it is now. | |
80 \(buffer specific\)") | |
81 | |
82 (make-variable-buffer-local 'vip-current-major-mode) | |
83 | |
84 (defvar vip-last-shell-com nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
85 "Last shell command executed by ! command.") |
11 | 86 |
87 (defvar vip-use-register nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
88 "Name of register to store deleted or yanked strings.") |
11 | 89 |
90 (defvar vip-d-com nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
91 "How to reexecute last destructive command. Value is list (M-COM VAL COM).") |
11 | 92 |
21628 | 93 (defcustom vip-shift-width 8 |
94 "*The number of columns shifted by > and < command." | |
95 :type 'integer | |
96 :group 'vip) | |
11 | 97 |
21628 | 98 (defcustom vip-re-replace nil |
99 "*If t then do regexp replace, if nil then do string replace." | |
100 :type 'boolean | |
101 :group 'vip) | |
11 | 102 |
103 (defvar vip-d-char nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
104 "The character remembered by the vi \"r\" command.") |
11 | 105 |
106 (defvar vip-f-char nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
107 "For use by \";\" command.") |
11 | 108 |
109 (defvar vip-F-char nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
110 "For use by \".\" command.") |
11 | 111 |
112 (defvar vip-f-forward nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
113 "For use by \";\" command.") |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
114 |
11 | 115 (defvar vip-f-offset nil |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
116 "For use by \";\" command.") |
11 | 117 |
21628 | 118 (defcustom vip-search-wrap-around t |
119 "*If t, search wraps around." | |
120 :type 'boolean | |
121 :group 'vip) | |
11 | 122 |
21628 | 123 (defcustom vip-re-search nil |
124 "*If t, search is reg-exp search, otherwise vanilla search." | |
125 :type 'boolean | |
126 :group 'vip) | |
11 | 127 |
128 (defvar vip-s-string nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
129 "Last vip search string.") |
11 | 130 |
131 (defvar vip-s-forward nil | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
132 "If t, search is forward.") |
11 | 133 |
21628 | 134 (defcustom vip-case-fold-search nil |
135 "*If t, search ignores cases." | |
136 :type 'boolean | |
137 :group 'vip) | |
11 | 138 |
21628 | 139 (defcustom vip-re-query-replace nil |
140 "*If t then do regexp replace, if nil then do string replace." | |
141 :type 'boolean | |
142 :group 'vip) | |
11 | 143 |
21628 | 144 (defcustom vip-open-with-indent nil |
145 "*If t, indent when open a new line." | |
146 :type 'boolean | |
147 :group 'vip) | |
11 | 148 |
21628 | 149 (defcustom vip-help-in-insert-mode nil |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
150 "*If t then C-h is bound to help-command in insert mode. |
21628 | 151 If nil then it is bound to `delete-backward-char'." |
152 :type 'boolean | |
153 :group 'vip) | |
11 | 154 |
155 (defvar vip-quote-string "> " | |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
156 "String inserted at the beginning of region.") |
11 | 157 |
158 (defvar vip-tags-file-name "TAGS") | |
159 | |
160 (defvar vip-inhibit-startup-message nil) | |
13907
c4f965637f22
(vip-startup-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12358
diff
changeset
|
161 |
c4f965637f22
(vip-startup-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12358
diff
changeset
|
162 (defvar vip-startup-file (convert-standard-filename "~/.vip") |
16424
8ce8051df140
Doc fixes on most variables.
Richard M. Stallman <rms@gnu.org>
parents:
14431
diff
changeset
|
163 "Filename used as startup file for vip.") |
11 | 164 |
18424
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
165 ;; key bindings |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
166 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
167 (defvar vip-mode-map (make-keymap)) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
168 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
169 (define-key vip-mode-map "\C-a" 'beginning-of-line) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
170 (define-key vip-mode-map "\C-b" 'vip-scroll-back) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
171 (define-key vip-mode-map "\C-c" 'vip-ctl-c) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
172 (define-key vip-mode-map "\C-d" 'vip-scroll-up) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
173 (define-key vip-mode-map "\C-e" 'vip-scroll-up-one) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
174 (define-key vip-mode-map "\C-f" 'vip-scroll) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
175 (define-key vip-mode-map "\C-g" 'vip-keyboard-quit) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
176 (define-key vip-mode-map "\C-h" 'help-command) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
177 (define-key vip-mode-map "\C-m" 'vip-scroll-back) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
178 (define-key vip-mode-map "\C-n" 'vip-other-window) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
179 (define-key vip-mode-map "\C-o" 'vip-open-line-at-point) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
180 (define-key vip-mode-map "\C-u" 'vip-scroll-down) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
181 (define-key vip-mode-map "\C-x" 'vip-ctl-x) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
182 (define-key vip-mode-map "\C-y" 'vip-scroll-down-one) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
183 (define-key vip-mode-map "\C-z" 'vip-change-mode-to-emacs) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
184 (define-key vip-mode-map "\e" 'vip-ESC) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
185 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
186 (define-key vip-mode-map " " 'vip-scroll) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
187 (define-key vip-mode-map "!" 'vip-command-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
188 (define-key vip-mode-map "\"" 'vip-command-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
189 (define-key vip-mode-map "#" 'vip-command-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
190 (define-key vip-mode-map "$" 'vip-goto-eol) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
191 (define-key vip-mode-map "%" 'vip-paren-match) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
192 (define-key vip-mode-map "&" 'vip-nil) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
193 (define-key vip-mode-map "'" 'vip-goto-mark-and-skip-white) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
194 (define-key vip-mode-map "(" 'vip-backward-sentence) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
195 (define-key vip-mode-map ")" 'vip-forward-sentence) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
196 (define-key vip-mode-map "*" 'call-last-kbd-macro) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
197 (define-key vip-mode-map "+" 'vip-next-line-at-bol) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
198 (define-key vip-mode-map "," 'vip-repeat-find-opposite) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
199 (define-key vip-mode-map "-" 'vip-previous-line-at-bol) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
200 (define-key vip-mode-map "." 'vip-repeat) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
201 (define-key vip-mode-map "/" 'vip-search-forward) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
202 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
203 (define-key vip-mode-map "0" 'vip-beginning-of-line) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
204 (define-key vip-mode-map "1" 'vip-digit-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
205 (define-key vip-mode-map "2" 'vip-digit-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
206 (define-key vip-mode-map "3" 'vip-digit-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
207 (define-key vip-mode-map "4" 'vip-digit-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
208 (define-key vip-mode-map "5" 'vip-digit-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
209 (define-key vip-mode-map "6" 'vip-digit-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
210 (define-key vip-mode-map "7" 'vip-digit-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
211 (define-key vip-mode-map "8" 'vip-digit-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
212 (define-key vip-mode-map "9" 'vip-digit-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
213 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
214 (define-key vip-mode-map ":" 'vip-ex) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
215 (define-key vip-mode-map ";" 'vip-repeat-find) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
216 (define-key vip-mode-map "<" 'vip-command-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
217 (define-key vip-mode-map "=" 'vip-command-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
218 (define-key vip-mode-map ">" 'vip-command-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
219 (define-key vip-mode-map "?" 'vip-search-backward) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
220 (define-key vip-mode-map "@" 'vip-nil) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
221 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
222 (define-key vip-mode-map "A" 'vip-Append) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
223 (define-key vip-mode-map "B" 'vip-backward-Word) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
224 (define-key vip-mode-map "C" 'vip-ctl-c-equivalent) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
225 (define-key vip-mode-map "D" 'vip-kill-line) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
226 (define-key vip-mode-map "E" 'vip-end-of-Word) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
227 (define-key vip-mode-map "F" 'vip-find-char-backward) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
228 (define-key vip-mode-map "G" 'vip-goto-line) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
229 (define-key vip-mode-map "H" 'vip-window-top) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
230 (define-key vip-mode-map "I" 'vip-Insert) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
231 (define-key vip-mode-map "J" 'vip-join-lines) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
232 (define-key vip-mode-map "K" 'vip-kill-buffer) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
233 (define-key vip-mode-map "L" 'vip-window-bottom) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
234 (define-key vip-mode-map "M" 'vip-window-middle) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
235 (define-key vip-mode-map "N" 'vip-search-Next) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
236 (define-key vip-mode-map "O" 'vip-Open-line) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
237 (define-key vip-mode-map "P" 'vip-Put-back) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
238 (define-key vip-mode-map "Q" 'vip-query-replace) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
239 (define-key vip-mode-map "R" 'vip-replace-string) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
240 (define-key vip-mode-map "S" 'vip-switch-to-buffer-other-window) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
241 (define-key vip-mode-map "T" 'vip-goto-char-backward) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
242 (define-key vip-mode-map "U" 'vip-nil) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
243 (define-key vip-mode-map "V" 'vip-find-file-other-window) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
244 (define-key vip-mode-map "W" 'vip-forward-Word) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
245 (define-key vip-mode-map "X" 'vip-ctl-x-equivalent) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
246 (define-key vip-mode-map "Y" 'vip-yank-line) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
247 (define-key vip-mode-map "ZZ" 'save-buffers-kill-emacs) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
248 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
249 (define-key vip-mode-map "[" 'vip-nil) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
250 (define-key vip-mode-map "\\" 'vip-escape-to-emacs) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
251 (define-key vip-mode-map "]" 'vip-nil) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
252 (define-key vip-mode-map "^" 'vip-bol-and-skip-white) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
253 (define-key vip-mode-map "_" 'vip-nil) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
254 (define-key vip-mode-map "`" 'vip-goto-mark) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
255 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
256 (define-key vip-mode-map "a" 'vip-append) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
257 (define-key vip-mode-map "b" 'vip-backward-word) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
258 (define-key vip-mode-map "c" 'vip-command-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
259 (define-key vip-mode-map "d" 'vip-command-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
260 (define-key vip-mode-map "e" 'vip-end-of-word) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
261 (define-key vip-mode-map "f" 'vip-find-char-forward) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
262 (define-key vip-mode-map "g" 'vip-info-on-file) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
263 (define-key vip-mode-map "h" 'vip-backward-char) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
264 (define-key vip-mode-map "i" 'vip-insert) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
265 (define-key vip-mode-map "j" 'vip-next-line) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
266 (define-key vip-mode-map "k" 'vip-previous-line) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
267 (define-key vip-mode-map "l" 'vip-forward-char) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
268 (define-key vip-mode-map "m" 'vip-mark-point) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
269 (define-key vip-mode-map "n" 'vip-search-next) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
270 (define-key vip-mode-map "o" 'vip-open-line) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
271 (define-key vip-mode-map "p" 'vip-put-back) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
272 (define-key vip-mode-map "q" 'vip-nil) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
273 (define-key vip-mode-map "r" 'vip-replace-char) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
274 (define-key vip-mode-map "s" 'vip-switch-to-buffer) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
275 (define-key vip-mode-map "t" 'vip-goto-char-forward) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
276 (define-key vip-mode-map "u" 'vip-undo) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
277 (define-key vip-mode-map "v" 'vip-find-file) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
278 (define-key vip-mode-map "w" 'vip-forward-word) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
279 (define-key vip-mode-map "x" 'vip-delete-char) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
280 (define-key vip-mode-map "y" 'vip-command-argument) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
281 (define-key vip-mode-map "zH" 'vip-line-to-top) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
282 (define-key vip-mode-map "zM" 'vip-line-to-middle) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
283 (define-key vip-mode-map "zL" 'vip-line-to-bottom) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
284 (define-key vip-mode-map "z\C-m" 'vip-line-to-top) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
285 (define-key vip-mode-map "z." 'vip-line-to-middle) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
286 (define-key vip-mode-map "z-" 'vip-line-to-bottom) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
287 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
288 (define-key vip-mode-map "{" 'vip-backward-paragraph) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
289 (define-key vip-mode-map "|" 'vip-goto-col) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
290 (define-key vip-mode-map "}" 'vip-forward-paragraph) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
291 (define-key vip-mode-map "~" 'vip-nil) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
292 (define-key vip-mode-map "\177" 'vip-delete-backward-char) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
293 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
294 (defun vip-version () |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
295 (interactive) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
296 (message "VIP version 3.5 of September 15, 1987")) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
297 |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
298 |
11 | 299 ;; basic set up |
300 | |
51291
304ec2e5804c
(ctl-x-map): Don't bind C-x C-i or C-x 3.
Richard M. Stallman <rms@gnu.org>
parents:
49598
diff
changeset
|
301 ;;;###autoload |
304ec2e5804c
(ctl-x-map): Don't bind C-x C-i or C-x 3.
Richard M. Stallman <rms@gnu.org>
parents:
49598
diff
changeset
|
302 (defun vip-setup () |
304ec2e5804c
(ctl-x-map): Don't bind C-x C-i or C-x 3.
Richard M. Stallman <rms@gnu.org>
parents:
49598
diff
changeset
|
303 "Set up bindings for C-x 7 and C-z that are useful for VIP users." |
304ec2e5804c
(ctl-x-map): Don't bind C-x C-i or C-x 3.
Richard M. Stallman <rms@gnu.org>
parents:
49598
diff
changeset
|
304 (define-key ctl-x-map "7" 'vip-buffer-in-two-windows) |
304ec2e5804c
(ctl-x-map): Don't bind C-x C-i or C-x 3.
Richard M. Stallman <rms@gnu.org>
parents:
49598
diff
changeset
|
305 (global-set-key "\C-z" 'vip-change-mode-to-vi)) |
11 | 306 |
307 (defmacro vip-loop (count body) | |
308 "(COUNT BODY) Execute BODY COUNT times." | |
309 (list 'let (list (list 'count count)) | |
310 (list 'while (list '> 'count 0) | |
311 body | |
312 (list 'setq 'count (list '1- 'count))))) | |
313 | |
314 (defun vip-push-mark-silent (&optional location) | |
315 "Set mark at LOCATION (point, by default) and push old mark on mark ring. | |
316 No message." | |
12358
fe8779b08103
(vip-push-mark-silent): Use (mark t).
Richard M. Stallman <rms@gnu.org>
parents:
11566
diff
changeset
|
317 (if (null (mark t)) |
11 | 318 nil |
319 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring)) | |
320 (if (> (length mark-ring) mark-ring-max) | |
321 (progn | |
322 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil) | |
323 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil)))) | |
324 (set-mark (or location (point)))) | |
325 | |
326 (defun vip-goto-col (arg) | |
327 "Go to ARG's column." | |
328 (interactive "P") | |
329 (let ((val (vip-p-val arg)) | |
330 (com (vip-getcom arg))) | |
331 (save-excursion | |
332 (end-of-line) | |
333 (if (> val (1+ (current-column))) (error ""))) | |
334 (if com (move-marker vip-com-point (point))) | |
335 (beginning-of-line) | |
336 (forward-char (1- val)) | |
337 (if com (vip-execute-com 'vip-goto-col val com)))) | |
338 | |
339 (defun vip-copy-keymap (map) | |
340 (if (null map) (make-sparse-keymap) (copy-keymap map))) | |
341 | |
342 | |
343 ;; changing mode | |
344 | |
345 (defun vip-change-mode (new-mode) | |
3519
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
346 "Change mode to NEW-MODE---either emacs-mode, vi-mode, or insert-mode." |
11 | 347 (or (eq new-mode vip-current-mode) |
348 (progn | |
349 (cond ((eq new-mode 'vi-mode) | |
350 (if (eq vip-current-mode 'insert-mode) | |
351 (progn | |
352 (vip-copy-region-as-kill (point) vip-insert-point) | |
353 (vip-repeat-insert-command)) | |
354 (setq vip-emacs-local-map (current-local-map) | |
355 vip-emacs-mode-line-buffer-identification | |
356 mode-line-buffer-identification | |
357 vip-insert-local-map (vip-copy-keymap | |
358 (current-local-map)))) | |
359 (vip-change-mode-line "Vi: ") | |
360 (use-local-map vip-mode-map)) | |
361 ((eq new-mode 'insert-mode) | |
362 (move-marker vip-insert-point (point)) | |
363 (if (eq vip-current-mode 'emacs-mode) | |
364 (setq vip-emacs-local-map (current-local-map) | |
365 vip-emacs-mode-line-buffer-identification | |
366 mode-line-buffer-identification | |
367 vip-insert-local-map (vip-copy-keymap | |
368 (current-local-map))) | |
369 (setq vip-insert-local-map (vip-copy-keymap | |
370 vip-emacs-local-map))) | |
371 (vip-change-mode-line "Insert") | |
372 (use-local-map vip-insert-local-map) | |
373 (define-key vip-insert-local-map "\e" 'vip-change-mode-to-vi) | |
374 (define-key vip-insert-local-map "\C-z" 'vip-ESC) | |
375 (define-key vip-insert-local-map "\C-h" | |
376 (if vip-help-in-insert-mode 'help-command | |
377 'delete-backward-char)) | |
378 (define-key vip-insert-local-map "\C-w" | |
379 'vip-delete-backward-word)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
380 ((eq new-mode 'emacs-mode) |
11 | 381 (vip-change-mode-line "Emacs:") |
382 (use-local-map vip-emacs-local-map))) | |
383 (setq vip-current-mode new-mode) | |
11566
506881d20003
(vip-change-mode): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
7639
diff
changeset
|
384 (force-mode-line-update)))) |
11 | 385 |
386 (defun vip-copy-region-as-kill (beg end) | |
387 "If BEG and END do not belong to the same buffer, it copies empty region." | |
388 (condition-case nil | |
389 (copy-region-as-kill beg end) | |
390 (error (copy-region-as-kill beg beg)))) | |
391 | |
392 (defun vip-change-mode-line (string) | |
393 "Assuming that the mode line format contains the string \"Emacs:\", this | |
394 function replaces the string by \"Vi: \" etc." | |
395 (setq mode-line-buffer-identification | |
396 (if (string= string "Emacs:") | |
397 vip-emacs-mode-line-buffer-identification | |
398 (list (concat string " %17b"))))) | |
399 | |
258 | 400 ;;;###autoload |
11 | 401 (defun vip-mode () |
402 "Turn on VIP emulation of VI." | |
403 (interactive) | |
404 (if (not vip-inhibit-startup-message) | |
405 (progn | |
406 (switch-to-buffer "VIP Startup Message") | |
407 (erase-buffer) | |
408 (insert | |
409 "VIP is a Vi emulation package for GNU Emacs. VIP provides most Vi commands | |
410 including Ex commands. VIP is however different from Vi in several points. | |
411 You can get more information on VIP by: | |
412 1. Typing `M-x info' and selecting menu item \"vip\". | |
413 2. Typing `C-h k' followed by a key whose description you want. | |
414 3. Printing VIP manual which can be found as GNU/man/vip.texinfo | |
415 4. Printing VIP Reference Card which can be found as GNU/etc/vipcard.tex | |
416 | |
417 This startup message appears whenever you load VIP unless you type `y' now. | |
418 Type `n' to quit this window for now.\n") | |
419 (goto-char (point-min)) | |
420 (if (y-or-n-p "Inhibit VIP startup message? ") | |
421 (progn | |
422 (save-excursion | |
423 (set-buffer | |
13907
c4f965637f22
(vip-startup-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12358
diff
changeset
|
424 (find-file-noselect |
c4f965637f22
(vip-startup-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12358
diff
changeset
|
425 (substitute-in-file-name vip-startup-file))) |
11 | 426 (goto-char (point-max)) |
427 (insert "\n(setq vip-inhibit-startup-message t)\n") | |
428 (save-buffer) | |
429 (kill-buffer (current-buffer))) | |
430 (message "VIP startup message inhibited.") | |
431 (sit-for 2))) | |
432 (kill-buffer (current-buffer)) | |
433 (message "") | |
434 (setq vip-inhibit-startup-message t))) | |
435 (vip-change-mode-to-vi)) | |
436 | |
437 (defun vip-change-mode-to-vi () | |
438 "Change mode to vi mode." | |
439 (interactive) | |
440 (vip-change-mode 'vi-mode)) | |
441 | |
442 (defun vip-change-mode-to-insert () | |
443 "Change mode to insert mode." | |
444 (interactive) | |
445 (vip-change-mode 'insert-mode)) | |
446 | |
447 (defun vip-change-mode-to-emacs () | |
73742
7c812bf3912c
(vip-emacs-local-map, vip-change-mode-to-emacs): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
68648
diff
changeset
|
448 "Change mode to Emacs mode." |
11 | 449 (interactive) |
450 (vip-change-mode 'emacs-mode)) | |
451 | |
452 | |
2319
d98c49df2acd
Added or corrected Commentary section
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1821
diff
changeset
|
453 ;; escape to emacs mode temporarily |
11 | 454 |
3519
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
455 (defun vip-escape-to-emacs (arg &optional events) |
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
456 "Escape to Emacs mode for one Emacs command. |
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
457 ARG is used as the prefix value for the executed command. If |
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
458 EVENTS is a list of events, which become the beginning of the command." |
11 | 459 (interactive "P") |
3519
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
460 (let (com key (old-map (current-local-map))) |
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
461 (if events (setq unread-command-events events)) |
11 | 462 (setq prefix-arg arg) |
3519
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
463 (use-local-map vip-emacs-local-map) |
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
464 (unwind-protect |
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
465 (setq com (key-binding (setq key (read-key-sequence nil)))) |
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
466 (use-local-map old-map)) |
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
467 (command-execute com prefix-arg) |
11 | 468 (setq prefix-arg nil) ;; reset prefix arg |
469 )) | |
470 | |
471 (defun vip-message-conditions (conditions) | |
472 "Print CONDITIONS as a message." | |
473 (let ((case (car conditions)) (msg (cdr conditions))) | |
474 (if (null msg) | |
475 (message "%s" case) | |
476 (message "%s %s" case (prin1-to-string msg))) | |
477 (ding))) | |
478 | |
479 (defun vip-ESC (arg) | |
480 "Emulate ESC key in Emacs mode." | |
481 (interactive "P") | |
3519
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
482 (vip-escape-to-emacs arg '(?\e))) |
11 | 483 |
484 (defun vip-ctl-c (arg) | |
485 "Emulate C-c key in Emacs mode." | |
486 (interactive "P") | |
3519
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
487 (vip-escape-to-emacs arg '(?\C-c))) |
11 | 488 |
489 (defun vip-ctl-x (arg) | |
490 "Emulate C-x key in Emacs mode." | |
491 (interactive "P") | |
3519
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
492 (vip-escape-to-emacs arg '(?\C-x))) |
11 | 493 |
494 (defun vip-ctl-h (arg) | |
495 "Emulate C-h key in Emacs mode." | |
496 (interactive "P") | |
3519
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
497 (vip-escape-to-emacs arg '(?\C-h))) |
11 | 498 |
499 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3519
diff
changeset
|
500 ;; prefix argument for vi mode |
11 | 501 |
502 ;; In vi mode, prefix argument is a dotted pair (NUM . COM) where NUM | |
503 ;; represents the numeric value of the prefix argument and COM represents | |
504 ;; command prefix such as "c", "d", "m" and "y". | |
505 | |
506 (defun vip-prefix-arg-value (char value com) | |
507 "Compute numeric prefix arg value. Invoked by CHAR. VALUE is the value | |
508 obtained so far, and COM is the command part obtained so far." | |
509 (while (and (>= char ?0) (<= char ?9)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
510 (setq value (+ (* (if (numberp value) value 0) 10) (- char ?0))) |
11 | 511 (setq char (read-char))) |
512 (setq prefix-arg value) | |
513 (if com (setq prefix-arg (cons prefix-arg com))) | |
514 (while (= char ?U) | |
515 (vip-describe-arg prefix-arg) | |
516 (setq char (read-char))) | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1625
diff
changeset
|
517 (setq unread-command-events (list char))) |
11 | 518 |
519 (defun vip-prefix-arg-com (char value com) | |
520 "Vi operator as prefix argument." | |
521 (let ((cont t)) | |
522 (while (and cont | |
523 (or (= char ?c) (= char ?d) (= char ?y) | |
524 (= char ?!) (= char ?<) (= char ?>) (= char ?=) | |
525 (= char ?#) (= char ?r) (= char ?R) (= char ?\"))) | |
526 (if com | |
527 ;; this means that we already have a command character, so we | |
528 ;; construct a com list and exit while. however, if char is " | |
529 ;; it is an error. | |
530 (progn | |
531 ;; new com is (CHAR . OLDCOM) | |
532 (if (or (= char ?#) (= char ?\")) (error "")) | |
533 (setq com (cons char com)) | |
534 (setq cont nil)) | |
535 ;; if com is nil we set com as char, and read more. again, if char | |
536 ;; is ", we read the name of register and store it in vip-use-register. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3519
diff
changeset
|
537 ;; if char is !, =, or #, a complete com is formed so we exit while. |
11 | 538 (cond ((or (= char ?!) (= char ?=)) |
539 (setq com char) | |
540 (setq char (read-char)) | |
541 (setq cont nil)) | |
542 ((= char ?#) | |
543 ;; read a char and encode it as com | |
544 (setq com (+ 128 (read-char))) | |
545 (setq char (read-char)) | |
546 (setq cont nil)) | |
547 ((or (= char ?<) (= char ?>)) | |
548 (setq com char) | |
549 (setq char (read-char)) | |
550 (if (= com char) (setq com (cons char com))) | |
551 (setq cont nil)) | |
552 ((= char ?\") | |
553 (let ((reg (read-char))) | |
554 (if (or (and (<= ?A reg) (<= reg ?z)) | |
555 (and (<= ?1 reg) (<= reg ?9))) | |
556 (setq vip-use-register reg) | |
557 (error "")) | |
558 (setq char (read-char)))) | |
559 (t | |
560 (setq com char) | |
561 (setq char (read-char))))))) | |
562 (if (atom com) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
563 ;; com is a single char, so we construct prefix-arg |
11 | 564 ;; and if char is ?, describe prefix arg, otherwise exit by |
565 ;; pushing the char back | |
566 (progn | |
567 (setq prefix-arg (cons value com)) | |
568 (while (= char ?U) | |
569 (vip-describe-arg prefix-arg) | |
570 (setq char (read-char))) | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1625
diff
changeset
|
571 (setq unread-command-events (list char))) |
11 | 572 ;; as com is non-nil, this means that we have a command to execute |
573 (if (or (= (car com) ?r) (= (car com) ?R)) | |
14013 | 574 ;; execute appropriate region command. |
11 | 575 (let ((char (car com)) (com (cdr com))) |
576 (setq prefix-arg (cons value com)) | |
577 (if (= char ?r) (vip-region prefix-arg) | |
578 (vip-Region prefix-arg)) | |
579 ;; reset prefix-arg | |
580 (setq prefix-arg nil)) | |
581 ;; otherwise, reset prefix arg and call appropriate command | |
582 (setq value (if (null value) 1 value)) | |
583 (setq prefix-arg nil) | |
584 (cond ((equal com '(?c . ?c)) (vip-line (cons value ?C))) | |
585 ((equal com '(?d . ?d)) (vip-line (cons value ?D))) | |
586 ((equal com '(?d . ?y)) (vip-yank-defun)) | |
587 ((equal com '(?y . ?y)) (vip-line (cons value ?Y))) | |
588 ((equal com '(?< . ?<)) (vip-line (cons value ?<))) | |
589 ((equal com '(?> . ?>)) (vip-line (cons value ?>))) | |
590 ((equal com '(?! . ?!)) (vip-line (cons value ?!))) | |
591 ((equal com '(?= . ?=)) (vip-line (cons value ?=))) | |
592 (t (error "")))))) | |
593 | |
594 (defun vip-describe-arg (arg) | |
595 (let (val com) | |
596 (setq val (vip-P-val arg) | |
597 com (vip-getcom arg)) | |
598 (if (null val) | |
599 (if (null com) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3519
diff
changeset
|
600 (message "Value is nil, and command is nil.") |
11 | 601 (message "Value is nil, and command is %c." com)) |
602 (if (null com) | |
603 (message "Value is %d, and command is nil." val) | |
604 (message "Value is %d, and command is %c." val com))))) | |
605 | |
606 (defun vip-digit-argument (arg) | |
607 "Begin numeric argument for the next command." | |
608 (interactive "P") | |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
609 (vip-prefix-arg-value last-command-event nil |
11 | 610 (if (consp arg) (cdr arg) nil))) |
611 | |
612 (defun vip-command-argument (arg) | |
613 "Accept a motion command as an argument." | |
614 (interactive "P") | |
615 (condition-case conditions | |
616 (vip-prefix-arg-com | |
101009
ad9d2270860e
Replace last-command-char with last-command-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
617 last-command-event |
11 | 618 (cond ((null arg) nil) |
619 ((consp arg) (car arg)) | |
620 ((numberp arg) arg) | |
621 (t (error "strange arg"))) | |
622 (cond ((null arg) nil) | |
623 ((consp arg) (cdr arg)) | |
624 ((numberp arg) nil) | |
625 (t (error "strange arg")))) | |
626 (quit | |
627 (setq vip-use-register nil) | |
628 (signal 'quit nil)))) | |
629 | |
630 (defun vip-p-val (arg) | |
631 "Get value part of prefix-argument ARG." | |
632 (cond ((null arg) 1) | |
633 ((consp arg) (if (null (car arg)) 1 (car arg))) | |
634 (t arg))) | |
635 | |
636 (defun vip-P-val (arg) | |
637 "Get value part of prefix-argument ARG." | |
638 (cond ((consp arg) (car arg)) | |
639 (t arg))) | |
640 | |
641 (defun vip-getcom (arg) | |
642 "Get com part of prefix-argument ARG." | |
643 (cond ((null arg) nil) | |
644 ((consp arg) (cdr arg)) | |
645 (t nil))) | |
646 | |
647 (defun vip-getCom (arg) | |
648 "Get com part of prefix-argument ARG and modify it." | |
649 (let ((com (vip-getcom arg))) | |
650 (cond ((equal com ?c) ?C) | |
651 ((equal com ?d) ?D) | |
652 ((equal com ?y) ?Y) | |
653 (t com)))) | |
654 | |
655 | |
656 ;; repeat last destructive command | |
657 | |
658 (defun vip-append-to-register (reg start end) | |
659 "Append region to text in register REG. | |
660 START and END are buffer positions indicating what to append." | |
661 (set-register reg (concat (or (get-register reg) "") | |
662 (buffer-substring start end)))) | |
663 | |
664 (defun vip-execute-com (m-com val com) | |
665 "(M-COM VAL COM) Execute command COM. The list (M-COM VAL COM) is set | |
666 to vip-d-com for later use by vip-repeat" | |
667 (let ((reg vip-use-register)) | |
668 (if com | |
669 (cond ((= com ?c) (vip-change vip-com-point (point))) | |
670 ((= com (- ?c)) (vip-change-subr vip-com-point (point))) | |
671 ((or (= com ?C) (= com (- ?C))) | |
672 (save-excursion | |
673 (set-mark vip-com-point) | |
674 (vip-enlarge-region (mark) (point)) | |
675 (if vip-use-register | |
676 (progn | |
677 (cond ((and (<= ?a vip-use-register) | |
678 (<= vip-use-register ?z)) | |
679 (copy-to-register | |
680 vip-use-register (mark) (point) nil)) | |
681 ((and (<= ?A vip-use-register) | |
682 (<= vip-use-register ?Z)) | |
683 (vip-append-to-register | |
684 (+ vip-use-register 32) (mark) (point))) | |
685 (t (setq vip-use-register nil) | |
686 (error ""))) | |
687 (setq vip-use-register nil))) | |
688 (delete-region (mark) (point))) | |
689 (open-line 1) | |
690 (if (= com ?C) (vip-change-mode-to-insert) (yank))) | |
691 ((= com ?d) | |
692 (if vip-use-register | |
693 (progn | |
694 (cond ((and (<= ?a vip-use-register) | |
695 (<= vip-use-register ?z)) | |
696 (copy-to-register | |
697 vip-use-register vip-com-point (point) nil)) | |
698 ((and (<= ?A vip-use-register) | |
699 (<= vip-use-register ?Z)) | |
700 (vip-append-to-register | |
701 (+ vip-use-register 32) vip-com-point (point))) | |
702 (t (setq vip-use-register nil) | |
703 (error ""))) | |
704 (setq vip-use-register nil))) | |
705 (setq last-command | |
706 (if (eq last-command 'd-command) 'kill-region nil)) | |
707 (kill-region vip-com-point (point)) | |
708 (setq this-command 'd-command)) | |
709 ((= com ?D) | |
710 (save-excursion | |
711 (set-mark vip-com-point) | |
712 (vip-enlarge-region (mark) (point)) | |
713 (if vip-use-register | |
714 (progn | |
715 (cond ((and (<= ?a vip-use-register) | |
716 (<= vip-use-register ?z)) | |
717 (copy-to-register | |
718 vip-use-register (mark) (point) nil)) | |
719 ((and (<= ?A vip-use-register) | |
720 (<= vip-use-register ?Z)) | |
721 (vip-append-to-register | |
722 (+ vip-use-register 32) (mark) (point))) | |
723 (t (setq vip-use-register nil) | |
724 (error ""))) | |
725 (setq vip-use-register nil))) | |
726 (setq last-command | |
727 (if (eq last-command 'D-command) 'kill-region nil)) | |
728 (kill-region (mark) (point)) | |
729 (if (eq m-com 'vip-line) (setq this-command 'D-command))) | |
730 (back-to-indentation)) | |
731 ((= com ?y) | |
732 (if vip-use-register | |
733 (progn | |
734 (cond ((and (<= ?a vip-use-register) | |
735 (<= vip-use-register ?z)) | |
736 (copy-to-register | |
737 vip-use-register vip-com-point (point) nil)) | |
738 ((and (<= ?A vip-use-register) | |
739 (<= vip-use-register ?Z)) | |
740 (vip-append-to-register | |
741 (+ vip-use-register 32) vip-com-point (point))) | |
742 (t (setq vip-use-register nil) | |
743 (error ""))) | |
744 (setq vip-use-register nil))) | |
745 (setq last-command nil) | |
746 (copy-region-as-kill vip-com-point (point)) | |
747 (goto-char vip-com-point)) | |
748 ((= com ?Y) | |
749 (save-excursion | |
750 (set-mark vip-com-point) | |
751 (vip-enlarge-region (mark) (point)) | |
752 (if vip-use-register | |
753 (progn | |
754 (cond ((and (<= ?a vip-use-register) | |
755 (<= vip-use-register ?z)) | |
756 (copy-to-register | |
757 vip-use-register (mark) (point) nil)) | |
758 ((and (<= ?A vip-use-register) | |
759 (<= vip-use-register ?Z)) | |
760 (vip-append-to-register | |
761 (+ vip-use-register 32) (mark) (point))) | |
762 (t (setq vip-use-register nil) | |
763 (error ""))) | |
764 (setq vip-use-register nil))) | |
765 (setq last-command nil) | |
766 (copy-region-as-kill (mark) (point))) | |
767 (goto-char vip-com-point)) | |
768 ((or (= com ?!) (= com (- ?!))) | |
769 (save-excursion | |
770 (set-mark vip-com-point) | |
771 (vip-enlarge-region (mark) (point)) | |
772 (shell-command-on-region | |
773 (mark) (point) | |
774 (if (= com ?!) | |
775 (setq vip-last-shell-com (vip-read-string "!")) | |
776 vip-last-shell-com) | |
777 t))) | |
778 ((= com ?=) | |
779 (save-excursion | |
780 (set-mark vip-com-point) | |
781 (vip-enlarge-region (mark) (point)) | |
782 (if (> (mark) (point)) (exchange-point-and-mark)) | |
783 (indent-region (mark) (point) nil))) | |
784 ((= com ?<) | |
785 (save-excursion | |
786 (set-mark vip-com-point) | |
787 (vip-enlarge-region (mark) (point)) | |
788 (indent-rigidly (mark) (point) (- vip-shift-width))) | |
789 (goto-char vip-com-point)) | |
790 ((= com ?>) | |
791 (save-excursion | |
792 (set-mark vip-com-point) | |
793 (vip-enlarge-region (mark) (point)) | |
794 (indent-rigidly (mark) (point) vip-shift-width)) | |
795 (goto-char vip-com-point)) | |
796 ((>= com 128) | |
797 ;; this is special command # | |
798 (vip-special-prefix-com (- com 128))))) | |
799 (setq vip-d-com (list m-com val (if (or (= com ?c) (= com ?C) (= com ?!)) | |
800 (- com) com) | |
801 reg)))) | |
802 | |
803 (defun vip-repeat (arg) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3519
diff
changeset
|
804 "(ARG) Re-execute last destructive command. vip-d-com has the form |
7639 | 805 \(COM ARG CH REG), where COM is the command to be re-executed, ARG is the |
11 | 806 argument for COM, CH is a flag for repeat, and REG is optional and if exists |
807 is the name of the register for COM." | |
808 (interactive "P") | |
809 (if (eq last-command 'vip-undo) | |
810 ;; if the last command was vip-undo, then undo-more | |
811 (vip-undo-more) | |
812 ;; otherwise execute the command stored in vip-d-com. if arg is non-nil | |
813 ;; its prefix value is used as new prefix value for the command. | |
814 (let ((m-com (car vip-d-com)) | |
815 (val (vip-P-val arg)) | |
816 (com (car (cdr (cdr vip-d-com)))) | |
817 (reg (nth 3 vip-d-com))) | |
818 (if (null val) (setq val (car (cdr vip-d-com)))) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
21986
diff
changeset
|
819 (if (null m-com) (error "No previous command to repeat")) |
11 | 820 (setq vip-use-register reg) |
821 (funcall m-com (cons val com))))) | |
822 | |
823 (defun vip-special-prefix-com (char) | |
824 "This command is invoked interactively by the key sequence #<char>" | |
825 (cond ((= char ?c) | |
826 (downcase-region (min vip-com-point (point)) | |
827 (max vip-com-point (point)))) | |
828 ((= char ?C) | |
829 (upcase-region (min vip-com-point (point)) | |
830 (max vip-com-point (point)))) | |
831 ((= char ?g) | |
832 (set-mark vip-com-point) | |
833 (vip-global-execute)) | |
834 ((= char ?q) | |
835 (set-mark vip-com-point) | |
836 (vip-quote-region)) | |
92085
ba71847b7f2e
(vip-special-prefix-com): Use ispell-region rather than spell-region.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
837 ((= char ?s) (ispell-region vip-com-point (point))))) |
11 | 838 |
839 | |
840 ;; undoing | |
841 | |
842 (defun vip-undo () | |
843 "Undo previous change." | |
844 (interactive) | |
845 (message "undo!") | |
846 (undo-start) | |
847 (undo-more 2) | |
848 (setq this-command 'vip-undo)) | |
849 | |
850 (defun vip-undo-more () | |
851 "Continue undoing previous changes." | |
852 (message "undo more!") | |
853 (undo-more 1) | |
854 (setq this-command 'vip-undo)) | |
855 | |
856 | |
857 ;; utilities | |
858 | |
859 (defun vip-string-tail (str) | |
860 (if (or (null str) (string= str "")) nil | |
861 (substring str 1))) | |
862 | |
863 (defun vip-yank-defun () | |
864 (mark-defun) | |
865 (copy-region-as-kill (point) (mark))) | |
866 | |
867 (defun vip-enlarge-region (beg end) | |
868 "Enlarge region between BEG and END." | |
869 (if (< beg end) | |
870 (progn (goto-char beg) (set-mark end)) | |
871 (goto-char end) | |
872 (set-mark beg)) | |
873 (beginning-of-line) | |
874 (exchange-point-and-mark) | |
85825
13163bbed0bf
* progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
875 (if (or (not (eobp)) (not (bolp))) (with-no-warnings (next-line 1))) |
11 | 876 (beginning-of-line) |
877 (if (> beg end) (exchange-point-and-mark))) | |
878 | |
879 (defun vip-global-execute () | |
880 "Call last keyboad macro for each line in the region." | |
881 (if (> (point) (mark)) (exchange-point-and-mark)) | |
882 (beginning-of-line) | |
883 (call-last-kbd-macro) | |
884 (while (< (point) (mark)) | |
885 (forward-line 1) | |
886 (beginning-of-line) | |
887 (call-last-kbd-macro))) | |
888 | |
889 (defun vip-quote-region () | |
890 "Quote region by inserting the user supplied string at the beginning of | |
891 each line in the region." | |
892 (setq vip-quote-string | |
893 (let ((str | |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
64701
diff
changeset
|
894 (vip-read-string (format "quote string (default %s): " |
11 | 895 vip-quote-string)))) |
896 (if (string= str "") vip-quote-string str))) | |
897 (vip-enlarge-region (point) (mark)) | |
898 (if (> (point) (mark)) (exchange-point-and-mark)) | |
899 (insert vip-quote-string) | |
900 (beginning-of-line) | |
901 (forward-line 1) | |
902 (while (and (< (point) (mark)) (bolp)) | |
903 (insert vip-quote-string) | |
904 (beginning-of-line) | |
905 (forward-line 1))) | |
906 | |
907 (defun vip-end-with-a-newline-p (string) | |
908 "Check if the string ends with a newline." | |
18424
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
909 (or (string= string "") |
11 | 910 (= (aref string (1- (length string))) ?\n))) |
911 | |
18424
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
912 (defvar vip-save-minibuffer-local-map) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
913 |
11 | 914 (defun vip-read-string (prompt &optional init) |
18424
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
915 (setq vip-save-minibuffer-local-map (copy-keymap minibuffer-local-map)) |
11 | 916 (define-key minibuffer-local-map "\C-h" 'backward-char) |
917 (define-key minibuffer-local-map "\C-w" 'backward-word) | |
918 (define-key minibuffer-local-map "\e" 'exit-minibuffer) | |
919 (let (str) | |
920 (condition-case conditions | |
921 (setq str (read-string prompt init)) | |
922 (quit | |
18424
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
923 (setq minibuffer-local-map vip-save-minibuffer-local-map) |
11 | 924 (signal 'quit nil))) |
18424
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
925 (setq minibuffer-local-map vip-save-minibuffer-local-map) |
11 | 926 str)) |
927 | |
928 | |
929 ;; insertion commands | |
930 | |
931 (defun vip-repeat-insert-command () | |
932 "This function is called when mode changes from insertion mode to | |
933 vi command mode. It will repeat the insertion command if original insertion | |
934 command was invoked with argument > 1." | |
935 (let ((i-com (car vip-d-com)) (val (car (cdr vip-d-com)))) | |
936 (if (and val (> val 1)) ;; first check that val is non-nil | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
937 (progn |
11 | 938 (setq vip-d-com (list i-com (1- val) ?r)) |
939 (vip-repeat nil) | |
940 (setq vip-d-com (list i-com val ?r)))))) | |
941 | |
942 (defun vip-insert (arg) "" | |
943 (interactive "P") | |
944 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
945 (setq vip-d-com (list 'vip-insert val ?r)) | |
946 (if com (vip-loop val (yank)) | |
947 (vip-change-mode-to-insert)))) | |
948 | |
949 (defun vip-append (arg) | |
950 "Append after point." | |
951 (interactive "P") | |
952 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
953 (setq vip-d-com (list 'vip-append val ?r)) | |
954 (if (not (eolp)) (forward-char)) | |
955 (if (equal com ?r) | |
956 (vip-loop val (yank)) | |
957 (vip-change-mode-to-insert)))) | |
958 | |
959 (defun vip-Append (arg) | |
960 "Append at end of line." | |
961 (interactive "P") | |
962 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
963 (setq vip-d-com (list 'vip-Append val ?r)) | |
964 (end-of-line) | |
965 (if (equal com ?r) | |
966 (vip-loop val (yank)) | |
967 (vip-change-mode-to-insert)))) | |
968 | |
969 (defun vip-Insert (arg) | |
970 "Insert before first non-white." | |
971 (interactive "P") | |
972 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
973 (setq vip-d-com (list 'vip-Insert val ?r)) | |
974 (back-to-indentation) | |
975 (if (equal com ?r) | |
976 (vip-loop val (yank)) | |
977 (vip-change-mode-to-insert)))) | |
978 | |
979 (defun vip-open-line (arg) | |
980 "Open line below." | |
981 (interactive "P") | |
982 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
983 (setq vip-d-com (list 'vip-open-line val ?r)) | |
984 (let ((col (current-indentation))) | |
985 (if (equal com ?r) | |
986 (vip-loop val | |
987 (progn | |
988 (end-of-line) | |
989 (newline 1) | |
990 (if vip-open-with-indent (indent-to col)) | |
991 (yank))) | |
992 (end-of-line) | |
993 (newline 1) | |
994 (if vip-open-with-indent (indent-to col)) | |
995 (vip-change-mode-to-insert))))) | |
996 | |
997 (defun vip-Open-line (arg) | |
998 "Open line above." | |
999 (interactive "P") | |
1000 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1001 (setq vip-d-com (list 'vip-Open-line val ?r)) | |
1002 (let ((col (current-indentation))) | |
1003 (if (equal com ?r) | |
1004 (vip-loop val | |
1005 (progn | |
1006 (beginning-of-line) | |
1007 (open-line 1) | |
1008 (if vip-open-with-indent (indent-to col)) | |
1009 (yank))) | |
1010 (beginning-of-line) | |
1011 (open-line 1) | |
1012 (if vip-open-with-indent (indent-to col)) | |
1013 (vip-change-mode-to-insert))))) | |
1014 | |
1015 (defun vip-open-line-at-point (arg) | |
1016 "Open line at point." | |
1017 (interactive "P") | |
1018 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1019 (setq vip-d-com (list 'vip-open-line-at-point val ?r)) | |
1020 (if (equal com ?r) | |
1021 (vip-loop val | |
1022 (progn | |
1023 (open-line 1) | |
1024 (yank))) | |
1025 (open-line 1) | |
1026 (vip-change-mode-to-insert)))) | |
1027 | |
1028 (defun vip-substitute (arg) | |
1029 "Substitute characters." | |
1030 (interactive "P") | |
1031 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1032 (save-excursion | |
1033 (set-mark (point)) | |
1034 (forward-char val) | |
1035 (if (equal com ?r) | |
1036 (vip-change-subr (mark) (point)) | |
1037 (vip-change (mark) (point)))) | |
1038 (setq vip-d-com (list 'vip-substitute val ?r)))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
1039 |
11 | 1040 (defun vip-substitute-line (arg) |
1041 "Substitute lines." | |
1042 (interactive "p") | |
1043 (vip-line (cons arg ?C))) | |
1044 | |
1045 | |
1046 ;; line command | |
1047 | |
1048 (defun vip-line (arg) | |
1049 (let ((val (car arg)) (com (cdr arg))) | |
1050 (move-marker vip-com-point (point)) | |
85825
13163bbed0bf
* progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
1051 (with-no-warnings (next-line (1- val))) |
11 | 1052 (vip-execute-com 'vip-line val com))) |
1053 | |
1054 (defun vip-yank-line (arg) | |
1055 "Yank ARG lines (in vi's sense)" | |
1056 (interactive "P") | |
1057 (let ((val (vip-p-val arg))) | |
1058 (vip-line (cons val ?Y)))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
1059 |
11 | 1060 |
1061 ;; region command | |
1062 | |
1063 (defun vip-region (arg) | |
1064 (interactive "P") | |
1065 (let ((val (vip-P-val arg)) | |
1066 (com (vip-getcom arg))) | |
1067 (move-marker vip-com-point (point)) | |
1068 (exchange-point-and-mark) | |
1069 (vip-execute-com 'vip-region val com))) | |
1070 | |
1071 (defun vip-Region (arg) | |
1072 (interactive "P") | |
1073 (let ((val (vip-P-val arg)) | |
1074 (com (vip-getCom arg))) | |
1075 (move-marker vip-com-point (point)) | |
1076 (exchange-point-and-mark) | |
1077 (vip-execute-com 'vip-Region val com))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
1078 |
11 | 1079 (defun vip-replace-char (arg) |
1080 "Replace the following ARG chars by the character read." | |
1081 (interactive "P") | |
1082 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1083 (setq vip-d-com (list 'vip-replace-char val ?r)) | |
1084 (vip-replace-char-subr (if (equal com ?r) vip-d-char (read-char)) val))) | |
1085 | |
1086 (defun vip-replace-char-subr (char arg) | |
1087 (delete-char arg t) | |
1088 (setq vip-d-char char) | |
1089 (vip-loop (if (> arg 0) arg (- arg)) (insert char)) | |
1090 (backward-char arg)) | |
1091 | |
1092 (defun vip-replace-string () | |
1093 "Replace string. If you supply null string as the string to be replaced, | |
1094 the query replace mode will toggle between string replace and regexp replace." | |
1095 (interactive) | |
1096 (let (str) | |
1097 (setq str (vip-read-string | |
1098 (if vip-re-replace "Replace regexp: " "Replace string: "))) | |
1099 (if (string= str "") | |
1100 (progn | |
1101 (setq vip-re-replace (not vip-re-replace)) | |
14345
e37ae69fce10
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1102 (message "Replace mode changed to %s." |
e37ae69fce10
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1103 (if vip-re-replace "regexp replace" |
e37ae69fce10
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1104 "string replace"))) |
11 | 1105 (if vip-re-replace |
5308
f14639c69ed3
(vip-replace-string): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1106 ;; (replace-regexp |
f14639c69ed3
(vip-replace-string): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1107 ;; str |
f14639c69ed3
(vip-replace-string): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1108 ;; (vip-read-string (format "Replace regexp \"%s\" with: " str))) |
f14639c69ed3
(vip-replace-string): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1109 (while (re-search-forward str nil t) |
f14639c69ed3
(vip-replace-string): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1110 (replace-match (vip-read-string |
f14639c69ed3
(vip-replace-string): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1111 (format "Replace regexp \"%s\" with: " str)) |
f14639c69ed3
(vip-replace-string): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1112 nil nil)) |
63943
500636572e8a
(vip-replace-string, ex-map, ex-read): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
63489
diff
changeset
|
1113 (with-no-warnings |
500636572e8a
(vip-replace-string, ex-map, ex-read): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
63489
diff
changeset
|
1114 (replace-string |
500636572e8a
(vip-replace-string, ex-map, ex-read): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
63489
diff
changeset
|
1115 str |
500636572e8a
(vip-replace-string, ex-map, ex-read): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
63489
diff
changeset
|
1116 (vip-read-string (format "Replace \"%s\" with: " str)))))))) |
11 | 1117 |
1118 | |
1119 ;; basic cursor movement. j, k, l, m commands. | |
1120 | |
1121 (defun vip-forward-char (arg) | |
1122 "Move point right ARG characters (left if ARG negative).On reaching end | |
1123 of buffer, stop and signal error." | |
1124 (interactive "P") | |
1125 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1126 (if com (move-marker vip-com-point (point))) | |
1127 (forward-char val) | |
1128 (if com (vip-execute-com 'vip-forward-char val com)))) | |
1129 | |
1130 (defun vip-backward-char (arg) | |
1131 "Move point left ARG characters (right if ARG negative). On reaching | |
1132 beginning of buffer, stop and signal error." | |
1133 (interactive "P") | |
1134 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1135 (if com (move-marker vip-com-point (point))) | |
1136 (backward-char val) | |
1137 (if com (vip-execute-com 'vip-backward-char val com)))) | |
1138 | |
1139 | |
1140 ;; word command | |
1141 | |
1142 (defun vip-forward-word (arg) | |
1143 "Forward word." | |
1144 (interactive "P") | |
1145 (let ((val (vip-p-val arg)) | |
1146 (com (vip-getcom arg))) | |
1147 (if com (move-marker vip-com-point (point))) | |
1148 (forward-word val) | |
1149 (skip-chars-forward " \t\n") | |
1150 (if com | |
1151 (progn | |
1152 (if (or (= com ?c) (= com (- ?c))) | |
1153 (progn (backward-word 1) (forward-word 1))) | |
1154 (if (or (= com ?d) (= com ?y)) | |
1155 (progn | |
1156 (backward-word 1) | |
1157 (forward-word 1) | |
1158 (skip-chars-forward " \t"))) | |
1159 (vip-execute-com 'vip-forward-word val com))))) | |
1160 | |
1161 (defun vip-end-of-word (arg) | |
1162 "Move point to end of current word." | |
1163 (interactive "P") | |
1164 (let ((val (vip-p-val arg)) | |
1165 (com (vip-getcom arg))) | |
1166 (if com (move-marker vip-com-point (point))) | |
1167 (forward-char) | |
1168 (forward-word val) | |
1169 (backward-char) | |
1170 (if com | |
1171 (progn | |
1172 (forward-char) | |
1173 (vip-execute-com 'vip-end-of-word val com))))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
1174 |
11 | 1175 (defun vip-backward-word (arg) |
1176 "Backward word." | |
1177 (interactive "P") | |
1178 (let ((val (vip-p-val arg)) | |
1179 (com (vip-getcom arg))) | |
1180 (if com (move-marker vip-com-point (point))) | |
1181 (backward-word val) | |
1182 (if com (vip-execute-com 'vip-backward-word val com)))) | |
1183 | |
1184 (defun vip-forward-Word (arg) | |
1185 "Forward word delimited by white character." | |
1186 (interactive "P") | |
1187 (let ((val (vip-p-val arg)) | |
1188 (com (vip-getcom arg))) | |
1189 (if com (move-marker vip-com-point (point))) | |
1190 (re-search-forward "[^ \t\n]*[ \t\n]+" nil t val) | |
1191 (if com | |
1192 (progn | |
1193 (if (or (= com ?c) (= com (- ?c))) | |
1194 (progn (backward-word 1) (forward-word 1))) | |
1195 (if (or (= com ?d) (= com ?y)) | |
1196 (progn | |
1197 (backward-word 1) | |
1198 (forward-word 1) | |
1199 (skip-chars-forward " \t"))) | |
1200 (vip-execute-com 'vip-forward-Word val com))))) | |
1201 | |
1202 (defun vip-end-of-Word (arg) | |
1203 "Move forward to end of word delimited by white character." | |
1204 (interactive "P") | |
1205 (let ((val (vip-p-val arg)) | |
1206 (com (vip-getcom arg))) | |
1207 (if com (move-marker vip-com-point (point))) | |
1208 (forward-char) | |
1209 (if (re-search-forward "[^ \t\n]+" nil t val) (backward-char)) | |
1210 (if com | |
1211 (progn | |
1212 (forward-char) | |
1213 (vip-execute-com 'vip-end-of-Word val com))))) | |
1214 | |
1215 (defun vip-backward-Word (arg) | |
1216 "Backward word delimited by white character." | |
1217 (interactive "P") | |
1218 (let ((val (vip-p-val arg)) | |
1219 (com (vip-getcom arg))) | |
1220 (if com (move-marker vip-com-point (point))) | |
1221 (if (re-search-backward "[ \t\n]+[^ \t\n]+" nil t val) | |
1222 (forward-char) | |
1223 (goto-char (point-min))) | |
1224 (if com (vip-execute-com 'vip-backward-Word val com)))) | |
1225 | |
1226 (defun vip-beginning-of-line (arg) | |
1227 "Go to beginning of line." | |
1228 (interactive "P") | |
1229 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1230 (if com (move-marker vip-com-point (point))) | |
1231 (beginning-of-line val) | |
1232 (if com (vip-execute-com 'vip-beginning-of-line val com)))) | |
1233 | |
1234 (defun vip-bol-and-skip-white (arg) | |
1235 "Beginning of line at first non-white character." | |
1236 (interactive "P") | |
1237 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1238 (if com (move-marker vip-com-point (point))) | |
1239 (back-to-indentation) | |
1240 (if com (vip-execute-com 'vip-bol-and-skip-white val com)))) | |
1241 | |
1242 (defun vip-goto-eol (arg) | |
1243 "Go to end of line." | |
1244 (interactive "P") | |
1245 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1246 (if com (move-marker vip-com-point (point))) | |
1247 (end-of-line val) | |
1248 (if com (vip-execute-com 'vip-goto-eol val com)))) | |
1249 | |
1250 (defun vip-next-line (arg) | |
1251 "Go to next line." | |
1252 (interactive "P") | |
1253 (let ((val (vip-p-val arg)) (com (vip-getCom arg))) | |
1254 (if com (move-marker vip-com-point (point))) | |
1255 (line-move val) | |
1256 (setq this-command 'next-line) | |
1257 (if com (vip-execute-com 'vip-next-line val com)))) | |
1258 | |
1259 (defun vip-next-line-at-bol (arg) | |
1260 "Next line at beginning of line." | |
1261 (interactive "P") | |
1262 (let ((val (vip-p-val arg)) (com (vip-getCom arg))) | |
1263 (if com (move-marker vip-com-point (point))) | |
85825
13163bbed0bf
* progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
1264 (with-no-warnings (next-line val)) |
11 | 1265 (back-to-indentation) |
1266 (if com (vip-execute-com 'vip-next-line-at-bol val com)))) | |
1267 | |
1268 (defun vip-previous-line (arg) | |
1269 "Go to previous line." | |
1270 (interactive "P") | |
1271 (let ((val (vip-p-val arg)) (com (vip-getCom arg))) | |
1272 (if com (move-marker vip-com-point (point))) | |
85825
13163bbed0bf
* progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
1273 (with-no-warnings (next-line (- val))) |
11 | 1274 (setq this-command 'previous-line) |
1275 (if com (vip-execute-com 'vip-previous-line val com)))) | |
1276 | |
1277 (defun vip-previous-line-at-bol (arg) | |
1278 "Previous line at beginning of line." | |
1279 (interactive "P") | |
1280 (let ((val (vip-p-val arg)) (com (vip-getCom arg))) | |
1281 (if com (move-marker vip-com-point (point))) | |
85825
13163bbed0bf
* progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
1282 (with-no-warnings (next-line (- val))) |
11 | 1283 (back-to-indentation) |
1284 (if com (vip-execute-com 'vip-previous-line val com)))) | |
1285 | |
1286 (defun vip-change-to-eol (arg) | |
1287 "Change to end of line." | |
1288 (interactive "P") | |
1289 (vip-goto-eol (cons arg ?c))) | |
1290 | |
1291 (defun vip-kill-line (arg) | |
1292 "Delete line." | |
1293 (interactive "P") | |
1294 (vip-goto-eol (cons arg ?d))) | |
1295 | |
1296 | |
1297 ;; moving around | |
1298 | |
1299 (defun vip-goto-line (arg) | |
1300 "Go to ARG's line. Without ARG go to end of buffer." | |
1301 (interactive "P") | |
1302 (let ((val (vip-P-val arg)) (com (vip-getCom arg))) | |
1303 (move-marker vip-com-point (point)) | |
1304 (set-mark (point)) | |
1305 (if (null val) | |
1306 (goto-char (point-max)) | |
1307 (goto-char (point-min)) | |
1308 (forward-line (1- val))) | |
1309 (back-to-indentation) | |
1310 (if com (vip-execute-com 'vip-goto-line val com)))) | |
1311 | |
1312 (defun vip-find-char (arg char forward offset) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3519
diff
changeset
|
1313 "Find ARG's occurrence of CHAR on the current line. If FORWARD then |
11 | 1314 search is forward, otherwise backward. OFFSET is used to adjust point |
1315 after search." | |
1316 (let ((arg (if forward arg (- arg))) point) | |
1317 (save-excursion | |
1318 (save-restriction | |
1319 (if (> arg 0) | |
1320 (narrow-to-region | |
1321 ;; forward search begins here | |
1322 (if (eolp) (error "") (point)) | |
1323 ;; forward search ends here | |
85825
13163bbed0bf
* progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
1324 (progn (with-no-warnings (next-line 1)) (beginning-of-line) (point))) |
11 | 1325 (narrow-to-region |
1326 ;; backward search begins from here | |
1327 (if (bolp) (error "") (point)) | |
1328 ;; backward search ends here | |
1329 (progn (beginning-of-line) (point)))) | |
1330 ;; if arg > 0, point is forwarded before search. | |
1331 (if (> arg 0) (goto-char (1+ (point-min))) | |
1332 (goto-char (point-max))) | |
1333 (let ((case-fold-search nil)) | |
1334 (search-forward (char-to-string char) nil 0 arg)) | |
1335 (setq point (point)) | |
1336 (if (or (and (> arg 0) (= point (point-max))) | |
1337 (and (< arg 0) (= point (point-min)))) | |
1338 (error "")))) | |
1339 (goto-char (+ point (if (> arg 0) (if offset -2 -1) (if offset 1 0)))))) | |
1340 | |
1341 (defun vip-find-char-forward (arg) | |
1342 "Find char on the line. If called interactively read the char to find | |
1343 from the terminal, and if called from vip-repeat, the char last used is | |
63267
91a5f7200df2
(vip-find-char-forward): Fix spellings in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
62402
diff
changeset
|
1344 used. This behavior is controlled by the sign of prefix numeric value." |
11 | 1345 (interactive "P") |
1346 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1347 (if (> val 0) | |
1348 ;; this means that the function was called interactively | |
1349 (setq vip-f-char (read-char) | |
1350 vip-f-forward t | |
1351 vip-f-offset nil) | |
1352 (setq val (- val))) | |
1353 (if com (move-marker vip-com-point (point))) | |
1354 (vip-find-char val (if (> (vip-p-val arg) 0) vip-f-char vip-F-char) t nil) | |
1355 (setq val (- val)) | |
1356 (if com | |
1357 (progn | |
1358 (setq vip-F-char vip-f-char);; set new vip-F-char | |
1359 (forward-char) | |
1360 (vip-execute-com 'vip-find-char-forward val com))))) | |
1361 | |
1362 (defun vip-goto-char-forward (arg) | |
1363 "Go up to char ARG forward on line." | |
1364 (interactive "P") | |
1365 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1366 (if (> val 0) | |
1367 ;; this means that the function was called interactively | |
1368 (setq vip-f-char (read-char) | |
1369 vip-f-forward t | |
1370 vip-f-offset t) | |
1371 (setq val (- val))) | |
1372 (if com (move-marker vip-com-point (point))) | |
1373 (vip-find-char val (if (> (vip-p-val arg) 0) vip-f-char vip-F-char) t t) | |
1374 (setq val (- val)) | |
1375 (if com | |
1376 (progn | |
1377 (setq vip-F-char vip-f-char);; set new vip-F-char | |
1378 (forward-char) | |
1379 (vip-execute-com 'vip-goto-char-forward val com))))) | |
1380 | |
1381 (defun vip-find-char-backward (arg) | |
1382 "Find char ARG on line backward." | |
1383 (interactive "P") | |
1384 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1385 (if (> val 0) | |
1386 ;; this means that the function was called interactively | |
1387 (setq vip-f-char (read-char) | |
1388 vip-f-forward nil | |
1389 vip-f-offset nil) | |
1390 (setq val (- val))) | |
1391 (if com (move-marker vip-com-point (point))) | |
1392 (vip-find-char | |
1393 val (if (> (vip-p-val arg) 0) vip-f-char vip-F-char) nil nil) | |
1394 (setq val (- val)) | |
1395 (if com | |
1396 (progn | |
1397 (setq vip-F-char vip-f-char);; set new vip-F-char | |
1398 (vip-execute-com 'vip-find-char-backward val com))))) | |
1399 | |
1400 (defun vip-goto-char-backward (arg) | |
1401 "Go up to char ARG backward on line." | |
1402 (interactive "P") | |
1403 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1404 (if (> val 0) | |
1405 ;; this means that the function was called interactively | |
1406 (setq vip-f-char (read-char) | |
1407 vip-f-forward nil | |
1408 vip-f-offset t) | |
1409 (setq val (- val))) | |
1410 (if com (move-marker vip-com-point (point))) | |
1411 (vip-find-char val (if (> (vip-p-val arg) 0) vip-f-char vip-F-char) nil t) | |
1412 (setq val (- val)) | |
1413 (if com | |
1414 (progn | |
1415 (setq vip-F-char vip-f-char);; set new vip-F-char | |
1416 (vip-execute-com 'vip-goto-char-backward val com))))) | |
1417 | |
1418 (defun vip-repeat-find (arg) | |
1419 "Repeat previous find command." | |
1420 (interactive "P") | |
1421 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1422 (if com (move-marker vip-com-point (point))) | |
1423 (vip-find-char val vip-f-char vip-f-forward vip-f-offset) | |
1424 (if com | |
1425 (progn | |
1426 (if vip-f-forward (forward-char)) | |
1427 (vip-execute-com 'vip-repeat-find val com))))) | |
1428 | |
1429 (defun vip-repeat-find-opposite (arg) | |
1430 "Repeat previous find command in the opposite direction." | |
1431 (interactive "P") | |
1432 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
1433 (if com (move-marker vip-com-point (point))) | |
1434 (vip-find-char val vip-f-char (not vip-f-forward) vip-f-offset) | |
1435 (if com | |
1436 (progn | |
1437 (if vip-f-forward (forward-char)) | |
1438 (vip-execute-com 'vip-repeat-find-opposite val com))))) | |
1439 | |
1440 | |
1441 ;; window scrolling etc. | |
1442 | |
1443 (defun vip-other-window (arg) | |
1444 "Switch to other window." | |
1445 (interactive "p") | |
1446 (other-window arg) | |
1447 (or (not (eq vip-current-mode 'emacs-mode)) | |
1448 (string= (buffer-name (current-buffer)) " *Minibuf-1*") | |
1449 (vip-change-mode-to-vi))) | |
1450 | |
1451 (defun vip-window-top (arg) | |
1452 "Go to home window line." | |
1453 (interactive "P") | |
1454 (let ((val (vip-p-val arg)) | |
1455 (com (vip-getCom arg))) | |
1456 (if com (move-marker vip-com-point (point))) | |
1457 (move-to-window-line (1- val)) | |
1458 (if com (vip-execute-com 'vip-window-top val com)))) | |
1459 | |
1460 (defun vip-window-middle (arg) | |
1461 "Go to middle window line." | |
1462 (interactive "P") | |
1463 (let ((val (vip-p-val arg)) | |
1464 (com (vip-getCom arg))) | |
1465 (if com (move-marker vip-com-point (point))) | |
1466 (move-to-window-line (+ (/ (1- (window-height)) 2) (1- val))) | |
1467 (if com (vip-execute-com 'vip-window-middle val com)))) | |
1468 | |
1469 (defun vip-window-bottom (arg) | |
1470 "Go to last window line." | |
1471 (interactive "P") | |
1472 (let ((val (vip-p-val arg)) | |
1473 (com (vip-getCom arg))) | |
1474 (if com (move-marker vip-com-point (point))) | |
1475 (move-to-window-line (- val)) | |
1476 (if com (vip-execute-com 'vip-window-bottom val com)))) | |
1477 | |
1478 (defun vip-line-to-top (arg) | |
1479 "Put current line on the home line." | |
1480 (interactive "p") | |
1481 (recenter (1- arg))) | |
1482 | |
1483 (defun vip-line-to-middle (arg) | |
1484 "Put current line on the middle line." | |
1485 (interactive "p") | |
1486 (recenter (+ (1- arg) (/ (1- (window-height)) 2)))) | |
1487 | |
1488 (defun vip-line-to-bottom (arg) | |
1489 "Put current line on the last line." | |
1490 (interactive "p") | |
1491 (recenter (- (window-height) (1+ arg)))) | |
1492 | |
1493 | |
1494 ;; paren match | |
1495 | |
1496 (defun vip-paren-match (arg) | |
1497 "Go to the matching parenthesis." | |
1498 (interactive "P") | |
1499 (let ((com (vip-getcom arg))) | |
1500 (if (numberp arg) | |
1501 (if (or (> arg 99) (< arg 1)) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
21986
diff
changeset
|
1502 (error "Prefix must be between 1 and 99") |
11 | 1503 (goto-char |
1504 (if (> (point-max) 80000) | |
1505 (* (/ (point-max) 100) arg) | |
1506 (/ (* (point-max) arg) 100))) | |
1507 (back-to-indentation)) | |
1508 (cond ((looking-at "[\(\[{]") | |
1509 (if com (move-marker vip-com-point (point))) | |
1510 (forward-sexp 1) | |
1511 (if com | |
1512 (vip-execute-com 'vip-paren-match nil com) | |
1513 (backward-char))) | |
1514 ((looking-at "[])}]") | |
1515 (forward-char) | |
1516 (if com (move-marker vip-com-point (point))) | |
1517 (backward-sexp 1) | |
1518 (if com (vip-execute-com 'vip-paren-match nil com))) | |
1519 (t (error "")))))) | |
1520 | |
1521 | |
1522 ;; sentence and paragraph | |
1523 | |
1524 (defun vip-forward-sentence (arg) | |
1525 "Forward sentence." | |
1526 (interactive "P") | |
1527 (let ((val (vip-p-val arg)) | |
1528 (com (vip-getcom arg))) | |
1529 (if com (move-marker vip-com-point (point))) | |
1530 (forward-sentence val) | |
1531 (if com (vip-execute-com 'vip-forward-sentence nil com)))) | |
1532 | |
1533 (defun vip-backward-sentence (arg) | |
1534 "Backward sentence." | |
1535 (interactive "P") | |
1536 (let ((val (vip-p-val arg)) | |
1537 (com (vip-getcom arg))) | |
1538 (if com (move-marker vip-com-point (point))) | |
1539 (backward-sentence val) | |
1540 (if com (vip-execute-com 'vip-backward-sentence nil com)))) | |
1541 | |
1542 (defun vip-forward-paragraph (arg) | |
1543 "Forward paragraph." | |
1544 (interactive "P") | |
1545 (let ((val (vip-p-val arg)) | |
1546 (com (vip-getCom arg))) | |
1547 (if com (move-marker vip-com-point (point))) | |
1548 (forward-paragraph val) | |
1549 (if com (vip-execute-com 'vip-forward-paragraph nil com)))) | |
1550 | |
1551 (defun vip-backward-paragraph (arg) | |
1552 "Backward paragraph." | |
1553 (interactive "P") | |
1554 (let ((val (vip-p-val arg)) | |
1555 (com (vip-getCom arg))) | |
1556 (if com (move-marker vip-com-point (point))) | |
1557 (backward-paragraph val) | |
1558 (if com (vip-execute-com 'vip-backward-paragraph nil com)))) | |
1559 | |
1560 | |
1561 ;; scrolling | |
1562 | |
1563 (defun vip-scroll (arg) | |
1564 "Scroll to next screen." | |
1565 (interactive "p") | |
1566 (if (> arg 0) | |
1567 (while (> arg 0) | |
1568 (scroll-up) | |
1569 (setq arg (1- arg))) | |
1570 (while (> 0 arg) | |
1571 (scroll-down) | |
1572 (setq arg (1+ arg))))) | |
1573 | |
1574 (defun vip-scroll-back (arg) | |
1575 "Scroll to previous screen." | |
1576 (interactive "p") | |
1577 (vip-scroll (- arg))) | |
1578 | |
1579 (defun vip-scroll-down (arg) | |
1580 "Scroll up half screen." | |
1581 (interactive "P") | |
1582 (if (null arg) (scroll-down (/ (window-height) 2)) | |
1583 (scroll-down arg))) | |
1584 | |
1585 (defun vip-scroll-down-one (arg) | |
1586 "Scroll up one line." | |
1587 (interactive "p") | |
1588 (scroll-down arg)) | |
1589 | |
1590 (defun vip-scroll-up (arg) | |
1591 "Scroll down half screen." | |
1592 (interactive "P") | |
1593 (if (null arg) (scroll-up (/ (window-height) 2)) | |
1594 (scroll-up arg))) | |
1595 | |
1596 (defun vip-scroll-up-one (arg) | |
1597 "Scroll down one line." | |
1598 (interactive "p") | |
1599 (scroll-up arg)) | |
1600 | |
1601 | |
1602 ;; splitting window | |
1603 | |
1604 (defun vip-buffer-in-two-windows () | |
1605 "Show current buffer in two windows." | |
1606 (interactive) | |
1607 (delete-other-windows) | |
1608 (split-window-vertically nil)) | |
1609 | |
1610 | |
1611 ;; searching | |
1612 | |
1613 (defun vip-search-forward (arg) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3519
diff
changeset
|
1614 "Search a string forward. ARG is used to find the ARG's occurrence |
11 | 1615 of the string. Default is vanilla search. Search mode can be toggled by |
1616 giving null search string." | |
1617 (interactive "P") | |
1618 (let ((val (vip-P-val arg)) (com (vip-getcom arg))) | |
1619 (setq vip-s-forward t | |
1620 vip-s-string (vip-read-string (if vip-re-search "RE-/" "/"))) | |
1621 (if (string= vip-s-string "") | |
1622 (progn | |
1623 (setq vip-re-search (not vip-re-search)) | |
14345
e37ae69fce10
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1624 (message "Search mode changed to %s search." |
e37ae69fce10
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1625 (if vip-re-search "regular expression" |
e37ae69fce10
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1626 "vanilla"))) |
11 | 1627 (vip-search vip-s-string t val) |
1628 (if com | |
1629 (progn | |
1630 (move-marker vip-com-point (mark)) | |
1631 (vip-execute-com 'vip-search-next val com)))))) | |
1632 | |
1633 (defun vip-search-backward (arg) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3519
diff
changeset
|
1634 "Search a string backward. ARG is used to find the ARG's occurrence |
11 | 1635 of the string. Default is vanilla search. Search mode can be toggled by |
1636 giving null search string." | |
1637 (interactive "P") | |
1638 (let ((val (vip-P-val arg)) (com (vip-getcom arg))) | |
1639 (setq vip-s-forward nil | |
1640 vip-s-string (vip-read-string (if vip-re-search "RE-?" "?"))) | |
1641 (if (string= vip-s-string "") | |
1642 (progn | |
1643 (setq vip-re-search (not vip-re-search)) | |
14345
e37ae69fce10
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1644 (message "Search mode changed to %s search." |
e37ae69fce10
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1645 (if vip-re-search "regular expression" |
e37ae69fce10
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1646 "vanilla"))) |
11 | 1647 (vip-search vip-s-string nil val) |
1648 (if com | |
1649 (progn | |
1650 (move-marker vip-com-point (mark)) | |
1651 (vip-execute-com 'vip-search-next val com)))))) | |
1652 | |
1653 (defun vip-search (string forward arg &optional no-offset init-point) | |
1654 "(STRING FORWARD COUNT &optional NO-OFFSET) Search COUNT's occurrence of | |
1655 STRING. Search will be forward if FORWARD, otherwise backward." | |
1656 (let ((val (vip-p-val arg)) (com (vip-getcom arg)) | |
1657 (null-arg (null (vip-P-val arg))) (offset (not no-offset)) | |
1658 (case-fold-search vip-case-fold-search) | |
1659 (start-point (or init-point (point)))) | |
1660 (if forward | |
1661 (condition-case conditions | |
1662 (progn | |
1663 (if (and offset (not (eobp))) (forward-char)) | |
1664 (if vip-re-search | |
1665 (progn | |
1666 (re-search-forward string nil nil val) | |
1667 (re-search-backward string)) | |
1668 (search-forward string nil nil val) | |
1669 (search-backward string)) | |
1670 (push-mark start-point)) | |
1671 (search-failed | |
1672 (if (and null-arg vip-search-wrap-around) | |
1673 (progn | |
1674 (goto-char (point-min)) | |
1675 (vip-search string forward (cons 1 com) t start-point)) | |
1676 (goto-char start-point) | |
1677 (signal 'search-failed (cdr conditions))))) | |
1678 (condition-case conditions | |
1679 (progn | |
1680 (if vip-re-search | |
1681 (re-search-backward string nil nil val) | |
1682 (search-backward string nil nil val)) | |
1683 (push-mark start-point)) | |
1684 (search-failed | |
1685 (if (and null-arg vip-search-wrap-around) | |
1686 (progn | |
1687 (goto-char (point-max)) | |
1688 (vip-search string forward (cons 1 com) t start-point)) | |
1689 (goto-char start-point) | |
1690 (signal 'search-failed (cdr conditions)))))))) | |
1691 | |
1692 (defun vip-search-next (arg) | |
1693 "Repeat previous search." | |
1694 (interactive "P") | |
1695 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
21986
diff
changeset
|
1696 (if (null vip-s-string) (error "No previous search string")) |
11 | 1697 (vip-search vip-s-string vip-s-forward arg) |
1698 (if com (vip-execute-com 'vip-search-next val com)))) | |
1699 | |
1700 (defun vip-search-Next (arg) | |
1701 "Repeat previous search in the reverse direction." | |
1702 (interactive "P") | |
1703 (let ((val (vip-p-val arg)) (com (vip-getcom arg))) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
21986
diff
changeset
|
1704 (if (null vip-s-string) (error "No previous search string")) |
11 | 1705 (vip-search vip-s-string (not vip-s-forward) arg) |
1706 (if com (vip-execute-com 'vip-search-Next val com)))) | |
1707 | |
1708 | |
1709 ;; visiting and killing files, buffers | |
1710 | |
1711 (defun vip-switch-to-buffer () | |
1712 "Switch to buffer in the current window." | |
1713 (interactive) | |
1714 (let (buffer) | |
1715 (setq buffer | |
1716 (read-buffer | |
1717 (format "switch to buffer \(%s\): " | |
1718 (buffer-name (other-buffer (current-buffer)))))) | |
1719 (switch-to-buffer buffer) | |
1720 (vip-change-mode-to-vi))) | |
1721 | |
1722 (defun vip-switch-to-buffer-other-window () | |
1723 "Switch to buffer in another window." | |
1724 (interactive) | |
1725 (let (buffer) | |
1726 (setq buffer | |
1727 (read-buffer | |
1728 (format "Switch to buffer \(%s\): " | |
1729 (buffer-name (other-buffer (current-buffer)))))) | |
1730 (switch-to-buffer-other-window buffer) | |
1731 (vip-change-mode-to-vi))) | |
1732 | |
1733 (defun vip-kill-buffer () | |
1734 "Kill a buffer." | |
1735 (interactive) | |
1736 (let (buffer buffer-name) | |
1737 (setq buffer-name | |
1738 (read-buffer | |
1739 (format "Kill buffer \(%s\): " | |
1740 (buffer-name (current-buffer))))) | |
1741 (setq buffer | |
1742 (if (null buffer-name) | |
1743 (current-buffer) | |
1744 (get-buffer buffer-name))) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
21986
diff
changeset
|
1745 (if (null buffer) (error "Buffer %s nonexistent" buffer-name)) |
11 | 1746 (if (or (not (buffer-modified-p buffer)) |
1747 (y-or-n-p "Buffer is modified, are you sure? ")) | |
1748 (kill-buffer buffer) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
21986
diff
changeset
|
1749 (error "Buffer not killed")))) |
11 | 1750 |
1751 (defun vip-find-file () | |
1752 "Visit file in the current window." | |
1753 (interactive) | |
1754 (let (file) | |
1755 (setq file (read-file-name "visit file: ")) | |
1756 (switch-to-buffer (find-file-noselect file)) | |
1757 (vip-change-mode-to-vi))) | |
1758 | |
1759 (defun vip-find-file-other-window () | |
1760 "Visit file in another window." | |
1761 (interactive) | |
1762 (let (file) | |
1763 (setq file (read-file-name "Visit file: ")) | |
1764 (switch-to-buffer-other-window (find-file-noselect file)) | |
1765 (vip-change-mode-to-vi))) | |
1766 | |
1767 (defun vip-info-on-file () | |
1768 "Give information of the file associated to the current buffer." | |
1769 (interactive) | |
1770 (message "\"%s\" line %d of %d" | |
1771 (if (buffer-file-name) (buffer-file-name) "") | |
1772 (1+ (count-lines (point-min) (point))) | |
1773 (1+ (count-lines (point-min) (point-max))))) | |
1774 | |
1775 | |
1776 ;; yank and pop | |
1777 | |
1778 (defun vip-yank (text) | |
1779 "yank TEXT silently." | |
1780 (save-excursion | |
1781 (vip-push-mark-silent (point)) | |
1782 (insert text) | |
1783 (exchange-point-and-mark)) | |
1784 (skip-chars-forward " \t")) | |
1785 | |
1786 (defun vip-put-back (arg) | |
1787 "Put back after point/below line." | |
1788 (interactive "P") | |
1789 (let ((val (vip-p-val arg)) | |
1790 (text (if vip-use-register | |
1791 (if (and (<= ?1 vip-use-register) (<= vip-use-register ?9)) | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1792 (current-kill (- vip-use-register ?1) 'do-not-rotate) |
11 | 1793 (get-register vip-use-register)) |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1794 (current-kill 0)))) |
11 | 1795 (if (null text) |
1796 (if vip-use-register | |
1797 (let ((reg vip-use-register)) | |
1798 (setq vip-use-register nil) | |
1799 (error "Nothing in register %c" reg)) | |
1800 (error ""))) | |
1801 (setq vip-use-register nil) | |
1802 (if (vip-end-with-a-newline-p text) | |
1803 (progn | |
85825
13163bbed0bf
* progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
1804 (with-no-warnings (next-line 1)) |
11 | 1805 (beginning-of-line)) |
1806 (if (and (not (eolp)) (not (eobp))) (forward-char))) | |
1807 (setq vip-d-com (list 'vip-put-back val nil vip-use-register)) | |
1808 (vip-loop val (vip-yank text)))) | |
1809 | |
1810 (defun vip-Put-back (arg) | |
1811 "Put back at point/above line." | |
1812 (interactive "P") | |
1813 (let ((val (vip-p-val arg)) | |
1814 (text (if vip-use-register | |
1815 (if (and (<= ?1 vip-use-register) (<= vip-use-register ?9)) | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1816 (current-kill (- vip-use-register ?1) 'do-not-rotate) |
11 | 1817 (get-register vip-use-register)) |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1818 (current-kill 0)))) |
11 | 1819 (if (null text) |
1820 (if vip-use-register | |
1821 (let ((reg vip-use-register)) | |
1822 (setq vip-use-register nil) | |
1823 (error "Nothing in register %c" reg)) | |
1824 (error ""))) | |
1825 (setq vip-use-register nil) | |
1826 (if (vip-end-with-a-newline-p text) (beginning-of-line)) | |
1827 (setq vip-d-com (list 'vip-Put-back val nil vip-use-register)) | |
1828 (vip-loop val (vip-yank text)))) | |
1829 | |
1830 (defun vip-delete-char (arg) | |
1831 "Delete character." | |
1832 (interactive "P") | |
1833 (let ((val (vip-p-val arg))) | |
1834 (setq vip-d-com (list 'vip-delete-char val nil)) | |
1835 (if vip-use-register | |
1836 (progn | |
1837 (if (and (<= ?A vip-use-register) (<= vip-use-register ?Z)) | |
1838 (vip-append-to-register | |
1625
376427dea90a
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
1577
diff
changeset
|
1839 (+ vip-use-register 32) (point) (- (point) val)) |
11 | 1840 (copy-to-register vip-use-register (point) (- (point) val) nil)) |
1841 (setq vip-use-register nil))) | |
1842 (delete-char val t))) | |
1843 | |
1844 (defun vip-delete-backward-char (arg) | |
1845 "Delete previous character." | |
1846 (interactive "P") | |
1847 (let ((val (vip-p-val arg))) | |
1848 (setq vip-d-com (list 'vip-delete-backward-char val nil)) | |
1849 (if vip-use-register | |
1850 (progn | |
1851 (if (and (<= ?A vip-use-register) (<= vip-use-register ?Z)) | |
1852 (vip-append-to-register | |
1625
376427dea90a
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
1577
diff
changeset
|
1853 (+ vip-use-register 32) (point) (+ (point) val)) |
11 | 1854 (copy-to-register vip-use-register (point) (+ (point) val) nil)) |
1855 (setq vip-use-register nil))) | |
1856 (delete-backward-char val t))) | |
1857 | |
1858 | |
1859 ;; join lines. | |
1860 | |
1861 (defun vip-join-lines (arg) | |
1862 "Join this line to next, if ARG is nil. Otherwise, join ARG lines" | |
1863 (interactive "*P") | |
1864 (let ((val (vip-P-val arg))) | |
1865 (setq vip-d-com (list 'vip-join-lines val nil)) | |
1866 (vip-loop (if (null val) 1 (1- val)) | |
1867 (progn | |
1868 (end-of-line) | |
1869 (if (not (eobp)) | |
1870 (progn | |
1871 (forward-line 1) | |
1872 (delete-region (point) (1- (point))) | |
1873 (fixup-whitespace))))))) | |
1874 | |
1875 | |
1876 ;; making small changes | |
1877 | |
18424
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
1878 (defvar vip-c-string) |
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
1879 |
11 | 1880 (defun vip-change (beg end) |
18424
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
1881 (setq vip-c-string |
11 | 1882 (vip-read-string (format "%s => " (buffer-substring beg end)))) |
1883 (vip-change-subr beg end)) | |
1884 | |
1885 (defun vip-change-subr (beg end) | |
1886 (if vip-use-register | |
1887 (progn | |
1888 (copy-to-register vip-use-register beg end nil) | |
1889 (setq vip-use-register nil))) | |
1890 (kill-region beg end) | |
1891 (setq this-command 'vip-change) | |
18424
395e1d352d3b
(vip-mode-map): Add defvar; move earlier.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
1892 (insert vip-c-string)) |
11 | 1893 |
1894 | |
1895 ;; query replace | |
1896 | |
1897 (defun vip-query-replace () | |
1898 "Query replace. If you supply null string as the string to be replaced, | |
1899 the query replace mode will toggle between string replace and regexp replace." | |
1900 (interactive) | |
1901 (let (str) | |
1902 (setq str (vip-read-string | |
1903 (if vip-re-query-replace "Query replace regexp: " | |
1904 "Query replace: "))) | |
1905 (if (string= str "") | |
1906 (progn | |
1907 (setq vip-re-query-replace (not vip-re-query-replace)) | |
1908 (message "Query replace mode changed to %s." | |
1909 (if vip-re-query-replace "regexp replace" | |
1910 "string replace"))) | |
1911 (if vip-re-query-replace | |
1912 (query-replace-regexp | |
1913 str | |
1914 (vip-read-string (format "Query replace regexp \"%s\" with: " str))) | |
1915 (query-replace | |
1916 str | |
1917 (vip-read-string (format "Query replace \"%s\" with: " str))))))) | |
1918 | |
1919 | |
1920 ;; marking | |
1921 | |
1922 (defun vip-mark-beginning-of-buffer () | |
1923 (interactive) | |
1924 (set-mark (point)) | |
1925 (goto-char (point-min)) | |
1926 (exchange-point-and-mark) | |
1927 (message "mark set at the beginning of buffer")) | |
1928 | |
1929 (defun vip-mark-end-of-buffer () | |
1930 (interactive) | |
1931 (set-mark (point)) | |
1932 (goto-char (point-max)) | |
1933 (exchange-point-and-mark) | |
1934 (message "mark set at the end of buffer")) | |
1935 | |
1936 (defun vip-mark-point (char) | |
1937 (interactive "c") | |
1938 (cond ((and (<= ?a char) (<= char ?z)) | |
1625
376427dea90a
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
1577
diff
changeset
|
1939 (point-to-register (- char (- ?a ?\C-a)) nil)) |
11 | 1940 ((= char ?<) (vip-mark-beginning-of-buffer)) |
1941 ((= char ?>) (vip-mark-end-of-buffer)) | |
1942 ((= char ?.) (push-mark)) | |
1943 ((= char ?,) (set-mark-command 1)) | |
1944 ((= char ?D) (mark-defun)) | |
1945 (t (error "")))) | |
1946 | |
1947 (defun vip-goto-mark (arg) | |
1948 "Go to mark." | |
1949 (interactive "P") | |
1950 (let ((char (read-char)) (com (vip-getcom arg))) | |
1951 (vip-goto-mark-subr char com nil))) | |
1952 | |
1953 (defun vip-goto-mark-and-skip-white (arg) | |
1954 "Go to mark and skip to first non-white on line." | |
1955 (interactive "P") | |
1956 (let ((char (read-char)) (com (vip-getCom arg))) | |
1957 (vip-goto-mark-subr char com t))) | |
1958 | |
1959 (defun vip-goto-mark-subr (char com skip-white) | |
1960 (cond ((and (<= ?a char) (<= char ?z)) | |
1961 (let ((buff (current-buffer))) | |
1962 (if com (move-marker vip-com-point (point))) | |
1963 (goto-char (register-to-point (- char (- ?a ?\C-a)))) | |
1964 (if skip-white (back-to-indentation)) | |
1965 (vip-change-mode-to-vi) | |
1966 (if com | |
1967 (if (equal buff (current-buffer)) | |
1968 (vip-execute-com (if skip-white | |
1969 'vip-goto-mark-and-skip-white | |
1970 'vip-goto-mark) | |
1971 nil com) | |
1972 (switch-to-buffer buff) | |
1973 (goto-char vip-com-point) | |
1974 (vip-change-mode-to-vi) | |
1975 (error ""))))) | |
1976 ((and (not skip-white) (= char ?`)) | |
1977 (if com (move-marker vip-com-point (point))) | |
1978 (exchange-point-and-mark) | |
1979 (if com (vip-execute-com 'vip-goto-mark nil com))) | |
1980 ((and skip-white (= char ?')) | |
1981 (if com (move-marker vip-com-point (point))) | |
1982 (exchange-point-and-mark) | |
1983 (back-to-indentation) | |
1984 (if com (vip-execute-com 'vip-goto-mark-and-skip-white nil com))) | |
1985 (t (error "")))) | |
1986 | |
1987 (defun vip-exchange-point-and-mark () | |
1988 (interactive) | |
1989 (exchange-point-and-mark) | |
1990 (back-to-indentation)) | |
1991 | |
1992 (defun vip-keyboard-quit () | |
1993 "Abort partially formed or running command." | |
1994 (interactive) | |
1995 (setq vip-use-register nil) | |
1996 (keyboard-quit)) | |
1997 | |
1998 (defun vip-ctl-c-equivalent (arg) | |
1999 "Emulate C-c in Emacs mode." | |
2000 (interactive "P") | |
2001 (vip-ctl-key-equivalent "\C-c" arg)) | |
2002 | |
2003 (defun vip-ctl-x-equivalent (arg) | |
2004 "Emulate C-x in Emacs mode." | |
2005 (interactive "P") | |
2006 (vip-ctl-key-equivalent "\C-x" arg)) | |
2007 | |
2008 (defun vip-ctl-key-equivalent (key arg) | |
2009 (let ((char (read-char))) | |
2010 (if (and (<= ?A char) (<= char ?Z)) | |
2011 (setq char (- char (- ?A ?\C-a)))) | |
3519
093c4dc7e884
(vip-ctl-key-equivalent): Use vip-escape-to-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
2319
diff
changeset
|
2012 (vip-escape-to-emacs arg (list (aref key 0) char)))) |
11 | 2013 |
2014 ;; commands in insertion mode | |
2015 | |
2016 (defun vip-delete-backward-word (arg) | |
2017 "Delete previous word." | |
2018 (interactive "p") | |
2019 (save-excursion | |
2020 (set-mark (point)) | |
2021 (backward-word arg) | |
2022 (delete-region (point) (mark)))) | |
2023 | |
2024 | |
2025 ;; implement ex commands | |
2026 | |
2027 (defvar ex-token-type nil | |
2028 "type of token. if non-nil, gives type of address. if nil, it | |
2029 is a command.") | |
2030 | |
2031 (defvar ex-token nil | |
2032 "value of token.") | |
2033 | |
2034 (defvar ex-addresses nil | |
2035 "list of ex addresses") | |
2036 | |
2037 (defvar ex-flag nil | |
2038 "flag for ex flag") | |
2039 | |
2040 (defvar ex-buffer nil | |
2041 "name of ex buffer") | |
2042 | |
2043 (defvar ex-count nil | |
2044 "value of ex count") | |
2045 | |
2046 (defvar ex-g-flag nil | |
2047 "flag for global command") | |
2048 | |
2049 (defvar ex-g-variant nil | |
2050 "if t global command is executed on lines not matching ex-g-pat") | |
2051 | |
2052 (defvar ex-reg-exp nil | |
2053 "save reg-exp used in substitute") | |
2054 | |
2055 (defvar ex-repl nil | |
2056 "replace pattern for substitute") | |
2057 | |
2058 (defvar ex-g-pat nil | |
2059 "pattern for global command") | |
2060 | |
2061 (defvar ex-map (make-sparse-keymap) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3519
diff
changeset
|
2062 "save commands for mapped keys") |
11 | 2063 |
2064 (defvar ex-tag nil | |
2065 "save ex tag") | |
2066 | |
2067 (defvar ex-file nil) | |
2068 | |
2069 (defvar ex-variant nil) | |
2070 | |
2071 (defvar ex-offset nil) | |
2072 | |
2073 (defvar ex-append nil) | |
2074 | |
2075 (defun vip-nil () | |
2076 (interactive) | |
2077 (error "")) | |
2078 | |
2079 (defun vip-looking-back (str) | |
2080 "returns t if looking back reg-exp STR before point." | |
2081 (and (save-excursion (re-search-backward str nil t)) | |
2082 (= (point) (match-end 0)))) | |
2083 | |
2084 (defun vip-check-sub (str) | |
2085 "check if ex-token is an initial segment of STR" | |
2086 (let ((length (length ex-token))) | |
2087 (if (and (<= length (length str)) | |
2088 (string= ex-token (substring str 0 length))) | |
2089 (setq ex-token str) | |
2090 (setq ex-token-type "non-command")))) | |
2091 | |
2092 (defun vip-get-ex-com-subr () | |
2093 "get a complete ex command" | |
2094 (set-mark (point)) | |
2095 (re-search-forward "[a-z][a-z]*") | |
2096 (setq ex-token-type "command") | |
2097 (setq ex-token (buffer-substring (point) (mark))) | |
2098 (exchange-point-and-mark) | |
2099 (cond ((looking-at "a") | |
2100 (cond ((looking-at "ab") (vip-check-sub "abbreviate")) | |
2101 ((looking-at "ar") (vip-check-sub "args")) | |
2102 (t (vip-check-sub "append")))) | |
2103 ((looking-at "[bh]") (setq ex-token-type "non-command")) | |
2104 ((looking-at "c") | |
2105 (if (looking-at "co") (vip-check-sub "copy") | |
2106 (vip-check-sub "change"))) | |
2107 ((looking-at "d") (vip-check-sub "delete")) | |
2108 ((looking-at "e") | |
2109 (if (looking-at "ex") (vip-check-sub "ex") | |
2110 (vip-check-sub "edit"))) | |
2111 ((looking-at "f") (vip-check-sub "file")) | |
2112 ((looking-at "g") (vip-check-sub "global")) | |
2113 ((looking-at "i") (vip-check-sub "insert")) | |
2114 ((looking-at "j") (vip-check-sub "join")) | |
2115 ((looking-at "l") (vip-check-sub "list")) | |
2116 ((looking-at "m") | |
2117 (cond ((looking-at "map") (vip-check-sub "map")) | |
2118 ((looking-at "mar") (vip-check-sub "mark")) | |
2119 (t (vip-check-sub "move")))) | |
2120 ((looking-at "n") | |
2121 (if (looking-at "nu") (vip-check-sub "number") | |
2122 (vip-check-sub "next"))) | |
2123 ((looking-at "o") (vip-check-sub "open")) | |
2124 ((looking-at "p") | |
2125 (cond ((looking-at "pre") (vip-check-sub "preserve")) | |
2126 ((looking-at "pu") (vip-check-sub "put")) | |
2127 (t (vip-check-sub "print")))) | |
2128 ((looking-at "q") (vip-check-sub "quit")) | |
2129 ((looking-at "r") | |
2130 (cond ((looking-at "rec") (vip-check-sub "recover")) | |
2131 ((looking-at "rew") (vip-check-sub "rewind")) | |
2132 (t (vip-check-sub "read")))) | |
2133 ((looking-at "s") | |
2134 (cond ((looking-at "se") (vip-check-sub "set")) | |
2135 ((looking-at "sh") (vip-check-sub "shell")) | |
2136 ((looking-at "so") (vip-check-sub "source")) | |
2137 ((looking-at "st") (vip-check-sub "stop")) | |
2138 (t (vip-check-sub "substitute")))) | |
2139 ((looking-at "t") | |
2140 (if (looking-at "ta") (vip-check-sub "tag") | |
2141 (vip-check-sub "t"))) | |
2142 ((looking-at "u") | |
2143 (cond ((looking-at "una") (vip-check-sub "unabbreviate")) | |
2144 ((looking-at "unm") (vip-check-sub "unmap")) | |
2145 (t (vip-check-sub "undo")))) | |
2146 ((looking-at "v") | |
2147 (cond ((looking-at "ve") (vip-check-sub "version")) | |
2148 ((looking-at "vi") (vip-check-sub "visual")) | |
2149 (t (vip-check-sub "v")))) | |
2150 ((looking-at "w") | |
2151 (if (looking-at "wq") (vip-check-sub "wq") | |
2152 (vip-check-sub "write"))) | |
2153 ((looking-at "x") (vip-check-sub "xit")) | |
2154 ((looking-at "y") (vip-check-sub "yank")) | |
2155 ((looking-at "z") (vip-check-sub "z"))) | |
2156 (exchange-point-and-mark)) | |
2157 | |
2158 (defun vip-get-ex-token () | |
2159 "get an ex-token which is either an address or a command. | |
2160 a token has type \(command, address, end-mark\) and value." | |
2161 (save-window-excursion | |
2162 (set-buffer " *ex-working-space*") | |
2163 (skip-chars-forward " \t") | |
2164 (cond ((looking-at "[k#]") | |
2165 (setq ex-token-type "command") | |
2166 (setq ex-token (char-to-string (following-char))) | |
2167 (forward-char 1)) | |
2168 ((looking-at "[a-z]") (vip-get-ex-com-subr)) | |
2169 ((looking-at "\\.") | |
2170 (forward-char 1) | |
2171 (setq ex-token-type "dot")) | |
2172 ((looking-at "[0-9]") | |
2173 (set-mark (point)) | |
2174 (re-search-forward "[0-9]*") | |
2175 (setq ex-token-type | |
2176 (cond ((string= ex-token-type "plus") "add-number") | |
2177 ((string= ex-token-type "minus") "sub-number") | |
2178 (t "abs-number"))) | |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
60914
diff
changeset
|
2179 (setq ex-token (string-to-number (buffer-substring (point) (mark))))) |
11 | 2180 ((looking-at "\\$") |
2181 (forward-char 1) | |
2182 (setq ex-token-type "end")) | |
2183 ((looking-at "%") | |
2184 (forward-char 1) | |
2185 (setq ex-token-type "whole")) | |
2186 ((looking-at "+") | |
2187 (cond ((or (looking-at "+[-+]") (looking-at "+[\n|]")) | |
2188 (forward-char 1) | |
2189 (insert "1") | |
2190 (backward-char 1) | |
2191 (setq ex-token-type "plus")) | |
2192 ((looking-at "+[0-9]") | |
2193 (forward-char 1) | |
2194 (setq ex-token-type "plus")) | |
2195 (t | |
2196 (error "Badly formed address")))) | |
2197 ((looking-at "-") | |
2198 (cond ((or (looking-at "-[-+]") (looking-at "-[\n|]")) | |
2199 (forward-char 1) | |
2200 (insert "1") | |
2201 (backward-char 1) | |
2202 (setq ex-token-type "minus")) | |
2203 ((looking-at "-[0-9]") | |
2204 (forward-char 1) | |
2205 (setq ex-token-type "minus")) | |
2206 (t | |
2207 (error "Badly formed address")))) | |
2208 ((looking-at "/") | |
2209 (forward-char 1) | |
2210 (set-mark (point)) | |
2211 (let ((cont t)) | |
2212 (while (and (not (eolp)) cont) | |
2213 ;;(re-search-forward "[^/]*/") | |
2214 (re-search-forward "[^/]*\\(/\\|\n\\)") | |
2215 (if (not (vip-looking-back "[^\\\\]\\(\\\\\\\\\\)*\\\\/")) | |
2216 (setq cont nil)))) | |
2217 (backward-char 1) | |
2218 (setq ex-token (buffer-substring (point) (mark))) | |
2219 (if (looking-at "/") (forward-char 1)) | |
2220 (setq ex-token-type "search-forward")) | |
2221 ((looking-at "\\?") | |
2222 (forward-char 1) | |
2223 (set-mark (point)) | |
2224 (let ((cont t)) | |
2225 (while (and (not (eolp)) cont) | |
2226 ;;(re-search-forward "[^\\?]*\\?") | |
2227 (re-search-forward "[^\\?]*\\(\\?\\|\n\\)") | |
2228 (if (not (vip-looking-back "[^\\\\]\\(\\\\\\\\\\)*\\\\\\?")) | |
2229 (setq cont nil)) | |
2230 (backward-char 1) | |
2231 (if (not (looking-at "\n")) (forward-char 1)))) | |
2232 (setq ex-token-type "search-backward") | |
2233 (setq ex-token (buffer-substring (1- (point)) (mark)))) | |
2234 ((looking-at ",") | |
2235 (forward-char 1) | |
2236 (setq ex-token-type "comma")) | |
2237 ((looking-at ";") | |
2238 (forward-char 1) | |
2239 (setq ex-token-type "semi-colon")) | |
2240 ((looking-at "[!=><&~]") | |
2241 (setq ex-token-type "command") | |
2242 (setq ex-token (char-to-string (following-char))) | |
2243 (forward-char 1)) | |
2244 ((looking-at "'") | |
2245 (setq ex-token-type "goto-mark") | |
2246 (forward-char 1) | |
2247 (cond ((looking-at "'") (setq ex-token nil)) | |
2248 ((looking-at "[a-z]") (setq ex-token (following-char))) | |
2249 (t (error "Marks are ' and a-z"))) | |
2250 (forward-char 1)) | |
2251 ((looking-at "\n") | |
2252 (setq ex-token-type "end-mark") | |
2253 (setq ex-token "goto")) | |
2254 (t | |
60914
62dc372efbe1
* emulation/vip.el: Replace `illegal' with `invalid'.
Werner LEMBERG <wl@gnu.org>
parents:
52401
diff
changeset
|
2255 (error "invalid token"))))) |
11 | 2256 |
2257 (defun vip-ex (&optional string) | |
2258 "ex commands within VIP." | |
2259 (interactive) | |
2260 (or string | |
2261 (setq ex-g-flag nil | |
2262 ex-g-variant nil)) | |
2263 (let ((com-str (or string (vip-read-string ":"))) | |
2264 (address nil) (cont t) (dot (point))) | |
2265 (save-window-excursion | |
2266 (set-buffer (get-buffer-create " *ex-working-space*")) | |
2267 (delete-region (point-min) (point-max)) | |
2268 (insert com-str "\n") | |
2269 (goto-char (point-min))) | |
2270 (setq ex-token-type "") | |
2271 (setq ex-addresses nil) | |
2272 (while cont | |
2273 (vip-get-ex-token) | |
2274 (cond ((or (string= ex-token-type "command") | |
2275 (string= ex-token-type "end-mark")) | |
2276 (if address (setq ex-addresses (cons address ex-addresses))) | |
2277 (cond ((string= ex-token "global") | |
2278 (ex-global nil) | |
2279 (setq cont nil)) | |
2280 ((string= ex-token "v") | |
2281 (ex-global t) | |
2282 (setq cont nil)) | |
2283 (t | |
2284 (vip-execute-ex-command) | |
2285 (save-window-excursion | |
2286 (set-buffer " *ex-working-space*") | |
2287 (skip-chars-forward " \t") | |
2288 (cond ((looking-at "|") | |
2289 (forward-char 1)) | |
2290 ((looking-at "\n") | |
2291 (setq cont nil)) | |
2292 (t (error "Extra character at end of a command"))))))) | |
2293 ((string= ex-token-type "non-command") | |
63489
c57eafee8b09
(vip-ex): Don't use `format' on `error' arguments.
Juanma Barranquero <lekktu@gmail.com>
parents:
63267
diff
changeset
|
2294 (error "%s: Not an editor command" ex-token)) |
11 | 2295 ((string= ex-token-type "whole") |
2296 (setq ex-addresses | |
2297 (cons (point-max) (cons (point-min) ex-addresses)))) | |
2298 ((string= ex-token-type "comma") | |
2299 (setq ex-addresses | |
2300 (cons (if (null address) (point) address) ex-addresses))) | |
2301 ((string= ex-token-type "semi-colon") | |
2302 (if address (setq dot address)) | |
2303 (setq ex-addresses | |
2304 (cons (if (null address) (point) address) ex-addresses))) | |
2305 (t (let ((ans (vip-get-ex-address-subr address dot))) | |
2306 (if ans (setq address ans)))))))) | |
2307 | |
2308 (defun vip-get-ex-pat () | |
2309 "get a regular expression and set ex-variant if found" | |
2310 (save-window-excursion | |
2311 (set-buffer " *ex-working-space*") | |
2312 (skip-chars-forward " \t") | |
2313 (if (looking-at "!") | |
2314 (progn | |
2315 (setq ex-g-variant (not ex-g-variant) | |
2316 ex-g-flag (not ex-g-flag)) | |
2317 (forward-char 1) | |
2318 (skip-chars-forward " \t"))) | |
2319 (if (looking-at "/") | |
2320 (progn | |
2321 (forward-char 1) | |
2322 (set-mark (point)) | |
2323 (let ((cont t)) | |
2324 (while (and (not (eolp)) cont) | |
2325 (re-search-forward "[^/]*\\(/\\|\n\\)") | |
2326 ;;(re-search-forward "[^/]*/") | |
2327 (if (not (vip-looking-back "[^\\\\]\\(\\\\\\\\\\)*\\\\/")) | |
2328 (setq cont nil)))) | |
2329 (setq ex-token | |
2330 (if (= (mark) (point)) "" | |
2331 (buffer-substring (1- (point)) (mark)))) | |
2332 (backward-char 1)) | |
2333 (setq ex-token nil)))) | |
2334 | |
2335 (defun vip-get-ex-command () | |
2336 "get an ex command" | |
2337 (save-window-excursion | |
2338 (set-buffer " *ex-working-space*") | |
2339 (if (looking-at "/") (forward-char 1)) | |
2340 (skip-chars-forward " \t") | |
2341 (cond ((looking-at "[a-z]") | |
2342 (vip-get-ex-com-subr) | |
2343 (if (string= ex-token-type "non-command") | |
2344 (error "%s: not an editor command" ex-token))) | |
2345 ((looking-at "[!=><&~]") | |
2346 (setq ex-token (char-to-string (following-char))) | |
2347 (forward-char 1)) | |
2348 (t (error "Could not find an ex command"))))) | |
2349 | |
2350 (defun vip-get-ex-opt-gc () | |
2351 "get an ex option g or c" | |
2352 (save-window-excursion | |
2353 (set-buffer " *ex-working-space*") | |
2354 (if (looking-at "/") (forward-char 1)) | |
2355 (skip-chars-forward " \t") | |
2356 (cond ((looking-at "g") | |
2357 (setq ex-token "g") | |
2358 (forward-char 1) | |
2359 t) | |
2360 ((looking-at "c") | |
2361 (setq ex-token "c") | |
2362 (forward-char 1) | |
2363 t) | |
2364 (t nil)))) | |
2365 | |
2366 (defun vip-default-ex-addresses (&optional whole-flag) | |
2367 "compute default addresses. whole-flag means whole buffer." | |
2368 (cond ((null ex-addresses) | |
2369 (setq ex-addresses | |
2370 (if whole-flag | |
2371 (cons (point-max) (cons (point-min) nil)) | |
2372 (cons (point) (cons (point) nil))))) | |
2373 ((null (cdr ex-addresses)) | |
2374 (setq ex-addresses | |
2375 (cons (car ex-addresses) ex-addresses))))) | |
2376 | |
2377 (defun vip-get-ex-address () | |
2378 "get an ex-address as a marker and set ex-flag if a flag is found" | |
2379 (let ((address (point-marker)) (cont t)) | |
2380 (setq ex-token "") | |
2381 (setq ex-flag nil) | |
2382 (while cont | |
2383 (vip-get-ex-token) | |
2384 (cond ((string= ex-token-type "command") | |
2385 (if (or (string= ex-token "print") (string= ex-token "list") | |
2386 (string= ex-token "#")) | |
2387 (progn | |
2388 (setq ex-flag t) | |
2389 (setq cont nil)) | |
2390 (error "address expected"))) | |
2391 ((string= ex-token-type "end-mark") | |
2392 (setq cont nil)) | |
2393 ((string= ex-token-type "whole") | |
2394 (error "a trailing address is expected")) | |
2395 ((string= ex-token-type "comma") | |
2396 (error "Extra characters after an address")) | |
2397 (t (let ((ans (vip-get-ex-address-subr address (point-marker)))) | |
2398 (if ans (setq address ans)))))) | |
2399 address)) | |
2400 | |
2401 (defun vip-get-ex-address-subr (old-address dot) | |
2402 "returns an address as a point" | |
2403 (let ((address nil)) | |
2404 (if (null old-address) (setq old-address dot)) | |
2405 (cond ((string= ex-token-type "dot") | |
2406 (setq address dot)) | |
2407 ((string= ex-token-type "add-number") | |
2408 (save-excursion | |
2409 (goto-char old-address) | |
2410 (forward-line (if (= old-address 0) (1- ex-token) ex-token)) | |
2411 (setq address (point-marker)))) | |
2412 ((string= ex-token-type "sub-number") | |
2413 (save-excursion | |
2414 (goto-char old-address) | |
2415 (forward-line (- ex-token)) | |
2416 (setq address (point-marker)))) | |
2417 ((string= ex-token-type "abs-number") | |
2418 (save-excursion | |
2419 (goto-char (point-min)) | |
2420 (if (= ex-token 0) (setq address 0) | |
2421 (forward-line (1- ex-token)) | |
2422 (setq address (point-marker))))) | |
2423 ((string= ex-token-type "end") | |
2424 (setq address (point-max-marker))) | |
2425 ((string= ex-token-type "plus") t);; do nothing | |
2426 ((string= ex-token-type "minus") t);; do nothing | |
2427 ((string= ex-token-type "search-forward") | |
2428 (save-excursion | |
2429 (ex-search-address t) | |
2430 (setq address (point-marker)))) | |
2431 ((string= ex-token-type "search-backward") | |
2432 (save-excursion | |
2433 (ex-search-address nil) | |
2434 (setq address (point-marker)))) | |
2435 ((string= ex-token-type "goto-mark") | |
2436 (save-excursion | |
2437 (if (null ex-token) | |
2438 (exchange-point-and-mark) | |
2439 (goto-char (register-to-point (- ex-token (- ?a ?\C-a))))) | |
2440 (setq address (point-marker))))) | |
2441 address)) | |
2442 | |
2443 (defun ex-search-address (forward) | |
2444 "search pattern and set address" | |
2445 (if (string= ex-token "") | |
2446 (if (null vip-s-string) (error "No previous search string") | |
2447 (setq ex-token vip-s-string)) | |
2448 (setq vip-s-string ex-token)) | |
2449 (if forward | |
2450 (progn | |
2451 (forward-line 1) | |
2452 (re-search-forward ex-token)) | |
2453 (forward-line -1) | |
2454 (re-search-backward ex-token))) | |
2455 | |
2456 (defun vip-get-ex-buffer () | |
2457 "get a buffer name and set ex-count and ex-flag if found" | |
2458 (setq ex-buffer nil) | |
2459 (setq ex-count nil) | |
2460 (setq ex-flag nil) | |
2461 (save-window-excursion | |
2462 (set-buffer " *ex-working-space*") | |
2463 (skip-chars-forward " \t") | |
2464 (if (looking-at "[a-zA-Z]") | |
2465 (progn | |
2466 (setq ex-buffer (following-char)) | |
2467 (forward-char 1) | |
2468 (skip-chars-forward " \t"))) | |
2469 (if (looking-at "[0-9]") | |
2470 (progn | |
2471 (set-mark (point)) | |
2472 (re-search-forward "[0-9][0-9]*") | |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
60914
diff
changeset
|
2473 (setq ex-count (string-to-number (buffer-substring (point) (mark)))) |
11 | 2474 (skip-chars-forward " \t"))) |
2475 (if (looking-at "[pl#]") | |
2476 (progn | |
2477 (setq ex-flag t) | |
2478 (forward-char 1))) | |
2479 (if (not (looking-at "[\n|]")) | |
60914
62dc372efbe1
* emulation/vip.el: Replace `illegal' with `invalid'.
Werner LEMBERG <wl@gnu.org>
parents:
52401
diff
changeset
|
2480 (error "Invalid extra characters")))) |
11 | 2481 |
2482 (defun vip-get-ex-count () | |
2483 (setq ex-variant nil | |
2484 ex-count nil | |
2485 ex-flag nil) | |
2486 (save-window-excursion | |
2487 (set-buffer " *ex-working-space*") | |
2488 (skip-chars-forward " \t") | |
2489 (if (looking-at "!") | |
2490 (progn | |
2491 (setq ex-variant t) | |
2492 (forward-char 1))) | |
2493 (skip-chars-forward " \t") | |
2494 (if (looking-at "[0-9]") | |
2495 (progn | |
2496 (set-mark (point)) | |
2497 (re-search-forward "[0-9][0-9]*") | |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
60914
diff
changeset
|
2498 (setq ex-count (string-to-number (buffer-substring (point) (mark)))) |
11 | 2499 (skip-chars-forward " \t"))) |
2500 (if (looking-at "[pl#]") | |
2501 (progn | |
2502 (setq ex-flag t) | |
2503 (forward-char 1))) | |
2504 (if (not (looking-at "[\n|]")) | |
60914
62dc372efbe1
* emulation/vip.el: Replace `illegal' with `invalid'.
Werner LEMBERG <wl@gnu.org>
parents:
52401
diff
changeset
|
2505 (error "Invalid extra characters")))) |
11 | 2506 |
2507 (defun vip-get-ex-file () | |
2508 "get a file name and set ex-variant, ex-append and ex-offset if found" | |
2509 (setq ex-file nil | |
2510 ex-variant nil | |
2511 ex-append nil | |
2512 ex-offset nil) | |
2513 (save-window-excursion | |
2514 (set-buffer " *ex-working-space*") | |
2515 (skip-chars-forward " \t") | |
2516 (if (looking-at "!") | |
2517 (progn | |
2518 (setq ex-variant t) | |
2519 (forward-char 1) | |
2520 (skip-chars-forward " \t"))) | |
2521 (if (looking-at ">>") | |
2522 (progn | |
2523 (setq ex-append t | |
2524 ex-variant t) | |
2525 (forward-char 2) | |
2526 (skip-chars-forward " \t"))) | |
2527 (if (looking-at "+") | |
2528 (progn | |
2529 (forward-char 1) | |
2530 (set-mark (point)) | |
2531 (re-search-forward "[ \t\n]") | |
2532 (backward-char 1) | |
2533 (setq ex-offset (buffer-substring (point) (mark))) | |
2534 (forward-char 1) | |
2535 (skip-chars-forward " \t"))) | |
2536 (set-mark (point)) | |
2537 (re-search-forward "[ \t\n]") | |
2538 (backward-char 1) | |
2539 (setq ex-file (buffer-substring (point) (mark))))) | |
2540 | |
2541 (defun vip-execute-ex-command () | |
2542 "execute ex command using the value of addresses." | |
2543 (cond ((string= ex-token "goto") (ex-goto)) | |
2544 ((string= ex-token "copy") (ex-copy nil)) | |
2545 ((string= ex-token "delete") (ex-delete)) | |
2546 ((string= ex-token "edit") (ex-edit)) | |
2547 ((string= ex-token "file") (vip-info-on-file)) | |
2548 ;((string= ex-token "global") (ex-global nil)) | |
2549 ((string= ex-token "join") (ex-line "join")) | |
2550 ((string= ex-token "k") (ex-mark)) | |
2551 ((string= ex-token "mark") (ex-mark)) | |
2552 ((string= ex-token "map") (ex-map)) | |
2553 ((string= ex-token "move") (ex-copy t)) | |
2554 ((string= ex-token "put") (ex-put)) | |
2555 ((string= ex-token "quit") (ex-quit)) | |
2556 ((string= ex-token "read") (ex-read)) | |
2557 ((string= ex-token "set") (ex-set)) | |
2558 ((string= ex-token "shell") (ex-shell)) | |
2559 ((string= ex-token "substitute") (ex-substitute)) | |
2560 ((string= ex-token "stop") (suspend-emacs)) | |
2561 ((string= ex-token "t") (ex-copy nil)) | |
2562 ((string= ex-token "tag") (ex-tag)) | |
2563 ((string= ex-token "undo") (vip-undo)) | |
2564 ((string= ex-token "unmap") (ex-unmap)) | |
2565 ;((string= ex-token "v") (ex-global t)) | |
2566 ((string= ex-token "version") (vip-version)) | |
2567 ((string= ex-token "visual") (ex-edit)) | |
2568 ((string= ex-token "write") (ex-write nil)) | |
2569 ((string= ex-token "wq") (ex-write t)) | |
2570 ((string= ex-token "yank") (ex-yank)) | |
2571 ((string= ex-token "!") (ex-command)) | |
2572 ((string= ex-token "=") (ex-line-no)) | |
2573 ((string= ex-token ">") (ex-line "right")) | |
2574 ((string= ex-token "<") (ex-line "left")) | |
2575 ((string= ex-token "&") (ex-substitute t)) | |
2576 ((string= ex-token "~") (ex-substitute t t)) | |
2577 ((or (string= ex-token "append") | |
2578 (string= ex-token "args") | |
2579 (string= ex-token "change") | |
2580 (string= ex-token "insert") | |
2581 (string= ex-token "open") | |
2582 ) | |
14431
d1b9ec5dc9fc
(vip-execute-ex-command, ex-write): Fix error format string.
Karl Heuer <kwzh@gnu.org>
parents:
14345
diff
changeset
|
2583 (error "%s: no such command from VIP" ex-token)) |
11 | 2584 ((or (string= ex-token "abbreviate") |
2585 (string= ex-token "list") | |
2586 (string= ex-token "next") | |
2587 (string= ex-token "print") | |
2588 (string= ex-token "preserve") | |
2589 (string= ex-token "recover") | |
2590 (string= ex-token "rewind") | |
2591 (string= ex-token "source") | |
2592 (string= ex-token "unabbreviate") | |
2593 (string= ex-token "xit") | |
2594 (string= ex-token "z") | |
2595 ) | |
14431
d1b9ec5dc9fc
(vip-execute-ex-command, ex-write): Fix error format string.
Karl Heuer <kwzh@gnu.org>
parents:
14345
diff
changeset
|
2596 (error "%s: not implemented in VIP" ex-token)) |
d1b9ec5dc9fc
(vip-execute-ex-command, ex-write): Fix error format string.
Karl Heuer <kwzh@gnu.org>
parents:
14345
diff
changeset
|
2597 (t (error "%s: Not an editor command" ex-token)))) |
11 | 2598 |
2599 (defun ex-goto () | |
2600 "ex goto command" | |
2601 (if (null ex-addresses) | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2602 (setq ex-addresses (cons (point) nil))) |
11 | 2603 (push-mark (point)) |
2604 (goto-char (car ex-addresses)) | |
2605 (beginning-of-line)) | |
2606 | |
2607 (defun ex-copy (del-flag) | |
2608 "ex copy and move command. DEL-FLAG means delete." | |
2609 (vip-default-ex-addresses) | |
2610 (let ((address (vip-get-ex-address)) | |
2611 (end (car ex-addresses)) (beg (car (cdr ex-addresses)))) | |
2612 (goto-char end) | |
2613 (save-excursion | |
2614 (set-mark beg) | |
2615 (vip-enlarge-region (mark) (point)) | |
2616 (if del-flag (kill-region (point) (mark)) | |
2617 (copy-region-as-kill (point) (mark))) | |
2618 (if ex-flag | |
2619 (progn | |
2620 (with-output-to-temp-buffer "*copy text*" | |
2621 (princ | |
2622 (if (or del-flag ex-g-flag ex-g-variant) | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2623 (current-kill 0) |
11 | 2624 (buffer-substring (point) (mark))))) |
2625 (condition-case nil | |
2626 (progn | |
2627 (vip-read-string "[Hit return to continue] ") | |
2628 (save-excursion (kill-buffer "*copy text*"))) | |
2629 (quit | |
2630 (save-excursion (kill-buffer "*copy text*")) | |
2631 (signal 'quit nil)))))) | |
2632 (if (= address 0) | |
2633 (goto-char (point-min)) | |
2634 (goto-char address) | |
2635 (forward-line 1)) | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2636 (insert (current-kill 0)))) |
11 | 2637 |
2638 (defun ex-delete () | |
2639 "ex delete" | |
2640 (vip-default-ex-addresses) | |
2641 (vip-get-ex-buffer) | |
2642 (let ((end (car ex-addresses)) (beg (car (cdr ex-addresses)))) | |
2643 (if (> beg end) (error "First address exceeds second")) | |
2644 (save-excursion | |
2645 (vip-enlarge-region beg end) | |
2646 (exchange-point-and-mark) | |
2647 (if ex-count | |
2648 (progn | |
2649 (set-mark (point)) | |
2650 (forward-line (1- ex-count))) | |
2651 (set-mark end)) | |
2652 (vip-enlarge-region (point) (mark)) | |
2653 (if ex-flag | |
2654 ;; show text to be deleted and ask for confirmation | |
2655 (progn | |
2656 (with-output-to-temp-buffer " *delete text*" | |
2657 (princ (buffer-substring (point) (mark)))) | |
2658 (condition-case conditions | |
2659 (vip-read-string "[Hit return to continue] ") | |
2660 (quit | |
2661 (save-excursion (kill-buffer " *delete text*")) | |
2662 (error ""))) | |
2663 (save-excursion (kill-buffer " *delete text*"))) | |
2664 (if ex-buffer | |
2665 (if (and (<= ?A ex-buffer) (<= ex-buffer ?Z)) | |
2666 (vip-append-to-register | |
1625
376427dea90a
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
1577
diff
changeset
|
2667 (+ ex-buffer 32) (point) (mark)) |
11 | 2668 (copy-to-register ex-buffer (point) (mark) nil))) |
2669 (delete-region (point) (mark)))))) | |
2670 | |
2671 (defun ex-edit () | |
2672 "ex-edit" | |
2673 (vip-get-ex-file) | |
2674 (if (and (not ex-variant) (buffer-modified-p) buffer-file-name) | |
2675 (error "No write since last change \(:e! overrides\)")) | |
2676 (vip-change-mode-to-emacs) | |
2677 (set-buffer | |
2678 (find-file-noselect (concat default-directory ex-file))) | |
2679 (vip-change-mode-to-vi) | |
2680 (goto-char (point-min)) | |
2681 (if ex-offset | |
2682 (progn | |
2683 (save-window-excursion | |
2684 (set-buffer " *ex-working-space*") | |
2685 (delete-region (point-min) (point-max)) | |
2686 (insert ex-offset "\n") | |
2687 (goto-char (point-min))) | |
2688 (goto-char (vip-get-ex-address)) | |
2689 (beginning-of-line)))) | |
2690 | |
2691 (defun ex-global (variant) | |
2692 "ex global command" | |
2693 (if (or ex-g-flag ex-g-variant) | |
2694 (error "Global within global not allowed") | |
2695 (if variant | |
2696 (setq ex-g-flag nil | |
2697 ex-g-variant t) | |
2698 (setq ex-g-flag t | |
2699 ex-g-variant nil))) | |
2700 (vip-get-ex-pat) | |
2701 (if (null ex-token) | |
2702 (error "Missing regular expression for global command")) | |
2703 (if (string= ex-token "") | |
2704 (if (null vip-s-string) (error "No previous search string") | |
2705 (setq ex-g-pat vip-s-string)) | |
2706 (setq ex-g-pat ex-token | |
2707 vip-s-string ex-token)) | |
2708 (if (null ex-addresses) | |
2709 (setq ex-addresses (list (point-max) (point-min)))) | |
2710 (let ((marks nil) (mark-count 0) | |
2711 com-str (end (car ex-addresses)) (beg (car (cdr ex-addresses)))) | |
2712 (if (> beg end) (error "First address exceeds second")) | |
2713 (save-excursion | |
2714 (vip-enlarge-region beg end) | |
2715 (exchange-point-and-mark) | |
2716 (let ((cont t) (limit (point-marker))) | |
2717 (exchange-point-and-mark) | |
2718 ;; skip the last line if empty | |
2719 (beginning-of-line) | |
2720 (if (and (eobp) (not (bobp))) (backward-char 1)) | |
2721 (while (and cont (not (bobp)) (>= (point) limit)) | |
2722 (beginning-of-line) | |
2723 (set-mark (point)) | |
2724 (end-of-line) | |
2725 (let ((found (re-search-backward ex-g-pat (mark) t))) | |
2726 (if (or (and ex-g-flag found) | |
2727 (and ex-g-variant (not found))) | |
2728 (progn | |
2729 (end-of-line) | |
2730 (setq mark-count (1+ mark-count)) | |
2731 (setq marks (cons (point-marker) marks))))) | |
2732 (beginning-of-line) | |
2733 (if (bobp) (setq cont nil) | |
2734 (forward-line -1) | |
2735 (end-of-line))))) | |
2736 (save-window-excursion | |
2737 (set-buffer " *ex-working-space*") | |
2738 (setq com-str (buffer-substring (1+ (point)) (1- (point-max))))) | |
2739 (while marks | |
2740 (goto-char (car marks)) | |
2741 ; report progress of execution on a slow machine. | |
2742 ;(message "Executing global command...") | |
2743 ;(if (zerop (% mark-count 10)) | |
2744 ;(message "Executing global command...%d" mark-count)) | |
2745 (vip-ex com-str) | |
2746 (setq mark-count (1- mark-count)) | |
2747 (setq marks (cdr marks))))) | |
2748 ;(message "Executing global command...done"))) | |
2749 | |
2750 (defun ex-line (com) | |
2751 "ex line commands. COM is join, shift-right or shift-left." | |
2752 (vip-default-ex-addresses) | |
2753 (vip-get-ex-count) | |
2754 (let ((end (car ex-addresses)) (beg (car (cdr ex-addresses))) point) | |
2755 (if (> beg end) (error "First address exceeds second")) | |
2756 (save-excursion | |
2757 (vip-enlarge-region beg end) | |
2758 (exchange-point-and-mark) | |
2759 (if ex-count | |
2760 (progn | |
2761 (set-mark (point)) | |
2762 (forward-line ex-count))) | |
2763 (if ex-flag | |
2764 ;; show text to be joined and ask for confirmation | |
2765 (progn | |
2766 (with-output-to-temp-buffer " *text*" | |
2767 (princ (buffer-substring (point) (mark)))) | |
2768 (condition-case conditions | |
2769 (progn | |
2770 (vip-read-string "[Hit return to continue] ") | |
2771 (ex-line-subr com (point) (mark))) | |
2772 (quit | |
2773 (ding))) | |
2774 (save-excursion (kill-buffer " *text*"))) | |
2775 (ex-line-subr com (point) (mark))) | |
2776 (setq point (point))) | |
2777 (goto-char (1- point)) | |
2778 (beginning-of-line))) | |
2779 | |
2780 (defun ex-line-subr (com beg end) | |
2781 (cond ((string= com "join") | |
2782 (goto-char (min beg end)) | |
2783 (while (and (not (eobp)) (< (point) (max beg end))) | |
2784 (end-of-line) | |
2785 (if (and (<= (point) (max beg end)) (not (eobp))) | |
2786 (progn | |
2787 (forward-line 1) | |
2788 (delete-region (point) (1- (point))) | |
2789 (if (not ex-variant) (fixup-whitespace)))))) | |
2790 ((or (string= com "right") (string= com "left")) | |
2791 (indent-rigidly | |
2792 (min beg end) (max beg end) | |
2793 (if (string= com "right") vip-shift-width (- vip-shift-width))) | |
2794 (goto-char (max beg end)) | |
2795 (end-of-line) | |
2796 (forward-char 1)))) | |
2797 | |
2798 (defun ex-mark () | |
2799 "ex mark" | |
2800 (let (char) | |
2801 (if (null ex-addresses) | |
2802 (setq ex-addresses | |
2803 (cons (point) nil))) | |
2804 (save-window-excursion | |
2805 (set-buffer " *ex-working-space*") | |
2806 (skip-chars-forward " \t") | |
2807 (if (looking-at "[a-z]") | |
2808 (progn | |
2809 (setq char (following-char)) | |
2810 (forward-char 1) | |
2811 (skip-chars-forward " \t") | |
2812 (if (not (looking-at "[\n|]")) | |
2813 (error "Extra characters at end of \"k\" command"))) | |
2814 (if (looking-at "[\n|]") | |
2815 (error "\"k\" requires a following letter") | |
2816 (error "Mark must specify a letter")))) | |
2817 (save-excursion | |
2818 (goto-char (car ex-addresses)) | |
1625
376427dea90a
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
1577
diff
changeset
|
2819 (point-to-register (- char (- ?a ?\C-a)) nil)))) |
11 | 2820 |
2821 (defun ex-map () | |
2822 "ex map" | |
2823 (let (char string) | |
2824 (save-window-excursion | |
2825 (set-buffer " *ex-working-space*") | |
2826 (skip-chars-forward " \t") | |
2827 (setq char (char-to-string (following-char))) | |
2828 (forward-char 1) | |
2829 (skip-chars-forward " \t") | |
2830 (if (looking-at "[\n|]") (error "Missing rhs")) | |
2831 (set-mark (point)) | |
63943
500636572e8a
(vip-replace-string, ex-map, ex-read): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
63489
diff
changeset
|
2832 (with-no-warnings |
500636572e8a
(vip-replace-string, ex-map, ex-read): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
63489
diff
changeset
|
2833 (end-of-buffer)) |
11 | 2834 (backward-char 1) |
2835 (setq string (buffer-substring (mark) (point)))) | |
2836 (if (not (lookup-key ex-map char)) | |
2837 (define-key ex-map char | |
2838 (or (lookup-key vip-mode-map char) 'vip-nil))) | |
2839 (define-key vip-mode-map char | |
2840 (eval | |
2841 (list 'quote | |
2842 (cons 'lambda | |
2843 (list '(count) | |
2844 '(interactive "p") | |
2845 (list 'execute-kbd-macro string 'count)))))))) | |
2846 | |
2847 (defun ex-unmap () | |
2848 "ex unmap" | |
2849 (let (char) | |
2850 (save-window-excursion | |
2851 (set-buffer " *ex-working-space*") | |
2852 (skip-chars-forward " \t") | |
2853 (setq char (char-to-string (following-char))) | |
2854 (forward-char 1) | |
2855 (skip-chars-forward " \t") | |
2856 (if (not (looking-at "[\n|]")) (error "Macro must be a character"))) | |
2857 (if (not (lookup-key ex-map char)) | |
2858 (error "That macro wasn't mapped")) | |
2859 (define-key vip-mode-map char (lookup-key ex-map char)) | |
2860 (define-key ex-map char nil))) | |
2861 | |
2862 (defun ex-put () | |
2863 "ex put" | |
2864 (let ((point (if (null ex-addresses) (point) (car ex-addresses)))) | |
2865 (vip-get-ex-buffer) | |
2866 (setq vip-use-register ex-buffer) | |
2867 (goto-char point) | |
2868 (if (= point 0) (vip-Put-back 1) (vip-put-back 1)))) | |
2869 | |
2870 (defun ex-quit () | |
2871 "ex quit" | |
2872 (let (char) | |
2873 (save-window-excursion | |
2874 (set-buffer " *ex-working-space*") | |
2875 (skip-chars-forward " \t") | |
2876 (setq char (following-char))) | |
2877 (if (= char ?!) (kill-emacs t) (save-buffers-kill-emacs)))) | |
2878 | |
2879 (defun ex-read () | |
2880 "ex read" | |
2881 (let ((point (if (null ex-addresses) (point) (car ex-addresses))) | |
2882 (variant nil) command file) | |
2883 (goto-char point) | |
85825
13163bbed0bf
* progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
2884 (if (not (= point 0)) (with-no-warnings (next-line 1))) |
11 | 2885 (beginning-of-line) |
2886 (save-window-excursion | |
2887 (set-buffer " *ex-working-space*") | |
2888 (skip-chars-forward " \t") | |
2889 (if (looking-at "!") | |
2890 (progn | |
2891 (setq variant t) | |
2892 (forward-char 1) | |
2893 (skip-chars-forward " \t") | |
2894 (set-mark (point)) | |
2895 (end-of-line) | |
2896 (setq command (buffer-substring (mark) (point)))) | |
2897 (set-mark (point)) | |
2898 (re-search-forward "[ \t\n]") | |
2899 (backward-char 1) | |
2900 (setq file (buffer-substring (point) (mark))))) | |
2901 (if variant | |
2902 (shell-command command t) | |
63943
500636572e8a
(vip-replace-string, ex-map, ex-read): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
63489
diff
changeset
|
2903 (with-no-warnings |
500636572e8a
(vip-replace-string, ex-map, ex-read): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
63489
diff
changeset
|
2904 (insert-file file))))) |
11 | 2905 |
2906 (defun ex-set () | |
2907 (eval (list 'setq | |
2908 (read-variable "Variable: ") | |
2909 (eval (read-minibuffer "Value: "))))) | |
2910 | |
2911 (defun ex-shell () | |
2912 "ex shell" | |
2913 (vip-change-mode-to-emacs) | |
2914 (shell)) | |
2915 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
2916 (defun ex-substitute (&optional repeat r-flag) |
1577 | 2917 "ex substitute. |
2918 If REPEAT use previous reg-exp which is ex-reg-exp or | |
11 | 2919 vip-s-string" |
2920 (let (pat repl (opt-g nil) (opt-c nil) (matched-pos nil)) | |
2921 (if repeat (setq ex-token nil) (vip-get-ex-pat)) | |
2922 (if (null ex-token) | |
2923 (setq pat (if r-flag vip-s-string ex-reg-exp) | |
2924 repl ex-repl) | |
2925 (setq pat (if (string= ex-token "") vip-s-string ex-token)) | |
2926 (setq vip-s-string pat | |
2927 ex-reg-exp pat) | |
2928 (vip-get-ex-pat) | |
2929 (if (null ex-token) | |
2930 (setq ex-token "" | |
2931 ex-repl "") | |
2932 (setq repl ex-token | |
2933 ex-repl ex-token))) | |
2934 (while (vip-get-ex-opt-gc) | |
2935 (if (string= ex-token "g") (setq opt-g t) (setq opt-c t))) | |
2936 (vip-get-ex-count) | |
2937 (if ex-count | |
2938 (save-excursion | |
2939 (if ex-addresses (goto-char (car ex-addresses))) | |
2940 (set-mark (point)) | |
2941 (forward-line (1- ex-count)) | |
2942 (setq ex-addresses (cons (point) (cons (mark) nil)))) | |
2943 (if (null ex-addresses) | |
2944 (setq ex-addresses (cons (point) (cons (point) nil))) | |
2945 (if (null (cdr ex-addresses)) | |
2946 (setq ex-addresses (cons (car ex-addresses) ex-addresses))))) | |
2947 ;(setq G opt-g) | |
2948 (let ((beg (car ex-addresses)) (end (car (cdr ex-addresses))) | |
2949 (cont t) eol-mark) | |
2950 (save-excursion | |
2951 (vip-enlarge-region beg end) | |
2952 (let ((limit (save-excursion | |
2953 (goto-char (max (point) (mark))) | |
2954 (point-marker)))) | |
2955 (goto-char (min (point) (mark))) | |
2956 (while (< (point) limit) | |
2957 (end-of-line) | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2958 (setq eol-mark (point-marker)) |
11 | 2959 (beginning-of-line) |
2960 (if opt-g | |
2961 (progn | |
2962 (while (and (not (eolp)) | |
2963 (re-search-forward pat eol-mark t)) | |
2964 (if (or (not opt-c) (y-or-n-p "Replace? ")) | |
2965 (progn | |
2966 (setq matched-pos (point)) | |
2967 (replace-match repl)))) | |
2968 (end-of-line) | |
2969 (forward-char)) | |
2970 (if (and (re-search-forward pat eol-mark t) | |
2971 (or (not opt-c) (y-or-n-p "Replace? "))) | |
2972 (progn | |
2973 (setq matched-pos (point)) | |
2974 (replace-match repl))) | |
2975 (end-of-line) | |
2976 (forward-char)))))) | |
2977 (if matched-pos (goto-char matched-pos)) | |
2978 (beginning-of-line) | |
2979 (if opt-c (message "done")))) | |
2980 | |
2981 (defun ex-tag () | |
2982 "ex tag" | |
2983 (let (tag) | |
2984 (save-window-excursion | |
2985 (set-buffer " *ex-working-space*") | |
2986 (skip-chars-forward " \t") | |
2987 (set-mark (point)) | |
2988 (skip-chars-forward "^ |\t\n") | |
2989 (setq tag (buffer-substring (mark) (point)))) | |
2990 (if (not (string= tag "")) (setq ex-tag tag)) | |
2991 (vip-change-mode-to-emacs) | |
2992 (condition-case conditions | |
2993 (progn | |
2994 (if (string= tag "") | |
2995 (find-tag ex-tag t) | |
2996 (find-tag-other-window ex-tag)) | |
2997 (vip-change-mode-to-vi)) | |
2998 (error | |
2999 (vip-change-mode-to-vi) | |
3000 (vip-message-conditions conditions))))) | |
3001 | |
3002 (defun ex-write (q-flag) | |
3003 "ex write" | |
3004 (vip-default-ex-addresses t) | |
3005 (vip-get-ex-file) | |
3006 (if (string= ex-file "") | |
3007 (progn | |
3008 (if (null buffer-file-name) | |
3009 (error "No file associated with this buffer")) | |
3010 (setq ex-file buffer-file-name)) | |
3011 (setq ex-file (expand-file-name ex-file))) | |
3012 (if (and (not (string= ex-file (buffer-file-name))) | |
3013 (file-exists-p ex-file) | |
3014 (not ex-variant)) | |
14431
d1b9ec5dc9fc
(vip-execute-ex-command, ex-write): Fix error format string.
Karl Heuer <kwzh@gnu.org>
parents:
14345
diff
changeset
|
3015 (error "\"%s\" File exists - use w! to override" ex-file)) |
11 | 3016 (let ((end (car ex-addresses)) (beg (car (cdr ex-addresses)))) |
3017 (if (> beg end) (error "First address exceeds second")) | |
3018 (save-excursion | |
3019 (vip-enlarge-region beg end) | |
3020 (write-region (point) (mark) ex-file ex-append t))) | |
3021 (if (null buffer-file-name) (setq buffer-file-name ex-file)) | |
3022 (if q-flag (save-buffers-kill-emacs))) | |
3023 | |
3024 (defun ex-yank () | |
3025 "ex yank" | |
3026 (vip-default-ex-addresses) | |
3027 (vip-get-ex-buffer) | |
3028 (let ((end (car ex-addresses)) (beg (car (cdr ex-addresses)))) | |
3029 (if (> beg end) (error "First address exceeds second")) | |
3030 (save-excursion | |
3031 (vip-enlarge-region beg end) | |
3032 (exchange-point-and-mark) | |
3033 (if (or ex-g-flag ex-g-variant) (error "Can't yank within global")) | |
3034 (if ex-count | |
3035 (progn | |
3036 (set-mark (point)) | |
3037 (forward-line (1- ex-count))) | |
3038 (set-mark end)) | |
3039 (vip-enlarge-region (point) (mark)) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3519
diff
changeset
|
3040 (if ex-flag (error "Extra characters at end of command")) |
11 | 3041 (if ex-buffer |
3042 (copy-to-register ex-buffer (point) (mark) nil)) | |
3043 (copy-region-as-kill (point) (mark))))) | |
3044 | |
3045 (defun ex-command () | |
3046 "execute shell command" | |
3047 (let (command) | |
3048 (save-window-excursion | |
3049 (set-buffer " *ex-working-space*") | |
3050 (skip-chars-forward " \t") | |
3051 (set-mark (point)) | |
3052 (end-of-line) | |
3053 (setq command (buffer-substring (mark) (point)))) | |
3054 (if (null ex-addresses) | |
3055 (shell-command command) | |
3056 (let ((end (car ex-addresses)) (beg (car (cdr ex-addresses)))) | |
3057 (if (null beg) (setq beg end)) | |
3058 (save-excursion | |
3059 (goto-char beg) | |
3060 (set-mark end) | |
3061 (vip-enlarge-region (point) (mark)) | |
3062 (shell-command-on-region (point) (mark) command t)) | |
3063 (goto-char beg))))) | |
3064 | |
3065 (defun ex-line-no () | |
3066 "print line number" | |
3067 (message "%d" | |
3068 (1+ (count-lines | |
3069 (point-min) | |
3070 (if (null ex-addresses) (point-max) (car ex-addresses)))))) | |
3071 | |
13907
c4f965637f22
(vip-startup-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12358
diff
changeset
|
3072 (if (file-exists-p vip-startup-file) (load vip-startup-file)) |
11 | 3073 |
18383 | 3074 (provide 'vip) |
3075 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92085
diff
changeset
|
3076 ;; arch-tag: bff623ef-48f7-41d4-9aa3-2e840c9ab415 |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
3077 ;;; vip.el ends here |