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