*** empty log message ***
[emacs.git] / lisp / emulation / viper-init.el
bloba3c658bd08868307861657d3d25bbcffbc11fdbd
1 ;;; viper-init.el --- some common definitions for Viper
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2, or (at your option)
10 ;; any later version.
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING. If not, write to the
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
22 ;; Code
24 (provide 'viper-init)
26 ;; compiler pacifier
27 (defvar mark-even-if-inactive)
28 (defvar quail-mode)
29 (defvar iso-accents-mode)
30 (defvar viper-current-state)
31 (defvar viper-version)
32 (defvar viper-expert-level)
33 (defvar current-input-method)
34 (defvar default-input-method)
35 (defvar describe-current-input-method-function)
36 ;; end pacifier
39 ;; Viper version
40 (defun viper-version ()
41 (interactive)
42 (message "Viper version is %s" viper-version))
44 ;; Is it XEmacs?
45 (defconst viper-xemacs-p (string-match "XEmacs" emacs-version))
46 ;; Is it Emacs?
47 (defconst viper-emacs-p (not viper-xemacs-p))
48 ;; Tell whether we are running as a window application or on a TTY
49 (defsubst viper-device-type ()
50 (if viper-emacs-p
51 window-system
52 (device-type (selected-device))))
53 ;; in XEmacs: device-type is tty on tty and stream in batch.
54 (defun viper-window-display-p ()
55 (and (viper-device-type) (not (memq (viper-device-type) '(tty stream pc)))))
57 (defcustom viper-ms-style-os-p (memq system-type
58 '(ms-dos windows-nt windows-95))
59 "Tells if Emacs is running under an MS-style OS: ms-dos, windows-nt, W95."
60 :type 'boolean
61 :tag "Is it Microsoft-made OS?"
62 :group 'viper-misc)
63 (defcustom viper-vms-os-p (memq system-type '(vax-vms axp-vms))
64 "Tells if Emacs is running under VMS."
65 :type 'boolean
66 :tag "Is it VMS?"
67 :group 'viper-misc)
69 (defcustom viper-force-faces nil
70 "If t, Viper will think that it is running on a display that supports faces.
71 This is provided as a temporary relief for users of graphics-capable terminals
72 that Viper doesn't know about.
73 In all likelihood, you don't need to bother with this setting."
74 :type 'boolean
75 :group 'viper-highlighting)
77 (defun viper-has-face-support-p ()
78 (cond ((viper-window-display-p))
79 (viper-force-faces)
80 (viper-emacs-p (memq (viper-device-type) '(pc)))
81 (viper-xemacs-p (memq (viper-device-type) '(tty pc)))))
84 ;;; Macros
86 (defmacro viper-deflocalvar (var default-value &optional documentation)
87 (` (progn
88 (defvar (, var) (, default-value)
89 (, (format "%s\n\(buffer local\)" documentation)))
90 (make-variable-buffer-local '(, var))
91 )))
93 ;; (viper-loop COUNT BODY) Execute BODY COUNT times.
94 (defmacro viper-loop (count &rest body)
95 (` (let ((count (, count)))
96 (while (> count 0)
97 (progn
98 (,@ body)
99 (setq count (1- count))
103 (defmacro viper-buffer-live-p (buf)
104 (` (and (, buf) (get-buffer (, buf)) (buffer-name (get-buffer (, buf))))))
106 ;; return buffer-specific macro definition, given a full macro definition
107 (defmacro viper-kbd-buf-alist (macro-elt)
108 (` (nth 1 (, macro-elt))))
109 ;; get a pair: (curr-buffer . macro-definition)
110 (defmacro viper-kbd-buf-pair (macro-elt)
111 (` (assoc (buffer-name) (viper-kbd-buf-alist (, macro-elt)))))
112 ;; get macro definition for current buffer
113 (defmacro viper-kbd-buf-definition (macro-elt)
114 (` (cdr (viper-kbd-buf-pair (, macro-elt)))))
116 ;; return mode-specific macro definitions, given a full macro definition
117 (defmacro viper-kbd-mode-alist (macro-elt)
118 (` (nth 2 (, macro-elt))))
119 ;; get a pair: (major-mode . macro-definition)
120 (defmacro viper-kbd-mode-pair (macro-elt)
121 (` (assoc major-mode (viper-kbd-mode-alist (, macro-elt)))))
122 ;; get macro definition for the current major mode
123 (defmacro viper-kbd-mode-definition (macro-elt)
124 (` (cdr (viper-kbd-mode-pair (, macro-elt)))))
126 ;; return global macro definition, given a full macro definition
127 (defmacro viper-kbd-global-pair (macro-elt)
128 (` (nth 3 (, macro-elt))))
129 ;; get global macro definition from an elt of macro-alist
130 (defmacro viper-kbd-global-definition (macro-elt)
131 (` (cdr (viper-kbd-global-pair (, macro-elt)))))
133 ;; last elt of a sequence
134 (defsubst viper-seq-last-elt (seq)
135 (elt seq (1- (length seq))))
137 (defsubst viper-string-to-list (string)
138 (append (vconcat string) nil))
140 (defsubst viper-charlist-to-string (list)
141 (mapconcat 'char-to-string list ""))
143 ;; like char-after/before, but saves typing
144 (defun viper-char-at-pos (direction &optional offset)
145 (or (integerp offset) (setq offset 0))
146 (if (eq direction 'forward)
147 (char-after (+ (point) offset))
148 (char-before (- (point) offset))))
151 (defvar viper-minibuffer-overlay-priority 300)
152 (defvar viper-replace-overlay-priority 400)
153 (defvar viper-search-overlay-priority 500)
156 ;;; Viper minor modes
158 ;; Mode for vital things like \e, C-z.
159 (viper-deflocalvar viper-vi-intercept-minor-mode nil)
161 (viper-deflocalvar viper-vi-basic-minor-mode nil
162 "Viper's minor mode for Vi bindings.")
164 (viper-deflocalvar viper-vi-local-user-minor-mode nil
165 "Auxiliary minor mode for user-defined local bindings in Vi state.")
167 (viper-deflocalvar viper-vi-global-user-minor-mode nil
168 "Auxiliary minor mode for user-defined global bindings in Vi state.")
170 (viper-deflocalvar viper-vi-state-modifier-minor-mode nil
171 "Minor mode used to make major-mode-specific modification to Vi state.")
173 (viper-deflocalvar viper-vi-diehard-minor-mode nil
174 "This minor mode is in effect when the user wants Viper to be Vi.")
176 (viper-deflocalvar viper-vi-kbd-minor-mode nil
177 "Minor mode for Ex command macros in Vi state.
178 The corresponding keymap stores key bindings of Vi macros defined with
179 the Ex command :map.")
181 ;; Mode for vital things like \e, C-z.
182 (viper-deflocalvar viper-insert-intercept-minor-mode nil)
184 (viper-deflocalvar viper-insert-basic-minor-mode nil
185 "Viper's minor mode for bindings in Insert mode.")
187 (viper-deflocalvar viper-insert-local-user-minor-mode nil
188 "Auxiliary minor mode for buffer-local user-defined bindings in Insert state.
189 This is a way to overshadow normal Insert mode bindings locally to certain
190 designated buffers.")
192 (viper-deflocalvar viper-insert-global-user-minor-mode nil
193 "Auxiliary minor mode for global user-defined bindings in Insert state.")
195 (viper-deflocalvar viper-insert-state-modifier-minor-mode nil
196 "Minor mode used to make major-mode-specific modification to Insert state.")
198 (viper-deflocalvar viper-insert-diehard-minor-mode nil
199 "Minor mode that simulates Vi very closely.
200 Not recommened, except for the novice user.")
202 (viper-deflocalvar viper-insert-kbd-minor-mode nil
203 "Minor mode for Ex command macros Insert state.
204 The corresponding keymap stores key bindings of Vi macros defined with
205 the Ex command :map!.")
207 (viper-deflocalvar viper-replace-minor-mode nil
208 "Minor mode in effect in replace state (cw, C, and the like commands).")
210 ;; Mode for vital things like \C-z and \C-x) This is set to t, when viper-mode
211 ;; is invoked. So, any new buffer will have C-z defined as switch to Vi,
212 ;; unless we switched states in this buffer
213 (viper-deflocalvar viper-emacs-intercept-minor-mode nil)
215 (viper-deflocalvar viper-emacs-local-user-minor-mode nil
216 "Minor mode for local user bindings effective in Emacs state.
217 Users can use it to override Emacs bindings when Viper is in its Emacs
218 state.")
220 (viper-deflocalvar viper-emacs-global-user-minor-mode nil
221 "Minor mode for global user bindings in effect in Emacs state.
222 Users can use it to override Emacs bindings when Viper is in its Emacs
223 state.")
225 (viper-deflocalvar viper-emacs-kbd-minor-mode nil
226 "Minor mode for Vi style macros in Emacs state.
227 The corresponding keymap stores key bindings of Vi macros defined with
228 `viper-record-kbd-macro' command. There is no Ex-level command to do this
229 interactively.")
231 (viper-deflocalvar viper-emacs-state-modifier-minor-mode nil
232 "Minor mode used to make major-mode-specific modification to Emacs state.
233 For instance, a Vi purist may want to bind `dd' in Dired mode to a function
234 that deletes a file.")
236 (viper-deflocalvar viper-vi-minibuffer-minor-mode nil
237 "Minor mode that forces Vi-style when the Minibuffer is in Vi state.")
239 (viper-deflocalvar viper-insert-minibuffer-minor-mode nil
240 "Minor mode that forces Vi-style when the Minibuffer is in Insert state.")
244 ;; Some common error messages
246 (defconst viper-SpuriousText "Spurious text after command" "")
247 (defconst viper-BadExCommand "Not an editor command" "")
248 (defconst viper-InvalidCommandArgument "Invalid command argument" "")
249 (defconst viper-NoPrevSearch "No previous search string" "")
250 (defconst viper-EmptyRegister "`%c': Nothing in this register" "")
251 (defconst viper-InvalidRegister "`%c': Invalid register" "")
252 (defconst viper-EmptyTextmarker "`%c': Text marker doesn't point anywhere" "")
253 (defconst viper-InvalidTextmarker "`%c': Invalid text marker" "")
254 (defconst viper-InvalidViCommand "Invalid command" "")
255 (defconst viper-BadAddress "Ill-formed address" "")
256 (defconst viper-FirstAddrExceedsSecond "First address exceeds second" "")
257 (defconst viper-NoFileSpecified "No file specified" "")
259 ;; Is t until viper-mode executes for the very first time.
260 ;; Prevents recursive descend into startup messages.
261 (defvar viper-first-time t)
263 (defvar viper-expert-level (if (boundp 'viper-expert-level) viper-expert-level 0)
264 "User's expert level.
265 The minor mode viper-vi-diehard-minor-mode is in effect when
266 viper-expert-level is 1 or 2 or when viper-want-emacs-keys-in-vi is t.
267 The minor mode viper-insert-diehard-minor-mode is in effect when
268 viper-expert-level is 1 or 2 or if viper-want-emacs-keys-in-insert is t.
269 Use `M-x viper-set-expert-level' to change this.")
271 ;; Max expert level supported by Viper. This is NOT a user option.
272 ;; It is here to make it hard for the user from resetting it.
273 (defconst viper-max-expert-level 5)
276 ;;; ISO characters and MULE
278 ;; If non-nil, ISO accents will be turned on in insert/replace emacs states and
279 ;; turned off in vi-state. For some users, this behavior may be too
280 ;; primitive. In this case, use insert/emacs/vi state hooks.
281 (viper-deflocalvar viper-automatic-iso-accents nil "")
282 ;; Set iso-accents-mode to ARG. Check if it is bound first
283 (defsubst viper-set-iso-accents-mode (arg)
284 (if (boundp 'iso-accents-mode)
285 (setq iso-accents-mode arg)))
287 ;; Internal flag used to control when viper mule hooks are run.
288 ;; Don't change this!
289 (defvar viper-mule-hook-flag t)
290 ;; If non-nil, the default intl. input method is turned on.
291 (viper-deflocalvar viper-special-input-method nil "")
293 ;; viper hook to run on input-method activation
294 (defun viper-activate-input-method-action ()
295 (if (null viper-mule-hook-flag)
297 (setq viper-special-input-method t)
298 ;; turn off special input methods in vi-state
299 (if (eq viper-current-state 'vi-state)
300 (viper-set-input-method nil))
301 (if (memq viper-current-state '(vi-state insert-state replace-state))
302 (message "Viper special input method%s: on"
303 (if (or current-input-method default-input-method)
304 (format " %S"
305 (or current-input-method default-input-method))
306 "")))
309 ;; viper hook to run on input-method deactivation
310 (defun viper-inactivate-input-method-action ()
311 (if (null viper-mule-hook-flag)
313 (setq viper-special-input-method nil)
314 (if (memq viper-current-state '(vi-state insert-state replace-state))
315 (message "Viper special input method%s: off"
316 (if (or current-input-method default-input-method)
317 (format " %S"
318 (or current-input-method default-input-method))
319 "")))))
321 (defun viper-inactivate-input-method ()
322 (cond ((and viper-emacs-p (fboundp 'inactivate-input-method))
323 (inactivate-input-method))
324 ((and viper-xemacs-p (boundp 'current-input-method))
325 ;; XEmacs had broken quil-mode for some time, so we are working around
326 ;; it here
327 (setq quail-mode nil)
328 (if (featurep 'quail)
329 (quail-delete-overlays))
330 (setq describe-current-input-method-function nil)
331 (setq current-input-method nil)
332 (run-hooks 'input-method-inactivate-hook)
333 (force-mode-line-update))
335 (defun viper-activate-input-method ()
336 (cond ((and viper-emacs-p (fboundp 'activate-input-method))
337 (activate-input-method default-input-method))
338 ((and viper-xemacs-p (fboundp 'quail-mode))
339 (quail-mode 1))))
341 ;; Set quail-mode to ARG
342 (defun viper-set-input-method (arg)
343 (setq viper-mule-hook-flag t) ; just a precaution
344 (let (viper-mule-hook-flag) ; temporarily inactivate viper mule hooks
345 (cond ((and arg (> (prefix-numeric-value arg) 0) default-input-method)
346 ;; activate input method
347 (viper-activate-input-method))
348 (t ; deactivate input method
349 (viper-inactivate-input-method)))
353 ;; VI-style Undo
355 ;; Used to 'undo' complex commands, such as replace and insert commands.
356 (viper-deflocalvar viper-undo-needs-adjustment nil)
357 (put 'viper-undo-needs-adjustment 'permanent-local t)
359 ;; A mark that Viper puts on buffer-undo-list. Marks the beginning of a
360 ;; complex command that must be undone atomically. If inserted, it is
361 ;; erased by viper-change-state-to-vi and viper-repeat.
362 (defconst viper-buffer-undo-list-mark 'viper)
364 (defcustom viper-keep-point-on-undo nil
365 "*Non-nil means not to move point while undoing commands.
366 This style is different from Emacs and Vi. Try it to see if
367 it better fits your working style."
368 :type 'boolean
369 :tag "Preserve Position of Point After Undo"
370 :group 'viper)
372 ;; Replace mode and changing text
374 ;; Hack used to pass global states around for short period of time
375 (viper-deflocalvar viper-intermediate-command nil "")
377 ;; This is used to pass the right Vi command key sequence to
378 ;; viper-set-destructive-command whenever (this-command-keys) doesn't give the
379 ;; right result. For instance, in commands like c/bla<RET>,
380 ;; (this-command-keys) will return ^M, which invoked exit-minibuffer, while we
381 ;; need "c/"
382 (defconst viper-this-command-keys nil)
384 ;; Indicates that the current destructive command has started in replace mode.
385 (viper-deflocalvar viper-began-as-replace nil "")
387 (defcustom viper-allow-multiline-replace-regions t
388 "If non-nil, Viper will allow multi-line replace regions.
389 This is an extension to standard Vi.
390 If nil, commands that attempt to replace text spanning multiple lines first
391 delete the text being replaced, as in standard Vi."
392 :type 'boolean
393 :group 'viper)
395 (defcustom viper-replace-overlay-cursor-color "Red"
396 "*Cursor color when Viper is in Replace state."
397 :type 'string
398 :group 'viper)
399 (defcustom viper-insert-state-cursor-color "Green"
400 "Cursor color when Viper is in insert state."
401 :type 'string
402 :group 'viper)
404 ;; internal var, used to remember the default cursor color of emacs frames
405 (defvar viper-vi-state-cursor-color nil)
407 (viper-deflocalvar viper-replace-overlay nil "")
408 (put 'viper-replace-overlay 'permanent-local t)
410 (defcustom viper-replace-region-end-delimiter "$"
411 "A string marking the end of replacement regions.
412 It is used only with TTYs or if `viper-use-replace-region-delimiters'
413 is non-nil."
414 :type 'string
415 :group 'viper)
416 (defcustom viper-replace-region-start-delimiter ""
417 "A string marking the beginning of replacement regions.
418 It is used only with TTYs or if `viper-use-replace-region-delimiters'
419 is non-nil."
420 :type 'string
421 :group 'viper)
422 (defcustom viper-use-replace-region-delimiters
423 (or (not (viper-has-face-support-p))
424 (and viper-xemacs-p (eq (viper-device-type) 'tty)))
425 "*If non-nil, Viper will always use `viper-replace-region-end-delimiter' and
426 `viper-replace-region-start-delimiter' to delimit replacement regions, even on
427 color displays. By default, the delimiters are used only on TTYs."
428 :type 'boolean
429 :group 'viper)
431 (defcustom viper-read-buffer-function 'read-buffer
432 "Function to use for prompting the user for a buffer name."
433 :type 'symbol
434 :group 'viper)
436 ;; XEmacs requires glyphs
437 (if viper-xemacs-p
438 (progn
439 (or (glyphp viper-replace-region-end-delimiter)
440 (setq viper-replace-region-end-delimiter
441 (make-glyph viper-replace-region-end-delimiter)))
442 (or (glyphp viper-replace-region-start-delimiter)
443 (setq viper-replace-region-start-delimiter
444 (make-glyph viper-replace-region-start-delimiter)))
448 ;; These are local marker that must be initialized to nil and moved with
449 ;; `viper-move-marker-locally'
451 ;; Remember the last position inside the replace region.
452 (viper-deflocalvar viper-last-posn-in-replace-region nil)
453 ;; Remember the last position while inserting
454 (viper-deflocalvar viper-last-posn-while-in-insert-state nil)
455 (put 'viper-last-posn-in-replace-region 'permanent-local t)
456 (put 'viper-last-posn-while-in-insert-state 'permanent-local t)
458 (viper-deflocalvar viper-sitting-in-replace nil "")
459 (put 'viper-sitting-in-replace 'permanent-local t)
461 ;; Remember the number of characters that have to be deleted in replace
462 ;; mode to compensate for the inserted characters.
463 (viper-deflocalvar viper-replace-chars-to-delete 0 "")
464 ;; This variable is used internally by the before/after changed functions to
465 ;; determine how many chars were deleted by the change. This can't be
466 ;; determined inside after-change-functions because those get the length of the
467 ;; deleted region, not the number of chars deleted (which are two different
468 ;; things under MULE).
469 (viper-deflocalvar viper-replace-region-chars-deleted 0 "")
471 ;; Insertion ring and command ring
472 (defcustom viper-insertion-ring-size 14
473 "The size of history of inserted text.
474 This is a list where Viper keeps the history of previously inserted pieces of
475 text."
476 :type 'integer
477 :group 'viper-misc)
478 ;; The insertion ring.
479 (defvar viper-insertion-ring nil)
480 ;; This is temp insertion ring. Used to do rotation for display purposes.
481 ;; When rotation just started, it is initialized to viper-insertion-ring.
482 (defvar viper-temp-insertion-ring nil)
483 (defvar viper-last-inserted-string-from-insertion-ring "")
485 (defcustom viper-command-ring-size 14
486 "The size of history of Vi commands repeatable with dot."
487 :type 'integer
488 :group 'viper-misc)
489 ;; The command ring.
490 (defvar viper-command-ring nil)
491 ;; This is temp command ring. Used to do rotation for display purposes.
492 ;; When rotation just started, it is initialized to viper-command-ring.
493 (defvar viper-temp-command-ring nil)
495 ;; Fast keyseq and ESC keyseq timeouts
496 (defcustom viper-fast-keyseq-timeout 200
497 "*Key sequence separated by no more than this many milliseconds is viewed as a Vi-style macro, if such a macro is defined.
498 Setting this too high may slow down your typing. Setting this value too low
499 will make it hard to use Vi-stile timeout macros."
500 :type 'integer
501 :group 'viper-misc)
503 (defcustom viper-ESC-keyseq-timeout (if (viper-window-display-p)
504 0 viper-fast-keyseq-timeout)
505 "*Key sequence beginning with ESC and separated by no more than this many milliseconds is considered to be generated by a keyboard function key.
506 Setting this too high may slow down switching from insert to vi state. Setting
507 this value too low will make it impossible to use function keys in insert mode
508 on a dumb terminal."
509 :type 'integer
510 :group 'viper-misc)
512 ;; Modes and related variables
514 ;; Current mode. One of: `emacs-state', `vi-state', `insert-state'
515 (viper-deflocalvar viper-current-state 'emacs-state)
518 ;; Autoindent in insert
520 ;; Variable that keeps track of whether C-t has been pressed.
521 (viper-deflocalvar viper-cted nil "")
523 ;; Preserve the indent value, used by C-d in insert mode.
524 (viper-deflocalvar viper-current-indent 0)
526 ;; Whether to preserve the indent, used by C-d in insert mode.
527 (viper-deflocalvar viper-preserve-indent nil)
529 (viper-deflocalvar viper-auto-indent nil "")
530 (defcustom viper-auto-indent nil
531 "*Enable autoindent, if t.
532 This is a buffer-local variable."
533 :type 'boolean
534 :group 'viper)
536 (viper-deflocalvar viper-electric-mode t "")
537 (defcustom viper-electric-mode t
538 "*If t, electrify Viper.
539 Currently, this only electrifies auto-indentation, making it appropriate to the
540 mode of the buffer.
541 This means that auto-indentation will depart from standard Vi and will indent
542 appropriate to the mode of the buffer. This is especially useful for editing
543 programs and LaTeX documents."
544 :type 'boolean
545 :group 'viper)
547 (defcustom viper-shift-width 8
548 "*The value of the shiftwidth.
549 This determines the number of columns by which the Ctl-t moves the cursor in
550 the Insert state."
551 :type 'integer
552 :group 'viper)
554 ;; Variables for repeating destructive commands
556 (defcustom viper-keep-point-on-repeat t
557 "*If t, don't move point when repeating previous command.
558 This is useful for doing repeated changes with the '.' key.
559 The user can change this to nil, if she likes when the cursor moves
560 to a new place after repeating previous Vi command."
561 :type 'boolean
562 :group 'viper)
564 ;; Remember insert point as a marker. This is a local marker that must be
565 ;; initialized to nil and moved with `viper-move-marker-locally'.
566 (viper-deflocalvar viper-insert-point nil)
567 (put 'viper-insert-point 'permanent-local t)
569 ;; This remembers the point before dabbrev-expand was called.
570 ;; If viper-insert-point turns out to be bigger than that, it is reset
571 ;; back to viper-pre-command-point.
572 ;; The reason this is needed is because dabbrev-expand (and possibly
573 ;; others) may jump to before the insertion point, delete something and
574 ;; then reinsert a bigger piece. For instance: bla^blo
575 ;; If dabbrev-expand is called after `blo' and ^ undicates viper-insert-point,
576 ;; then point jumps to the beginning of `blo'. If expansion is found, `blablo'
577 ;; is deleted, and we have |^, where | denotes point. Next, dabbrev-expand
578 ;; will insert the expansion, and we get: blablo^
579 ;; Whatever we insert next goes before the ^, i.e., before the
580 ;; viper-insert-point marker. So, Viper will think that nothing was
581 ;; inserted. Remembering the orig position of the marker circumvents the
582 ;; problem.
583 ;; We don't know of any command, except dabbrev-expand, that has the same
584 ;; problem. However, the same trick can be used if such a command is
585 ;; discovered later.
587 (viper-deflocalvar viper-pre-command-point nil)
588 (put 'viper-pre-command-point 'permanent-local t) ; this is probably an overkill
590 ;; This is used for saving inserted text.
591 (defvar viper-last-insertion nil)
593 ;; Remembers the last replaced region.
594 (defvar viper-last-replace-region "")
596 ;; Remember com point as a marker.
597 ;; This is a local marker. Should be moved with `viper-move-marker-locally'
598 (viper-deflocalvar viper-com-point nil)
600 ;; If non-nil, the value is a list (M-COM VAL COM REG inserted-text cmd-keys)
601 ;; It is used to re-execute last destructive command.
602 ;; M-COM is a Lisp symbol representing the function to be executed.
603 ;; VAL is the prefix argument that was used with that command.
604 ;; COM is an internal descriptor, such as ?r, ?c, ?C, which contains
605 ;; additional information on how the function in M-COM is to be handled.
606 ;; REG is the register used by command
607 ;; INSERTED-TEXT is text inserted by that command (in case of o, c, C, i, r
608 ;; commands).
609 ;; COMMAND-KEYS are the keys that were typed to invoke the command.
610 (defvar viper-d-com nil)
612 ;; The character remembered by the Vi `r' command.
613 (defvar viper-d-char nil)
615 ;; Name of register to store deleted or yanked strings
616 (defvar viper-use-register nil)
619 ;;; Variables for Moves and Searches
621 (defgroup viper-search nil
622 "Variables that define the search and query-replace behavior of Viper."
623 :prefix "viper-"
624 :group 'viper)
626 ;; For use by `;' command.
627 (defvar viper-f-char nil)
629 ;; For use by `.' command.
630 (defvar viper-F-char nil)
632 ;; For use by `;' command.
633 (defvar viper-f-forward nil)
635 ;; For use by `;' command.
636 (defvar viper-f-offset nil)
638 ;; Last search string
639 (defvar viper-s-string "")
641 (defcustom viper-quote-string "> "
642 "String inserted at the beginning of quoted region."
643 :type 'string
644 :group 'viper)
646 ;; If t, search is forward.
647 (defvar viper-s-forward nil)
649 (defcustom viper-case-fold-search nil
650 "*If not nil, search ignores cases."
651 :type 'boolean
652 :group 'viper-search)
654 (defcustom viper-re-search t
655 "*If not nil, search is regexp search, otherwise vanilla search."
656 :type 'boolean
657 :tag "Regexp Search"
658 :group 'viper-search)
660 (defcustom viper-search-scroll-threshold 2
661 "*If search lands within this threshnold from the window top/bottom,
662 the window will be scrolled up or down appropriately, to reveal context.
663 If you want Viper search to behave as usual in Vi, set this variable to a
664 negative number."
665 :type 'boolean
666 :group 'viper-search)
668 (defcustom viper-re-query-replace t
669 "*If t then do regexp replace, if nil then do string replace."
670 :type 'boolean
671 :tag "Regexp Query Replace"
672 :group 'viper-search)
674 (defcustom viper-re-replace t
675 "*If t, do regexp replace. nil means do string replace."
676 :type 'boolean
677 :tag "Regexp Replace"
678 :group 'viper-search)
680 (defcustom viper-parse-sexp-ignore-comments t
681 "*If t, `%' ignores the parentheses that occur inside comments."
682 :type 'boolean
683 :group 'viper)
685 (viper-deflocalvar viper-ex-style-motion t "")
686 (defcustom viper-ex-style-motion t
687 "*If t, the commands l,h do not cross lines, etc (Ex-style).
688 If nil, these commands cross line boundaries."
689 :type 'boolean
690 :group 'viper)
692 (viper-deflocalvar viper-ex-style-editing t "")
693 (defcustom viper-ex-style-editing t
694 "*If t, Ex-style behavior while editing in Vi command and insert states.
695 `Backspace' and `Delete' don't cross line boundaries in insert.
696 `X' and `x' can't delete characters across line boundary in Vi, etc.
697 Note: this doesn't preclude `Backspace' and `Delete' from deleting characters
698 by moving past the insertion point. This is a feature, not a bug.
700 If nil, the above commands can work across lines."
701 :type 'boolean
702 :group 'viper)
704 (viper-deflocalvar viper-ESC-moves-cursor-back viper-ex-style-editing "")
705 (defcustom viper-ESC-moves-cursor-back nil
706 "*If t, ESC moves cursor back when changing from insert to vi state.
707 If nil, the cursor stays where it was when ESC was hit."
708 :type 'boolean
709 :group 'viper)
711 (viper-deflocalvar viper-delete-backwards-in-replace nil "")
712 (defcustom viper-delete-backwards-in-replace nil
713 "*If t, DEL key will delete characters while moving the cursor backwards.
714 If nil, the cursor will move backwards without deleting anything."
715 :type 'boolean
716 :group 'viper)
718 (defcustom viper-buffer-search-char nil
719 "*Key used for buffer-searching. Must be a character type, e.g., ?g."
720 :type '(choice (const nil) character)
721 :group 'viper-search)
723 (defcustom viper-search-wrap-around-t t
724 "*If t, search wraps around."
725 :type 'boolean
726 :tag "Search Wraps Around"
727 :group 'viper-search)
729 (viper-deflocalvar viper-related-files-and-buffers-ring nil "")
730 (defcustom viper-related-files-and-buffers-ring nil
731 "*List of file and buffer names that are considered to be related to the current buffer.
732 Related buffers can be cycled through via :R and :P commands."
733 :type 'boolean
734 :group 'viper-misc)
735 (put 'viper-related-files-and-buffers-ring 'permanent-local t)
737 ;; Used to find out if we are done with searching the current buffer.
738 (viper-deflocalvar viper-local-search-start-marker nil)
739 ;; As above, but global
740 (defvar viper-search-start-marker (make-marker))
742 ;; the search overlay
743 (viper-deflocalvar viper-search-overlay nil)
746 (defvar viper-heading-start
747 (concat "^\\s-*(\\s-*defun\\s-\\|" ; lisp
748 "^{\\s-*$\\|^[_a-zA-Z][^()]*[()].*{\\s-*$\\|" ; C/C++
749 "^\\s-*class.*{\\|^\\s-*struct.*{\\|^\\s-*enum.*{\\|"
750 "^\\\\[sb][a-z]*{.*}\\s-*$\\|" ; latex
751 "^@node\\|@table\\|^@m?enu\\|^@itemize\\|^@if\\|" ; texinfo
752 "^.+:-") ; prolog
753 "*Regexps for Headings. Used by \[\[ and \]\].")
755 (defvar viper-heading-end
756 (concat "^}\\|" ; C/C++
757 "^\\\\end{\\|" ; latex
758 "^@end \\|" ; texinfo
759 ")\n\n[ \t\n]*\\|" ; lisp
760 "\\.\\s-*$") ; prolog
761 "*Regexps to end Headings/Sections. Used by \[\].")
764 ;; These two vars control the interaction of jumps performed by ' and `.
765 ;; In this new version, '' doesn't erase the marks set by ``, so one can
766 ;; use both kinds of jumps interchangeably and without loosing positions
767 ;; inside the lines.
769 ;; Remembers position of the last jump done using ``'.
770 (viper-deflocalvar viper-last-jump nil)
771 ;; Remembers position of the last jump done using `''.
772 (viper-deflocalvar viper-last-jump-ignore 0)
774 ;; History variables
776 ;; History of search strings.
777 (defvar viper-search-history (list ""))
778 ;; History of query-replace strings used as a source.
779 (defvar viper-replace1-history nil)
780 ;; History of query-replace strings used as replacement.
781 (defvar viper-replace2-history nil)
782 ;; History of region quoting strings.
783 (defvar viper-quote-region-history (list viper-quote-string))
784 ;; History of Ex-style commands.
785 (defvar viper-ex-history nil)
786 ;; History of shell commands.
787 (defvar viper-shell-history nil)
790 ;; Last shell command. There are two of these, one for Ex (in viper-ex)
791 ;; and one for Vi.
793 ;; Last shell command executed with ! command.
794 (defvar viper-last-shell-com nil)
797 ;;; Face-saving tricks
799 (defun viper-hide-face (face)
800 (if (and (viper-has-face-support-p) viper-emacs-p)
801 (add-to-list 'facemenu-unlisted-faces face)))
804 (defgroup viper-highlighting nil
805 "Hilighting of replace region, search pattern, minibuffer, etc."
806 :prefix "viper-"
807 :group 'viper)
810 (defface viper-search-face
811 '((((class color)) (:foreground "Black" :background "khaki"))
812 (t (:underline t :stipple "gray3")))
813 "*Face used to flash out the search pattern."
814 :group 'viper-highlighting)
815 ;; An internal variable. Viper takes the face from here.
816 (defvar viper-search-face 'viper-search-face
817 "Face used to flash out the search pattern.
818 DO NOT CHANGE this variable. Instead, use the customization widget
819 to customize the actual face object `viper-search-face'
820 this variable represents.")
821 (viper-hide-face 'viper-search-face)
824 (defface viper-replace-overlay-face
825 '((((class color)) (:foreground "Black" :background "darkseagreen2"))
826 (t (:underline t :stipple "gray3")))
827 "*Face for highlighting replace regions on a window display."
828 :group 'viper-highlighting)
829 ;; An internal variable. Viper takes the face from here.
830 (defvar viper-replace-overlay-face 'viper-replace-overlay-face
831 "Face for highlighting replace regions on a window display.
832 DO NOT CHANGE this variable. Instead, use the customization widget
833 to customize the actual face object `viper-replace-overlay-face'
834 this variable represents.")
835 (viper-hide-face 'viper-replace-overlay-face)
838 (defface viper-minibuffer-emacs-face
839 '((((class color)) (:foreground "Black" :background "darkseagreen2"))
840 (t (:bold t)))
841 "Face used in the Minibuffer when it is in Emacs state."
842 :group 'viper-highlighting)
843 ;; An internal variable. Viper takes the face from here.
844 (defvar viper-minibuffer-emacs-face 'viper-minibuffer-emacs-face
845 "Face used in the Minibuffer when it is in Emacs state.
846 DO NOT CHANGE this variable. Instead, use the customization widget
847 to customize the actual face object `viper-minibuffer-emacs-face'
848 this variable represents.")
849 (viper-hide-face 'viper-minibuffer-emacs-face)
852 (defface viper-minibuffer-insert-face
853 '((((class color)) (:foreground "Black" :background "pink"))
854 (t (:italic t)))
855 "Face used in the Minibuffer when it is in Insert state."
856 :group 'viper-highlighting)
857 ;; An internal variable. Viper takes the face from here.
858 (defvar viper-minibuffer-insert-face 'viper-minibuffer-insert-face
859 "Face used in the Minibuffer when it is in Insert state.
860 DO NOT CHANGE this variable. Instead, use the customization widget
861 to customize the actual face object `viper-minibuffer-insert-face'
862 this variable represents.")
863 (viper-hide-face 'viper-minibuffer-insert-face)
866 (defface viper-minibuffer-vi-face
867 '((((class color)) (:foreground "DarkGreen" :background "grey"))
868 (t (:inverse-video t)))
869 "Face used in the Minibuffer when it is in Vi state."
870 :group 'viper-highlighting)
871 ;; An internal variable. Viper takes the face from here.
872 (defvar viper-minibuffer-vi-face 'viper-minibuffer-vi-face
873 "Face used in the Minibuffer when it is in Vi state.
874 DO NOT CHANGE this variable. Instead, use the customization widget
875 to customize the actual face object `viper-minibuffer-vi-face'
876 this variable represents.")
877 (viper-hide-face 'viper-minibuffer-vi-face)
879 ;; the current face to be used in the minibuffer
880 (viper-deflocalvar
881 viper-minibuffer-current-face viper-minibuffer-emacs-face "")
884 ;;; Miscellaneous
886 (defvar viper-inhibit-startup-message nil
887 "Whether Viper startup message should be inhibited.")
889 (defcustom viper-spell-function 'ispell-region
890 "Spell function used by #s<move> command to spell."
891 :type 'function
892 :group 'viper-misc)
894 (defcustom viper-tags-file-name "TAGS"
895 "The tags file used by Viper."
896 :type 'string
897 :group 'viper-misc)
899 (defcustom viper-change-notification-threshold 1
900 "Notify the user when this many lines or characters have been deleted/yanked.
901 For line-deleting/yanking commands (like `dd', `yy'), the value denotes the
902 number of lines. For character-based commands (such as `x', `dw', etc.), the
903 value refers to the number of characters affected."
904 :type 'integer
905 :group 'viper-misc)
907 ;; Minibuffer
909 (defcustom viper-vi-style-in-minibuffer t
910 "If t, use vi-style editing in minibuffer.
911 Should be set in `~/.viper' file."
912 :type 'boolean
913 :group 'viper)
915 ;; overlay used in the minibuffer to indicate which state it is in
916 (viper-deflocalvar viper-minibuffer-overlay nil)
917 (put 'viper-minibuffer-overlay 'permanent-local t)
919 ;; Hook, specific to Viper, which is run just *before* exiting the minibuffer.
920 ;; This is needed because beginning with Emacs 19.26, the standard
921 ;; `minibuffer-exit-hook' is run *after* exiting the minibuffer
922 (defvar viper-minibuffer-exit-hook nil)
925 ;; Mode line
926 (defconst viper-vi-state-id "<V> "
927 "Mode line tag identifying the Vi mode of Viper.")
928 (defconst viper-emacs-state-id "<E> "
929 "Mode line tag identifying the Emacs mode of Viper.")
930 (defconst viper-insert-state-id "<I> "
931 "Mode line tag identifying the Insert mode of Viper.")
932 (defconst viper-replace-state-id "<R> "
933 "Mode line tag identifying the Replace mode of Viper.")
936 (defgroup viper-hooks nil
937 "Viper hooks."
938 :prefix "viper-"
939 :group 'viper)
941 (defcustom viper-vi-state-hook nil
942 "*Hooks run just before the switch to Vi mode is completed."
943 :type 'hook
944 :group 'viper-hooks)
945 (defcustom viper-insert-state-hook nil
946 "*Hooks run just before the switch to Insert mode is completed."
947 :type 'hook
948 :group 'viper-hooks)
949 (defcustom viper-replace-state-hook nil
950 "*Hooks run just before the switch to Replace mode is completed."
951 :type 'hook
952 :group 'viper-hooks)
953 (defcustom viper-emacs-state-hook nil
954 "*Hooks run just before the switch to Emacs mode is completed."
955 :type 'hook
956 :group 'viper-hooks)
958 (defcustom viper-load-hook nil
959 "Hooks run just after loading Viper."
960 :type 'hook
961 :group 'viper-hooks)
964 ;;; Local Variables:
965 ;;; eval: (put 'viper-deflocalvar 'lisp-indent-hook 'defun)
966 ;;; End:
968 ;;; viper-ex.el ends here