Doc, comment, etc updates for increased use of locate-user-emacs-file
[bpt/emacs.git] / doc / misc / viper.texi
CommitLineData
4009494e
GM
1% -*-texinfo-*-
2\input texinfo
3
4@comment Using viper.info instead of viper in setfilename breaks DOS.
5@comment @setfilename viper
6@comment @setfilename viper.info
db78a8cb 7@setfilename ../../info/viper
4009494e 8
c6ab4664
PE
9@documentencoding UTF-8
10
4009494e 11@copying
6bc383b1 12Copyright @copyright{} 1995--1997, 2001--2014 Free Software Foundation, Inc.
4009494e
GM
13
14@quotation
15Permission is granted to copy, distribute and/or modify this document
6a2c4aec 16under the terms of the GNU Free Documentation License, Version 1.3 or
4009494e 17any later version published by the Free Software Foundation; with no
debf4439
GM
18Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
19and with the Back-Cover Texts as in (a) below. A copy of the license
20is included in the section entitled ``GNU Free Documentation License''.
4009494e 21
6f093307 22(a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
6bf430d1 23modify this GNU manual.''
4009494e
GM
24@end quotation
25@end copying
26
0c973505 27@dircategory Emacs misc features
4009494e 28@direntry
9e7a4bcf 29* VIPER: (viper). A VI-emulation mode for Emacs.
4009494e
GM
30@end direntry
31
32@finalout
33
34@titlepage
35@title Viper Is a Package for Emacs Rebels
36@subtitle a Vi emulator for Emacs
c7cac5cc 37@subtitle November 2008, Viper Version 3.11.2
4009494e
GM
38
39@author Michael Kifer (Viper)
40@author Aamod Sane (VIP 4.4)
41@author Masahiko Sato (VIP 3.5)
42
43@page
44@vskip 0pt plus 1filll
45@insertcopying
46@end titlepage
47
5dc584b5
KB
48@contents
49
4009494e 50@ifnottex
1a5d3215
GM
51@node Top
52@top Viper
4009494e
GM
53
54We believe that one or more of the following statements are adequate
55descriptions of Viper:
56
57@example
58Viper Is a Package for Emacs Rebels;
59it is a VI Plan for Emacs Rescue
60and/or a venomous VI PERil.
61@end example
62
63Technically speaking, Viper is a Vi emulation package for Emacs. It
64implements all Vi and Ex commands, occasionally improving on them and
65adding many new features. It gives the user the best of both worlds: Vi
66keystrokes for editing combined with the power of the Emacs environment.
67
68Viper emulates Vi at several levels, from the one that closely follows Vi
69conventions to the one that departs from many of them. It has many
70customizable options, which can be used to tailor Viper to the work habits
71of various users.
72This manual describes Viper, concentrating on the differences from Vi and
73new features of Viper.
74
75Viper, formerly known as VIP-19, was written by Michael Kifer. It is based
76on VIP version 3.5 by Masahiko Sato and VIP version 4.4 by Aamod Sane.
77About 15% of the code still comes from those older packages.
78
f99f1641 79Viper is intended to be usable without reading this manual; the defaults
4009494e
GM
80are set to make Viper as close to Vi as possible. At startup, Viper will
81try to set the most appropriate default environment for you, based on
82your familiarity with Emacs. It will also tell you the basic GNU Emacs window
83management commands to help you start immediately.
84
85Although this manual explains how to customize Viper, some basic
86familiarity with Emacs Lisp is a plus.
87
88It is recommended that you read the Overview node. The other nodes may
89be visited as needed.
90
91Comments and bug reports are welcome.
92@code{kifer@@cs.stonybrook.edu} is the current address for Viper bug reports.
76f1a3c3 93Please use the Ex command @kbd{:submitReport} for this purpose.
4009494e 94
5dc584b5 95@insertcopying
4009494e
GM
96@end ifnottex
97
98@menu
99* Overview:: Read for a smoother start
100* Improvements over Vi:: New features, Improvements
101* Customization:: How to customize Viper
102* Commands:: Vi and Ex Commands
1a5d3215
GM
103* GNU Free Documentation License:: The license for this documentation.
104* Acknowledgments::
4009494e
GM
105* Key Index:: Index of Vi and Ex Commands
106* Function Index:: Index of Viper Functions
107* Variable Index:: Index of Viper Variables
108* Package Index:: Index of Packages Mentioned in this Document
109* Concept Index:: Vi, Ex and Emacs concepts
4009494e
GM
110@end menu
111@iftex
112@unnumbered Introduction
113
114We believe that one or more of the following statements are adequate
115descriptions of Viper:
116
117@example
118Viper Is a Package for Emacs Rebels;
119it is a VI Plan for Emacs Rescue
120and/or a venomous VI PERil.
121@end example
122
123Viper is a Vi emulation package for Emacs. Viper contains virtually all
124of Vi and Ex functionality and much more. It gives you the best of both
125worlds: Vi keystrokes for editing combined with the GNU Emacs
126environment. Viper also fixes some common complaints with Vi commands.
127This manual describes Viper, concentrating on the differences from Vi
128and on the new features of Viper.
129
130Viper was written by Michael Kifer. It is based on VIP version 3.5 by
131Masahiko Sato and VIP version 4.4 by Aamod Sane. About 15% of the code
132still comes from those older packages.
133
f99f1641
PE
134Viper is intended to be usable out of the box, without reading this manual;
135the defaults are set to make Viper as close to Vi as possible. At
4009494e
GM
136startup, Viper will attempt to set the most appropriate default environment
137for you, based on your familiarity with Emacs. It will also tell you the
138basic GNU Emacs window management commands to help you start immediately.
139
140Although this manual explains how to customize Viper, some basic
141familiarity with Emacs Lisp is a plus.
142
143It is recommended that you read the chapter Overview. The other chapters
144will be useful for customization and advanced usage.
145
146You should also learn to use the Info on-line hypertext manual system that
147comes with Emacs. This manual can be read as an Info file. Try the command
148@kbd{@key{ESC} x info} with vanilla Emacs sometime.
149
150Comments and bug reports are welcome.
151@code{kifer@@cs.stonybrook.edu} is the current address for Viper bug reports.
76f1a3c3 152Please use the Ex command @kbd{:submitReport} for this purpose.
4009494e
GM
153
154@end iftex
155
1a5d3215 156@node Overview
4009494e
GM
157@chapter Overview of Viper
158
159Viper is a Vi emulation on top of Emacs. At the same time, Viper provides a
160virtually unrestricted access to Emacs facilities. Perfect compatibility
161with Vi is possible but not desirable. This chapter tells you about the
162Emacs ideas that you should know about, how to use Viper within Emacs and
163some incompatibilities.
164
165This manual is written with the assumption that you are an experienced Vi
166user who wants to switch to Emacs while retaining the ability to edit files
167Vi style. Incredible as it might seem, there are experienced Emacs users
168who use Viper as a backdoor into the superior (as every Vi user already knows)
169world of Vi! These users are well familiar with Emacs bindings and prefer them
170in some cases, especially in the Vi Insert state. John Hawkins
171<jshawkin@@eecs.umich.edu> has provided a set of customizations, which
172enables additional Emacs bindings under Viper. These customizations can be
ece4bae5
GM
173included in your @file{~/.emacs.d/viper} file and are found at the
174following URL: @file{http://traeki.freeshell.org/files/viper-sample}.
4009494e
GM
175
176@menu
177* Emacs Preliminaries:: Basic concepts in Emacs.
178* Loading Viper:: Loading and Preliminary Configuration.
179* States in Viper:: Viper has four states orthogonal to Emacs
180 modes.
181* The Minibuffer:: Command line in Emacs.
182* Multiple Files in Viper:: True multiple file handling.
183* Unimplemented Features:: That are unlikely to be implemented.
184@end menu
185
1a5d3215 186@node Emacs Preliminaries
4009494e
GM
187@section Emacs Preliminaries
188
189@cindex buffer
190@cindex point
191@cindex mark
192@cindex text
193@cindex looking at
194@cindex end (of buffer)
195@cindex end (of line)
196@cindex region
197
198Emacs can edit several files at once. A file in Emacs is placed in a
199@dfn{buffer} that usually has the same name as the file. Buffers are also used
200for other purposes, such as shell interfaces, directory editing, etc.
201@xref{Dired,,Directory Editor,emacs,The
76f1a3c3 202GNU Emacs Manual}, for an example.
4009494e
GM
203
204A buffer has a distinguished position called the @dfn{point}.
205A @dfn{point} is always between 2 characters, and is @dfn{looking at}
206the right hand character. The cursor is positioned on the right hand
207character. Thus, when the @dfn{point} is looking at the end-of-line,
1df7defd 208the cursor is on the end-of-line character, i.e., beyond the last
76f1a3c3 209character on the line. This is the default Emacs behavior.
4009494e
GM
210
211The default settings of Viper try to mimic the behavior of Vi, preventing
212the cursor from going beyond the last character on the line. By using
213Emacs commands directly (such as those bound to arrow keys), it is possible
214to get the cursor beyond the end-of-line. However, this won't (or
215shouldn't) happen if you restrict yourself to standard Vi keys, unless you
76f1a3c3 216modify the default editing style. @xref{Customization}.
4009494e
GM
217
218In addition to the @dfn{point}, there is another distinguished buffer
219position called the @dfn{mark}. @xref{Mark,,Mark,emacs,The GNU Emacs
220manual}, for more info on the mark. The text between the @dfn{point} and
221the @dfn{mark} is called the @dfn{region} of the buffer. For the Viper
222user, this simply means that in addition to the Vi textmarkers a--z, there
223is another marker called @dfn{mark}. This is similar to the unnamed Vi
224marker used by the jump commands @kbd{``} and @kbd{''}, which move the
225cursor to the position of the last absolute jump. Viper provides access to
226the region in most text manipulation commands as @kbd{r} and @kbd{R} suffix
227to commands that operate on text regions, e.g., @kbd{dr} to delete region,
228etc.
229
230Furthermore, Viper lets Ex-style commands to work on the current region.
231This is done by typing a digit argument before @kbd{:}. For instance,
232typing @kbd{1:} will prompt you with something like @emph{:123,135},
233assuming that the current region starts at line 123 and ends at line
234135. There is no need to type the line numbers, since Viper inserts them
235automatically in front of the Ex command.
236
76f1a3c3 237@xref{Basics}, for more info.
4009494e
GM
238
239@cindex window
240@cindex mode line
241@cindex buffer information
242@cindex Minibuffer
243@cindex command line
244@cindex buffer (modified)
245
246Emacs divides the screen into tiled @dfn{windows}. You can see the
247contents of a buffer through the window associated with the buffer. The
248cursor of the screen is positioned on the character after @dfn{point}.
249Every window has a @dfn{mode line} that displays information about the buffer.
250You can change the format of the mode
251line, but normally if you see @samp{**} at the beginning of a mode line it
252means that the buffer is @dfn{modified}. If you write out the contents of
253a buffer to a file, then the buffer will become not modified. Also if
254you see @samp{%%} at the beginning of the mode line, it means that the file
255associated with the buffer is write protected. The mode line will also
256show the buffer name and current major and minor modes (see below).
257A special buffer called @dfn{Minibuffer} is displayed as the last line
9ff0b02b
MK
258in a minibuffer window. The minibuffer window is used for command input
259output. Viper uses minibuffer window for @kbd{/} and @kbd{:}
76f1a3c3 260commands.
4009494e
GM
261
262@cindex mode
263@cindex keymap
264@cindex local keymap
265@cindex global keymap
266@cindex major mode
267@cindex minor mode
268
269An Emacs buffer can have a @dfn{major mode} that customizes Emacs for
270editing text of a particular sort by changing the functionality of the keys.
271Keys are defined using a @dfn{keymap} that records the bindings between
272keystrokes and
273functions. The @dfn{global keymap} is common to all the
274buffers. Additionally, each buffer has its @dfn{local keymap} that determines the
275@dfn{mode} of the buffer. If a function is bound to some key in the local
276keymap then that function will be executed when you type the key.
277If no function is bound to a key in the
278local map, however, the function bound to the key in the global map
279will be executed. @xref{Major Modes,Major Modes,Major Modes,emacs,The
76f1a3c3 280GNU Emacs Manual}, for more information.
4009494e
GM
281
282A buffer can also have a @dfn{minor mode}. Minor modes are options that
283you can use or not. A buffer in @code{text-mode} can have
284@code{auto-fill-mode} as minor mode, which can be turned off or on at
285any time. In Emacs, a minor mode may have it own keymap,
286which overrides the local keymap when the minor mode is turned on. For
287more information, @pxref{Minor Modes,Minor Modes,Minor Modes,emacs,The
76f1a3c3 288GNU Emacs Manual}.
4009494e
GM
289
290@cindex Viper as minor mode
291@cindex Control keys
292@cindex Meta key
293
294Viper is implemented as a collection of minor modes. Different minor modes
295are involved when Viper emulates Vi command mode, Vi insert mode, etc.
296You can also turn Viper on and off at any time while in Vi command mode.
297@xref{States in Viper}, for
76f1a3c3 298more information.
4009494e
GM
299
300Emacs uses Control and Meta modifiers. These are denoted as C and M,
1df7defd 301e.g., @kbd{^Z} as @kbd{C-z} and @kbd{Meta-x} as @kbd{M-x}. The Meta key is
4009494e
GM
302usually located on each side of the Space bar; it is used in a manner
303similar to the Control key, e.g., @kbd{M-x} means typing @kbd{x} while
304holding the Meta key down. For keyboards that do not have a Meta key,
305@key{ESC} is used as Meta. Thus @kbd{M-x} is typed as @kbd{@key{ESC}
306x}. Viper uses @key{ESC} to switch from Insert state to Vi state. Therefore
307Viper defines @kbd{C-\} as its Meta key in Vi state. @xref{Vi State}, for
76f1a3c3 308more info.
4009494e
GM
309
310Emacs is structured as a Lisp interpreter around a C core. Emacs keys
311cause Lisp functions to be called. It is possible to call these
312functions directly, by typing @kbd{M-x function-name}.
313
1a5d3215 314@node Loading Viper
4009494e
GM
315@section Loading Viper
316
317The most common way to load it automatically is to include the following
318lines (in the given order!):
319
320@lisp
321(setq viper-mode t)
322(require 'viper)
323@end lisp
324
325@noindent
326in your @file{~/.emacs} file. The @file{.emacs} file is placed in your
327home directory and it is be executed every time you invoke Emacs. This is
328the place where all general Emacs customization takes place. Beginning with
329version 20.0, Emacsen have an interactive interface, which simplifies the
330job of customization significantly.
331
ece4bae5 332Viper also uses the file @file{~/.emacs.d/viper} for Viper-specific customization.
4009494e
GM
333The location of Viper customization file can be changed by setting the
334variable @code{viper-custom-file-name} in @file{.emacs} @emph{prior} to loading
335Viper.
336
337The latest versions of Emacs have an interactive customization facility,
338which allows you to (mostly) bypass the use of the @file{.emacs} and
ece4bae5 339@code{viper-custom-file-name} files. You can reach this customization
4009494e
GM
340facility from within Viper's VI state by executing the Ex command
341@kbd{:customize}.
342
343Once invoked, Viper will arrange to bring up Emacs buffers in Vi state
344whenever this makes sense.
345@xref{Packages that Change Keymaps}, to find out when forcing Vi command state
346on a buffer may be counter-productive.
347
348Even if your @file{.emacs} file does not invoke Viper automatically,
349you can still load Viper and enter the Vi command state by typing the
350following from within Emacs:
351
352@lisp
353M-x viper-mode
354@end lisp
355
356When Emacs first comes up, if you have not specified a file on the
357command line, it will show the @samp{*scratch*} buffer, in the
358@samp{Lisp Interaction} mode. After you invoke Viper, you can start
359editing files by using @kbd{:e}, @kbd{:vi}, or @kbd{v} commands.
360(@xref{File and Buffer Handling}, for more information on @kbd{v} and other
361new commands that, in many cases, are more convenient than @kbd{:e},
76f1a3c3 362@kbd{:vi}, and similar old-style Vi commands.)
4009494e
GM
363
364Finally, if at some point you would want to de-Viperize your running
365copy of Emacs after Viper has been loaded, the command @kbd{M-x
366viper-go-away} will do it for you. The function @code{toggle-viper-mode}
367toggles Viperization of Emacs on and off.
368
1a5d3215 369@node States in Viper
4009494e
GM
370@section States in Viper
371
372@kindex @kbd{C-z}
373@kindex @key{ESC}
374@kindex @kbd{i}
375@cindex Emacs state
376@cindex Vi state
377@cindex Insert state
378@cindex Replace state
379@cindex Ex commands
380@findex @code{viper-go-away}
381@findex @code{toggle-viper-mode}
382
383Viper has four states, Emacs, Vi, Insert, and Replace.
384
385@table @samp
386@item Emacs state
387This is the state plain vanilla Emacs is normally in. After you have loaded
388Viper, @kbd{C-z} will normally take you to Vi command state. Another
389@kbd{C-z} will take you back to Emacs state. This toggle key can be
390changed, @pxref{Customization} You can also type @kbd{M-x viper-mode} to
76f1a3c3 391change to Vi state.
4009494e
GM
392
393
394For users who chose to set their user level to 1 at Viper setup time,
395switching to Emacs state is deliberately made harder in order to not
396confuse the novice user. In this case, @kbd{C-z} will either iconify Emacs
397(if Emacs runs as an application under X) or it will stop Emacs (if
398Emacs runs on a dumb terminal or in an Xterm window).
399
400@item Vi state
401This is the Vi command mode. Any of the Vi commands, such as @kbd{i, o, a},
402@dots{}, will take you to Insert state. All Vi commands may
403be used in this mode. Most Ex commands can also be used.
404For a full list of Ex commands supported by Viper, type
405@kbd{:} and then @key{TAB}. To get help on any issue, including the Ex
406commands, type @kbd{:help}. This will invoke Viper Info
407(if it is installed). Then typing @kbd{i} will prompt you for a topic to
408search in the index. Note: to search for Ex commands in the index, you
409should start them with a @kbd{:}, e.g., @kbd{:WW}.
410
411In Viper, Ex commands can be made to work on the current Emacs region.
412This is done by typing a digit argument before @kbd{:}.
413For instance, typing @kbd{1:} will prompt you with something like
414@emph{:123,135}, assuming that the current region starts at line 123 and
415ends at line 135. There is no need to type the line numbers, since Viper
416inserts them automatically in front of the Ex command.
417
418@item Insert state
419Insert state is the Vi insertion mode. @key{ESC} will take you back to
420Vi state. Insert state editing can be done, including auto-indentation. By
421default, Viper disables Emacs key bindings in Insert state.
422
423@item Replace state
424Commands like @kbd{cw} invoke the Replace state. When you cross the
425boundary of a replacement region (usually designated via a @samp{$} sign),
426it will automatically change to Insert state. You do not have to worry
427about it. The key bindings remain practically the same as in Insert
428state. If you type @key{ESC}, Viper will switch to Vi command mode, terminating the
76f1a3c3 429replacement state.
4009494e
GM
430@end table
431
432@cindex mode line
433
434The modes are indicated on the @dfn{mode line} as <E>, <I>, <V>, and <R>,
435so that the multiple modes do not confuse you. Most of your editing can be
436done in Vi and Insert states. Viper will try to make all new buffers be in Vi
437state, but sometimes they may come up in Emacs state. @kbd{C-z}
438will take you to Vi state in such a case. In some major modes, like Dired,
439Info, Gnus, etc., you should not switch to Vi state (and Viper will not
440attempt to do so) because these modes are not intended for text editing and
441many of the Vi keys have special meaning there. If you plan to read news,
442browse directories, read mail, etc., from Emacs (which you should start
443doing soon!), you should learn about the meaning of the various keys in
444those special modes (typing @kbd{C-h m} in a buffer provides
445help with key bindings for the major mode of that buffer).
446
f99f1641 447If you switch to Vi in Dired or similar modes, no harm is done. It is just
4009494e
GM
448that the special key bindings provided by those modes will be temporarily
449overshadowed by Viper's bindings. Switching back to Viper's Emacs state
450will revive the environment provided by the current major mode.
451
452States in Viper are orthogonal to Emacs major modes, such as C mode or Dired
453mode. You can turn Viper on and off for any Emacs state. When Viper is turned
454on, Vi state can be used to move around. In Insert state, the bindings for
455these modes can be accessed. For beginners (users at Viper levels 1 and 2),
456these bindings are suppressed in Insert state, so that new users are not
457confused by the Emacs states. Note that unless you allow Emacs bindings in
458Insert state, you cannot do many interesting things, like language
459sensitive editing. For the novice user (at Viper level 1), all major mode
460bindings are turned off in Vi state as well. This includes the bindings for
461key sequences that start with @kbd{C-c}, which practically means that all
462major mode bindings are unsupported. @xref{Customization}, to find out how
463to allow Emacs keys in Insert state.
464
465@menu
466* Emacs State:: This is the state you should learn more about when
467 you get up to speed with Viper.
468* Vi State:: Vi commands are executed in this state.
469* Insert State:: You can enter text, and also can do sophisticated
470 editing if you know enough Emacs commands.
471* Replace State:: Like Insert mode, but it is invoked via the
472 replacement commands, such as cw, C, R, etc.
473@end menu
474
1a5d3215 475@node Emacs State
4009494e
GM
476@subsection Emacs State
477
478@kindex @kbd{C-z}
479@cindex Emacs state
480
481
482You will be in this mode only by accident (hopefully). This is the state
483Emacs is normally in (imagine!!). Now leave it as soon as possible by
484typing @kbd{C-z}. Then you will be in Vi state (sigh of relief) :-).
485
486Emacs state is actually a Viperism to denote all the major and minor modes
487(@pxref{Emacs Preliminaries}) other than Viper that Emacs can be in. Emacs
488can have several modes, such as C mode for editing C programs, LaTeX mode
489for editing LaTeX documents, Dired for directory editing, etc. These are
490major modes, each with a different set of key-bindings. Viper states are
491orthogonal to these Emacs major modes. The presence of these language
492sensitive and other modes is a major win over Vi. @xref{Improvements over
76f1a3c3 493Vi}, for more.
4009494e
GM
494
495The bindings for these modes can be made available in the Viper Insert state
496as well as in Emacs state. Unless you specify your user level as 1 (a
497novice), all major mode key sequences that start with @kbd{C-x} and
498@kbd{C-c} are also available in Vi state. This is important because major
499modes designed for editing files, such as cc-mode or latex-mode, use key
500sequences that begin with @kbd{C-x} and @kbd{C-c}.
501
502There is also a key that lets you temporarily escape to Vi command state
503from the Insert state: typing @kbd{C-z} will let you execute a
504single Vi command while staying in Viper's Insert state.
505
506
1a5d3215 507@node Vi State
4009494e
GM
508@subsection Vi State
509
510@cindex Vi state
511
512This is the Vi command mode. When Viper is in Vi state, you will see the sign
513<V> in the mode line. Most keys will work as in Vi. The notable
514exceptions are:
515
516@table @kbd
517@item C-x
518@kindex @kbd{C-x}
519@kbd{C-x} is used to invoke Emacs commands, mainly those that do window
520management. @kbd{C-x 2} will split a window, @kbd{C-x 0} will close a
521window. @kbd{C-x 1} will close all other windows. @kbd{C-xb} is used to
522switch buffers in a window, and @kbd{C-xo} to move through windows.
523These are about the only necessary keystrokes.
524For the rest, see the GNU Emacs Manual.
525
526@item C-c
527@kindex @kbd{C-c}
528For user levels 2 and higher, this key serves as a prefix key for the key
529sequences used by various major modes. For users at Viper level 1, @kbd{C-c}
530simply beeps.
531
532@item C-g and C-]
533@kindex @kbd{C-g}
534@kindex @kbd{C-]}
535
536These are the Emacs @samp{quit} keys.
537There will be cases where you will have to
538use @kbd{C-g} to quit. Similarly, @kbd{C-]} is used to exit
539@samp{Recursive Edits} in Emacs for which there is no comparable Vi
540functionality and no key-binding. Recursive edits are indicated by
541@samp{[]} brackets framing the modes on the mode line.
542@xref{Recursive Edit,Recursive
543Edit,Recursive Edit,emacs,The GNU Emacs Manual}.
544At user level 1, @kbd{C-g} is bound to @code{viper-info-on-file}
545function instead.
4009494e
GM
546@item C-\
547@kindex @kbd{C-\}
548@cindex Meta key
549
550Viper uses @key{ESC} as a switch between Insert and Vi states. Emacs uses
551@key{ESC} for Meta. The Meta key is very important in Emacs since many
552functions are accessible only via that key as @kbd{M-x function-name}.
553Therefore, we need to simulate it somehow. In Viper's Vi, Insert, and
554Replace states, the meta key is set to be @kbd{C-\}. Thus, to get
555@kbd{M-x}, you should type @kbd{C-\ x} (if the keyboard has no Meta key,
556which is rare these days).
557This works both in the Vi command state and in the Insert and Replace
558states. In Vi command state, you can also use @kbd{\ @key{ESC}} as the
559meta key.
560
561Note: Emacs binds @kbd{C-\} to a function that offers to change the
562keyboard input method in the multilingual environment. Viper overrides this
563binding. However, it is still possible to switch the input method by typing
564@kbd{\ C-\} in the Vi command state and @kbd{C-z \ C-\} in the Insert state.
565Or you can use the MULE menu in the menubar.
566@end table
567@noindent
568Other differences are mostly improvements. The ones you should know
569about are:
570
571@table @samp
572@item Undo
573@kindex @kbd{u}
574@kbd{u} will undo. Undo can be repeated by the @kbd{.} key. Undo itself
575can be undone. Another @kbd{u} will change the direction. The presence
576of repeatable undo means that @kbd{U}, undoing lines, is not very
577important. Therefore, @kbd{U} also calls @code{viper-undo}.
578@cindex multiple undo
579@cindex undo
580
581
582@item Counts
583Most commands, @kbd{~}, @kbd{[[}, @kbd{p}, @kbd{/}, @dots{}, etc., take counts.
584
585@comment ]] Just to balance parens
586@item Regexps
587Viper uses Emacs Regular Expressions for searches. These are a superset of
588Vi regular
589expressions, excepting the change-of-case escapes @samp{\u}, @samp{\L},
590@dots{}, etc. @xref{Regexps,,Syntax of Regular Expressions,emacs,The
591GNU Emacs Manual}, for details.
592Files specified to @kbd{:e} use @code{csh} regular expressions
593(globbing, wildcards, what have you).
594However, the function @code{viper-toggle-search-style}, bound to @kbd{C-c /},
595lets the user switch from search with regular expressions to plain vanilla
596search and vice versa. It also lets one switch from case-sensitive search
597to case-insensitive and back.
598@xref{Viper Specials}, for more details.
599@cindex regular expressions
600@cindex vanilla search
601@cindex case-sensitive search
602@cindex case-insensitive search
603@kindex @kbd{C-c /}
604
605@item Ex commands
606@cindex Ex commands
607The current working directory of a buffer is automatically inserted in the
608minibuffer if you type @kbd{:e} then space. Absolute filenames are
609required less often in Viper. For file names, Emacs uses a convention that
610is slightly different from other programs. It is designed to minimize the
611need for deleting file names that Emacs provides in its prompts. (This is
612usually convenient, but occasionally the prompt may suggest a wrong file
613name for you.) If you see a prompt @kbd{/usr/foo/} and you wish to edit the
ece4bae5
GM
614file @kbd{~/.file}, you don't have to erase the prompt. Instead, simply
615continue typing what you need. Emacs will interpret @kbd{/usr/foo/~/.file}
4009494e
GM
616correctly. Similarly, if the prompt is @kbd{~/foo/} and you need to get to
617@kbd{/bar/file}, keep typing. Emacs interprets @kbd{~/foo//bar/} as
618@kbd{/bar/file}, since when it sees @samp{//}, it understands that
619@kbd{~/foo/} is to be discarded.
620
621The command @kbd{:cd} will change the default directory for the
622current buffer. The command @kbd{:e} will interpret the
623filename argument in @code{csh}. @xref{Customization}, if you
624want to change the default shell.
625The command @kbd{:next} takes counts from
626@kbd{:args}, so that @kbd{:rew} is obsolete. Also, @kbd{:args} will show only
627the invisible files (i.e., those that are not currently seen in Emacs
628windows).
629
630When applicable, Ex commands support file completion and history. This
631means that by typing a partial file name and then @key{TAB}, Emacs will try
632to complete the name or it will offer a menu of possible completions.
633This works similarly to Tcsh and extends the behavior of Csh. While Emacs
634is waiting for a file name, you can type @kbd{M-p} to get the previous file
635name you typed. Repeatedly typing @kbd{M-p} and @kbd{M-n} will let you
636browse through the file history.
637
638Like file names, partially typed Ex commands can be completed by typing
639@key{TAB}, and Viper keeps the history of Ex commands. After typing
640@kbd{:}, you can browse through the previously entered Ex commands by
641typing @kbd{M-p} and @kbd{M-n}. Viper tries to rationalize when it puts Ex
642commands on the history list. For instance, if you typed @kbd{:w!@: foo},
643only @kbd{:w!} will be placed on the history list. This is because the
644last history element is the default that can be invoked simply by typing
645@kbd{: @key{RET}}. If @kbd{:w!@: foo} were placed on the list, it would be all to
646easy to override valuable data in another file. Reconstructing the full
647command, @kbd{:w!@: foo}, from the history is still not that hard, since Viper
648has a separate history for file names. By typing @kbd{: M-p}, you will get
9ff0b02b 649@kbd{:w!} in the minibuffer. Then, repeated @kbd{M-p} will get you through
4009494e
GM
650the file history, inserting one file name after another.
651
652In contrast to @kbd{:w!@: foo}, if the command were @kbd{:r foo}, the entire
653command will appear in the history list. This is because having @kbd{:r}
654alone as a default is meaningless, since this command requires a file
655argument.
4009494e
GM
656@end table
657@noindent
9ff0b02b 658As in Vi, Viper's destructive commands can be re-executed by typing `@kbd{.}'.
4009494e
GM
659However, in addition, Viper keeps track of the history of such commands. This
660history can be perused by typing @kbd{C-c M-p} and @kbd{C-c M-n}.
661Having found the appropriate command, it can be then executed by typing
662`@kbd{.}'.
663@xref{Improvements over Vi}, for more information.
664
1a5d3215 665@node Insert State
4009494e
GM
666@subsection Insert State
667
668@cindex Insert state
669
670To avoid confusing the beginner (at Viper level 1 and 2), Viper makes only the
671standard Vi keys available in Insert state. The implication is that
672Emacs major modes cannot be used in Insert state.
673It is strongly recommended that as soon as you are comfortable, make the
674Emacs state bindings visible (by changing your user level to 3 or higher).
675@xref{Customization},
76f1a3c3 676to see how to do this.
4009494e
GM
677
678Once this is done, it is possible to do quite a bit of editing in
679Insert state. For instance, Emacs has a @dfn{yank} command, @kbd{C-y},
680which is similar to Vi's @kbd{p}. However, unlike @kbd{p}, @kbd{C-y} can be
681used in Insert state of Viper. Emacs also has a kill ring where it keeps
682pieces of text you deleted while editing buffers. The command @kbd{M-y} is
44e97401 683used to delete the text previously put back by Emacs's @kbd{C-y} or by Vi's
4009494e
GM
684@kbd{p} command and reinsert text that was placed on the kill-ring earlier.
685
686This works both in Vi and Insert states.
687In Vi state, @kbd{M-y} is a much better alternative to the usual Vi's way
688of recovering the 10 previously deleted chunks of text. In Insert state,
689you can
690use this as follows. Suppose you deleted a piece of text and now you need
691to re-insert it while editing in Insert mode. The key @kbd{C-y} will put
692back the most recently deleted chunk. If this is not what you want, type
693@kbd{M-y} repeatedly and, hopefully, you will find the chunk you want.
694
695Finally, in Insert and Replace states, Viper provides the history of
696pieces of text inserted in previous insert or replace commands. These
697strings of text can be recovered by repeatedly typing @kbd{C-c M-p} or
698@kbd{C-c M-n} while in Insert or Replace state. (This feature is disabled
699in the minibuffer: the above keys are usually bound to other histories,
700which are more appropriate in the minibuffer.)
701
702
703@cindex Meta key
704
705You can call Meta functions from Insert state. As in Vi state, the Meta key
706is @kbd{C-\}. Thus @kbd{M-x} is typed as @kbd{C-\ x}.
707
708Other Emacs commands that are useful in Insert state are @kbd{C-e}
709and @kbd{C-a}, which move the cursor to the end and the beginning of the
710current line, respectively. You can also use @kbd{M-f} and @kbd{M-b},
711which move the cursor forward (or backward) one word.
712If your display has a Meta key, these functions are invoked by holding the
713Meta key and then typing @kbd{f} and @kbd{b}, respectively. On displays
714without the Meta key, these functions are invoked by typing
715@kbd{C-\ f} and @kbd{C-\ b} (@kbd{C-\} simulates the Meta key in Insert
716state, as explained above).
717
718The key @kbd{C-z} is sometimes also useful in Insert state: it allows you
719to execute a single command in Vi state without leaving the Insert state!
720For instance, @kbd{C-z d2w} will delete the next two words without leaving
721the Insert state.
722
723When Viper is in Insert state, you will see <I> in the mode line.
724
1a5d3215 725@node Replace State
4009494e
GM
726@subsection Replace State
727
728@cindex Replace state
729
730This state is entered through Vi replacement commands, such as @kbd{C},
731@kbd{cw}, etc., or by typing @kbd{R}. In Replace state, Viper puts <R> in
732the mode line to let you know which state is in effect. If Replace state is
733entered through @kbd{R}, Viper stays in that state until the user hits
734@key{ESC}. If this state is entered via the other replacement commands,
735then Replace state is in effect until you hit @key{ESC} or until you cross
736the rightmost boundary of the replacement region. In the latter case, Viper
737changes its state from Replace to Insert (which you will notice by the
738change in the mode line).
739
740Since Viper runs under Emacs, it is possible to switch between buffers
741while in Replace state. You can also move the cursor using the arrow keys
742(even on dumb terminals!)@: and the mouse. Because of this freedom (which is
743unattainable in regular Vi), it is possible to take the cursor outside the
744replacement region. (This may be necessary for several reasons, including
745the need to enable text selection and region-setting with the mouse.)
746
747The issue then arises as to what to do when the user
748hits the @key{ESC} key. In Vi, this would cause the text between cursor and
749the end of the replacement region to be deleted. But what if, as is
750possible in Viper, the cursor is not inside the replacement region?
751
752To solve the problem, Viper keeps track of the last cursor position while it
753was still inside the replacement region. So, in the above situation, Viper
754would delete text between this position and the end of the replacement
755region.
756
1a5d3215 757@node The Minibuffer
4009494e
GM
758@section The Minibuffer
759
760@cindex Minibuffer
761
9ff0b02b 762The minibuffer is where commands are entered in. Editing can be done
4009494e
GM
763by commands from Insert state, namely:
764
765@table @kbd
766@item C-h
767Backspace
768@item C-w
769Delete Word
770@item C-u
771Erase line
772@item C-v
773Quote the following character
774@item @key{RET}
775Execute command
776@item C-g and C-]
777Emacs quit and abort keys. These may be necessary. @xref{Vi State}, for an
778explanation.
779@item M-p and M-n
780These keys are bound to functions that peruse minibuffer history. The
781precise history to be perused depends on the context. It may be the history
782of search strings, Ex commands, file names, etc.
9ff0b02b
MK
783@item C-s
784If the minibuffer is entered via the Viper search commands @kbd{/} or
785@kbd{?}, then this key inserts the last search string used by the
786Emacs incremental search command
787(which is bound to @kbd{C-s} everywhere except in this case).
4009494e
GM
788@end table
789
9ff0b02b
MK
790Most of the Emacs keys are functional in the minibuffer. While in the
791minibuffer, Viper tries to make editing resemble Vi's behavior when the
4009494e 792latter is waiting for the user to type an Ex command. In particular, you
9ff0b02b 793can use the regular Vi commands to edit the minibuffer. You can switch
4009494e 794between the Vi state and Insert state at will, and even use the replace mode.
9ff0b02b 795Initially, the minibuffer comes up in Insert state.
4009494e 796
9ff0b02b 797Some users prefer plain Emacs bindings in the minibuffer. To this end, set
ece4bae5
GM
798@code{viper-vi-style-in-minibuffer} to @code{nil} in
799your Viper customization file. @xref{Customization}, to learn how to do this.
4009494e 800
9ff0b02b
MK
801When the minibuffer changes Viper states, you will notice that the appearance
802of the text there changes as well. This is useful because the minibuffer
4009494e 803has no mode line to tell which Vi state it is in.
9ff0b02b 804The appearance of the text in the minibuffer can be changed.
4009494e
GM
805@xref{Viper Specials}, for more details.
806
1a5d3215 807@node Multiple Files in Viper
4009494e
GM
808@section Multiple Files in Viper
809
810@cindex multiple files
811@cindex managing multiple files
812
813Viper can edit multiple files. This means, for example that you never need
814to suffer through @code{No write since last change} errors.
815Some Viper elements are common over all the files.
816
817@table @samp
818@item Textmarkers
819@cindex markers
820@cindex textmarkers
821Textmarkers remember @emph{files and positions}.
822If you set marker @samp{a} in
823file @file{foo}, start editing file @file{bar} and type @kbd{'a}, then
824@emph{YOU WILL SWITCH TO FILE @file{foo}}. You can see the contents of a
825textmarker using the Viper command @kbd{[<a-z>} where <a-z> are the
76f1a3c3 826textmarkers, e.g., @kbd{[a} to view marker @samp{a} .
4009494e
GM
827@item Repeated Commands
828Command repetitions are common over files. Typing @kbd{!!} will repeat the
829last @kbd{!} command whichever file it was issued from.
830Typing @kbd{.} will repeat the last command from any file, and
831searches will repeat the last search. Ex commands can be repeated by typing
76f1a3c3 832@kbd{: @key{RET}}.
4009494e
GM
833Note: in some rare cases, that @kbd{: @key{RET}} may do something dangerous.
834However, usually its effect can be undone by typing @kbd{u}.
835@item Registers
836@cindex registers
837Registers are common to files. Also, text yanked with @kbd{y} can be
838put back (@kbd{p}) into any file. The Viper command @kbd{]<a-z>}, where <a-z> are
839the registers, can be used to look at the contents of a register, e.g.,
840type @kbd{]a} to view register @samp{a}.
841
842There is one difference in text deletion that you should be
843aware of. This difference comes from Emacs and was adopted in Viper
844because we find it very useful. In Vi, if you delete a line, say, and then
845another line, these two deletions are separated and are put back
846separately if you use the @samp{p} command. In Emacs (and Viper), successive
847series of deletions that are @emph{not interrupted} by other commands are
848lumped together, so the deleted text gets accumulated and can be put back
849as one chunk. If you want to break a sequence of deletions so that the
850newly deleted text could be put back separately from the previously deleted
851text, you should perform a non-deleting action, e.g., move the cursor one
852character in any direction.
853@item Absolute Filenames
854@cindex absolute file names
855The current directory name for a file is automatically prepended to the
856file name in any
857@kbd{:e}, @kbd{:r}, @kbd{:w}, etc., command (in Emacs, each buffer has a
858current directory).
9ff0b02b 859This directory is inserted in the minibuffer once you type space after
4009494e
GM
860@kbd{:e, r}, etc. Viper also supports completion of file names and Ex
861commands (@key{TAB}), and it keeps track of
862command and file history (@kbd{M-p}, @kbd{M-n}).
863Absolute filenames are required less
864often in Viper.
865
866You should be aware that Emacs interprets @kbd{/foo/bar//bla} as
867@kbd{/bla} and @kbd{/foo/~/bar} as @kbd{~/bar}. This is designed to
868minimize the need for erasing file names that Emacs suggests in its
869prompts, if a suggested file name is not what you wanted.
870
871The command @kbd{:cd} will change the default directory for the
872current Emacs buffer. The Ex command @kbd{:e} will interpret the
873filename argument in @samp{csh}, by default. @xref{Customization}, if you
874want to change this.
875@end table
876
877@noindent
878Currently undisplayed files can be listed using the @kbd{:ar} command. The
879command @kbd{:n} can be given counts from the @kbd{:ar} list to switch to
880other files. For example, use `:n3' to move to the third file in that list.
881
1a5d3215 882@node Unimplemented Features
4009494e
GM
883@section Unimplemented Features
884
885Unimplemented features include:
886
887@itemize @bullet
888@item
889@kbd{:ab} and @kbd{:una} are not implemented, since
890@kbd{:ab} is considered obsolete, since Emacs has much
891more powerful facilities for defining abbreviations.
892@item
893@kbd{:set option?} is not implemented. The current
894@kbd{:set} can also be used to set Emacs variables.
895@item
896@kbd{:se list} requires modification of the display code for Emacs, so
897it is not implemented.
898A useful alternative is @code{cat -t -e file}. Unfortunately, it cannot
899be used directly inside Emacs, since Emacs will obdurately change @samp{^I}
76f1a3c3 900back to normal tabs.
4009494e
GM
901@end itemize
902
1a5d3215 903@node Improvements over Vi
4009494e
GM
904@chapter Improvements over Vi
905
906Some common problems with Vi and Ex have been solved in Viper. This
907includes better implementation of existing commands, new commands, and
908the facilities provided by Emacs.
909
910@menu
911* Basics:: Basic Viper differences, Multi-file effects.
912* Undo and Backups:: Multiple undo, auto-save, backups and changes
913* History:: History for Ex and Vi commands.
914* Macros and Registers:: Keyboard Macros (extended ".")@: @@reg execution.
915* Completion:: Filename and Command Completion for Ex.
916* Improved Search:: Incremental Search and Buffer Content Search.
917* Abbreviation Facilities:: Normal Abbrevs, Templates, and Dynamic Abbrevs.
918* Movement and Markers:: Screen Editor movements, viewing textmarkers.
919* New Commands:: Commands that do not exist in Vi.
920* Useful Packages:: A Sampling of some Emacs packages, and things
921 you should know about.
922@end menu
923
1a5d3215 924@node Basics
4009494e
GM
925@section Basics
926
927The Vi command set is based on the idea of combining motion commands
928with other commands. The motion command is used as a text region
929specifier for other commands.
930We classify motion commands into @dfn{point commands} and
76f1a3c3 931@dfn{line commands}.
4009494e
GM
932
933@cindex point commands
934
935The point commands are:
936
937@quotation
938@kbd{h}, @kbd{l}, @kbd{0}, @kbd{$}, @kbd{w}, @kbd{W}, @kbd{b}, @kbd{B},
939@kbd{e}, @kbd{E}, @kbd{(}, @kbd{)}, @kbd{/}, @kbd{?}, @kbd{`}, @kbd{f},
940@kbd{F}, @kbd{t}, @kbd{T}, @kbd{%}, @kbd{;}, @kbd{,}, @kbd{^}
941@end quotation
942
943@cindex line commands
944
945The line commands are:
946
947@quotation
948@kbd{j}, @kbd{k}, @kbd{+}, @kbd{-}, @kbd{H}, @kbd{M}, @kbd{L}, @kbd{@{},
949@kbd{@}}, @kbd{G}, @kbd{'}, @kbd{[[}, @kbd{]]}, @kbd{[]}
950@end quotation
951
952@cindex region
953@cindex region specification
954@cindex expanding (region)
955@cindex describing regions
956@cindex movement commands
957
958@noindent
959If a point command is given as an argument to a modifying command, the
960region determined by the point command will be affected by the modifying
961command. On the other hand, if a line command is given as an argument to a
962modifying command, the region determined by the line command will be
963enlarged so that it will become the smallest region properly containing the
964region and consisting of whole lines (we call this process @dfn{expanding
965the region}), and then the enlarged region will be affected by the modifying
966command.
967Text Deletion Commands (@pxref{Deleting Text}), Change commands
968(@pxref{Changing Text}), even Shell Commands (@pxref{Shell Commands})
969use these commands to describe a region of text to operate on.
970Thus, type @kbd{dw} to delete a word, @kbd{>@}} to shift a paragraph, or
971@kbd{!'afmt} to format a region from @samp{point} to textmarker
972@samp{a}.
973
974@cindex r and R region specifiers
975
976Viper adds the region specifiers @samp{r} and @samp{R}. Emacs has a
977special marker called @dfn{mark}. The text-area between the current cursor
978position @dfn{point} and the @dfn{mark} is called the @dfn{region}.
979@samp{r} specifies the raw region and @samp{R} is the expanded region
980(i.e., the minimal contiguous chunk of full lines that contains the raw
981region).
982@kbd{dr} will now delete the region, @kbd{>r} will shift it, etc.
983@kbd{r,R} are not motion commands, however. The special mark is set by
984@kbd{m.} and other commands. @xref{Marking}, for more info.
985
986Viper also adds counts to most commands for which it would make sense.
987
988In the Overview chapter, some Multiple File issues were discussed
989(@pxref{Multiple Files in Viper}). In addition to the files, Emacs has
990buffers. These can be seen in the @kbd{:args} list and switched using
991@kbd{:next} if you type @kbd{:set ex-cycle-through-non-files t}, or
ece4bae5
GM
992specify @code{(setq ex-cycle-through-non-files t)} in your
993Viper customization file. @xref{Customization}, for details.
4009494e 994
1a5d3215 995@node Undo and Backups
4009494e
GM
996@section Undo and Backups
997
998@cindex undo
999
1000Viper provides multiple undo. The number of undo's and the size is limited
1001by the machine. The Viper command @kbd{u} does an undo. Undo can be
1002repeated by typing @kbd{.} (a period). Another @kbd{u} will undo the undo,
1003and further
1004@kbd{.} will repeat it. Typing @kbd{u} does the first undo, and changes the
1005direction.
1006
1007@cindex backup files
1008@cindex auto save
1009
1010Since the undo size is limited, Viper can create backup files and
1011auto-save files. It will normally do this automatically. It is possible
1012to have numbered backups, etc. For details, @pxref{Backup,,Backup and
76f1a3c3 1013Auto-Save,emacs,The GNU Emacs Manual}.
4009494e
GM
1014
1015@comment [ balance parens
1016@cindex viewing registers and markers
1017@cindex registers
1018@cindex markers
1019@cindex textmarkers
1020
1021The results of the 9 previous changes are available in the 9 numeric
1022registers, as in Vi. The extra goody is the ability to @emph{view} these
1023registers, in addition to being able to access them through @kbd{p} and
1024@kbd{M-y} (@xref{Insert State}, for details.)
1025The Viper command @kbd{] register} will display the contents of any
1026register, numeric or alphabetical. The related command @kbd{[ textmarker}
1027will show the text around the textmarker. @samp{register} and @samp{textmarker}
1028can be any letters from a through z.
1029@comment ] balance parens
1030
1a5d3215 1031@node History
4009494e
GM
1032@section History
1033
1034@cindex history
1035@cindex Minibuffer
1036
1037History is provided for Ex commands, Vi searches, file names, pieces of
1038text inserted in earlier commands that use Insert or Replace state, and for
1039destructive commands in Vi state. These are
1040useful for fixing those small typos that screw up searches and @kbd{:s},
1041and for eliminating routine associated with repeated typing of file names
1042or pieces of text that need to be inserted frequently.
9ff0b02b 1043At the @kbd{:} or @kbd{/} prompts in the minibuffer, you can do the following:
4009494e
GM
1044
1045@table @kbd
1046@item M-p and M-n
1047To move to previous and next history items. This causes the history
1048items to appear on the command line, where you can edit them, or
1049simply type Return to execute.
1050@item M-r and M-s
1051To search backward and forward through the history.
1052@item @key{RET}
1053Type @key{RET} to accept a default (which is displayed in the prompt).
1054@end table
1055
1056The history of insertions can be perused by
1057typing @kbd{C-c M-p} and @kbd{C-c M-n} while in Insert or Replace state.
1058The history of destructive Vi commands can be perused via the same keys
1059when Viper is in Vi state. @xref{Viper Specials}, for details.
1060
1061All Ex commands have a file history. For instance, typing @kbd{:e}, space
1062and then @kbd{M-p} will bring up the name of the previously typed file
1063name. Repeatedly typing @kbd{M-p}, @kbd{M-n}, etc., will let you browse
1064through the file history.
1065
1066Similarly, commands that have to do with switching buffers
1067have a buffer history, and commands that expect strings or regular
1068expressions keep a history on those items.
1069
1a5d3215 1070@node Macros and Registers
4009494e
GM
1071@section Macros and Registers
1072
1073@cindex keyboard macros
1074@cindex macros
1075@cindex registers
1076@cindex register execution
1077
1078Viper facilitates the use of Emacs-style keyboard macros. @kbd{@@#} will
1079start a macro definition. As you type, the commands will be executed, and
1080remembered (This is called ``learn mode'' in some editors.)
1081@kbd{@@register} will complete the macro, putting it into @samp{register},
1082where @samp{register} is any character from @samp{a} through @samp{z}. Then
1083you can execute this macro using @kbd{@@register}. It is, of course,
1084possible to yank some text into a register and execute it using
1085@kbd{@@register}. Typing @kbd{@@@@}, @kbd{@@RET}, or @kbd{@@C-j} will
76f1a3c3 1086execute the last macro that was executed using @kbd{@@register}.
4009494e
GM
1087
1088Viper will automatically lowercase the register, so that pressing the
1089@kbd{SHIFT} key for @kbd{@@} will not create problems. This is for
1090@kbd{@@} macros and @kbd{"p} @emph{only}. In the case of @kbd{y},
1091@kbd{"Ayy} will append to @emph{register a}. For @kbd{[,],',`}, it
1092is an error to use a Uppercase register name.
1093
1094@comment [ balance parens
1095@cindex viewing registers and markers
1096
1097The contents of a register can be seen by @kbd{]register}. (@kbd{[textmarker}
1098will show the contents of a textmarker).
1099@comment ] balance parens
1100
1101@cindex last keyboard macro
1102
1103The last keyboard macro can also be executed using
1104@kbd{*}, and it can be yanked into a register using @kbd{@@!register}.
1105This is useful for Emacs style keyboard macros defined using @kbd{C-x(}
1106and @kbd{C-x)}. Emacs keyboard macros have more capabilities.
1107@xref{Keyboard Macros,,Keyboard Macros,emacs, The GNU Emacs Manual}, for
76f1a3c3 1108details.
4009494e
GM
1109
1110Keyboard Macros allow an interesting form of Query-Replace:
1111@kbd{/pattern} or @kbd{n} to go to the next pattern (the query), followed by a
1112Keyboard Macro execution @kbd{@@@@} (the replace).
1113
1114Viper also provides Vi-style macros. @xref{Vi Macros}, for details.
1115
1116
1a5d3215 1117@node Completion
4009494e
GM
1118@section Completion
1119
1120@cindex completion
1121
1122Completion is done when you type @key{TAB}. The Emacs completer does not
1123grok wildcards in file names. Once you type a wildcard, the completer will
1124no longer work for that file name. Remember that Emacs interprets a file name
1125of the form @kbd{/foo//bar} as @kbd{/bar} and @kbd{/foo/~/bar} as
1126@kbd{~/bar}.
1127
1a5d3215 1128@node Improved Search
4009494e
GM
1129@section Improved Search
1130
1131@cindex buffer search
1132@cindex word search
1133
1134Viper provides buffer search, the ability to search the buffer for a region
ece4bae5
GM
1135under the cursor. You have to turn this on in your Viper customization file
1136either by calling
4009494e
GM
1137
1138@example
1139(viper-buffer-search-enable)
1140@end example
1141
1142@noindent
1143or by setting @code{viper-buffer-search-char} to, say, @kbd{f3}:
1144@example
1145(setq viper-buffer-search-char ?g)
1146@end example
1147
1148@noindent
1149If the user calls @code{viper-buffer-search-enable} explicitly (the first
1150method), then @code{viper-buffer-search-char} will be set to @kbd{g}.
1151Regardless of how this feature is enabled, the key
1152@code{viper-buffer-search-char} will take movement commands, like
1153@kbd{w,/,e}, to find a region and then search for the contents of that
1154region. This command is very useful for searching for variable names, etc.,
1155in a program. The search can be repeated by @kbd{n} or reversed by @kbd{N}.
1156
1157@cindex incremental search
1158
1159Emacs provides incremental search. As you type the string in, the
1160cursor will move to the next match. You can snarf words from the buffer
1161as you go along. Incremental Search is normally bound to @kbd{C-s} and
1162@kbd{C-r}. @xref{Customization}, to find out how to change the bindings
1163of @kbd{C-r or C-s}.
1164For details, @pxref{Incremental Search,,Incremental
76f1a3c3 1165Search,emacs,The GNU Emacs Manual}.
4009494e
GM
1166
1167@cindex query replace
1168
1169Viper also provides a query replace function that prompts through the
9ff0b02b 1170minibuffer. It is invoked by the @kbd{Q} key in Vi state.
4009494e
GM
1171
1172@cindex mouse search
1173
1174On a window display, Viper supports mouse search, i.e., you can search for a
1175word by clicking on it. @xref{Viper Specials}, for details.
1176
1177Finally, on a window display, Viper highlights search patterns as it finds
1178them. This is done through what is known as @emph{faces} in Emacs. The
1179variable that controls how search patterns are highlighted is
1180@code{viper-search-face}. If you don't want any highlighting at all, put
1181@example
1182(copy-face 'default 'viper-search-face)
1183@end example
1184@vindex @code{viper-search-face}
1185@noindent
ece4bae5
GM
1186in your Viper customization file. If you want to change how patterns are
1187highlighted, you will have to change @code{viper-search-face} to your liking.
1188The easiest way to do this is to use Emacs customization widget, which is
1189accessible from the menubar. Viper customization group is located under the
4009494e
GM
1190@emph{Emulations} customization group, which in turn is under the
1191@emph{Editing} group (or simply by typing @kbd{:customize}). All Viper
1192faces are grouped together under Viper's
1193@emph{Highlighting} group.
1194
1195Try it: it is really simple!
1196
1a5d3215 1197@node Abbreviation Facilities
4009494e
GM
1198@section Abbreviation Facilities
1199
1200@cindex abbrevs
1201
1202It is possible in Emacs to define abbrevs based on the contents of the
1203buffer.
1204Sophisticated templates can be defined using the Emacs abbreviation
1205facilities. @xref{Abbrevs,,Abbreviations,emacs,The GNU Emacs Manual}, for
1206details.
1207
1208@cindex dynamic abbrevs
1209
1210Emacs also provides Dynamic Abbreviations. Given a partial word, Emacs
1211will search the buffer to find an extension for this word. For instance,
1212one can type @samp{Abbreviations} by typing @samp{A}, followed by a keystroke
1213that completed the @samp{A} to @samp{Abbreviations}. Repeated typing
1214will search further back in the buffer, so that one could get
1215@samp{Abbrevs} by repeating the
1216keystroke, which appears earlier in the text. Emacs binds this to
1217@kbd{@key{ESC} /}, so you will have to find a key and bind the function
1218@code{dabbrev-expand} to that key.
1219Facilities like this make Vi's @kbd{:ab} command obsolete.
1220
1a5d3215 1221@node Movement and Markers
4009494e
GM
1222@section Movement and Markers
1223
1224@cindex Ex style motion
1225@cindex line editor motion
1226
1227Viper can be set free from the line--limited movements in Vi, such as @kbd{l}
1228refusing to move beyond the line, @key{ESC} moving one character back,
ece4bae5
GM
1229etc. These derive from Ex, which is a line editor. If your
1230Viper customization file contains
4009494e
GM
1231
1232@example
1233@code{(setq viper-ex-style-motion nil)}
1234@end example
1235
1236@noindent
1237the motion will be a true screen editor motion. One thing you must then
1238watch out for is that it is possible to be on the end-of-line character.
1239The keys @kbd{x} and @kbd{%} will still work correctly, i.e., as if they
1240were on the last character.
1241
1242@vindex @code{viper-syntax-preference}
1243@cindex syntax table
1244
1245The word-movement commands @kbd{w}, @kbd{e}, etc., and the associated
1246deletion/yanking commands, @kbd{dw}, @kbd{yw}, etc., can be made to
1247understand Emacs syntax tables. If the variable
1248@code{viper-syntax-preference} is set to @code{strict-vi} then
1249the meaning of @emph{word} is the same as in
1250Vi. However, if the value is @code{reformed-vi} (the default) then the
1251alphanumeric symbols will be those specified by the current Emacs syntax
1252table (which may be different for different major modes) plus the
1253underscore symbol @kbd{_}, minus some non-word symbols, like '.;,|, etc.
1254Both @code{strict-vi} and @code{reformed-vi} work close to Vi in
1255traditional cases, but @code{reformed-vi} does a better job when editing
1256text in non-Latin alphabets.
1257
1258The user can also specify the value @code{emacs}, which would
1259make Viper use exactly the Emacs notion of word. In particular, the
1260underscore may not be part of a word. Finally, if
1261@code{viper-syntax-preference} is set to @code{extended}, Viper words would
1262consist of characters that are classified as alphanumeric @emph{or} as
1263parts of symbols. This is convenient for writing programs and in many other
1264situations.
1265
1266@code{viper-syntax-preference} is a local variable, so it can have different
1267values for different major modes. For instance, in programming modes it can
1268have the value @code{extended}. In text modes where words contain special
1269characters, such as European (non-English) letters, Cyrillic letters, etc.,
1270the value can be @code{reformed-vi} or @code{emacs}.
1271
1272Changes to @code{viper-syntax-preference} should be done in the hooks to
1273various major modes by executing @code{viper-set-syntax-preference} as in
1274the following example:
1275
1276@example
1277(viper-set-syntax-preference nil "emacs")
1278@end example
1279
1280@findex @code{viper-set-syntax-preference}
1281
1282The above discussion of the meaning of Viper's words concerns only Viper's
1283movement commands. In regular expressions, words remain the same as in
1284Emacs. That is, the expressions @code{\w}, @code{\>}, @code{\<}, etc., use
44e97401 1285Emacs's idea of what is a word, and they don't look into the value of
4009494e
GM
1286variable @code{viper-syntax-preference}. This is because Viper doesn't change
1287syntax tables in fear of upsetting the various major modes that set these
1288tables.
1289
1290@cindex textmarkers
1291
1292Textmarkers in Viper remember the file and the position, so that you can
1293switch files by simply doing @kbd{'a}. If you set up a regimen for using
1294Textmarkers, this is very useful. Contents of textmarkers can be viewed
1295by @kbd{[marker}. (Contents of registers can be viewed by @kbd{]register}).
1296
1a5d3215 1297@node New Commands
4009494e
GM
1298@section New Commands
1299
1300These commands have no Vi analogs.
1301
1302@table @kbd
1303@item C-x, C-c
1304@kindex @kbd{C-x}
1305@kindex @kbd{C-c}
1306These two keys invoke many important Emacs functions. For example, if you
1307hit @kbd{C-x} followed by @kbd{2}, then the current window will be split
1308into 2. Except for novice users, @kbd{C-c} is also set to execute an Emacs
1309command from the current major mode. @key{ESC} will do the same, if you
ece4bae5
GM
1310configure @key{ESC} as Meta by setting @code{viper-no-multiple-ESC} to
1311@code{nil} in your Viper customization file. @xref{Customization}.
1312@kbd{C-\} in Insert, Replace, or Vi states will make Emacs think
1313@kbd{Meta} has been hit.
4009494e
GM
1314@item \
1315@kindex @kbd{\}
1316Escape to Emacs to execute a single Emacs command. For instance,
1317@kbd{\ @key{ESC}} will act like a Meta key.
1318@item Q
1319@kindex @kbd{Q}
1320@cindex query replace
1321@kbd{Q} is for query replace. By default,
1322each string to be replaced is treated as a regular expression. You can use
1323@code{(setq viper-re-query-replace nil)} in your @file{.emacs} file to
1324turn this off. (For normal searches, @kbd{:se nomagic} will work. Note
1325that @kbd{:se nomagic} turns Regexps off completely, unlike Vi).
1326@item v
1327@itemx V
1328@itemx C-v
1329@kindex @kbd{v}
1330@kindex @kbd{V}
1331@kindex @kbd{C-v}
1332These keys are used to visit files. @kbd{v} will switch to a buffer
9ff0b02b 1333visiting file whose name can be entered in the minibuffer. @kbd{V} is
4009494e
GM
1334similar, but will use a window different from the current window.
1335@kbd{C-v} is like @kbd{V}, except that a new frame (X window) will be used
1336instead of a new Emacs window.
1337@item #
1338@kindex @kbd{#}
1339If followed by a certain character @var{ch}, it becomes an operator whose
1340argument is the region determined by the motion command that follows
1341(indicated as <move>).
1342Currently, @var{ch} can be one of @kbd{c}, @kbd{C}, @kbd{g}, @kbd{q}, and
1343@kbd{s}. For instance, @kbd{#qr} will prompt you for a string and then
76f1a3c3 1344prepend this string to each line in the buffer.
4009494e
GM
1345@item # c
1346@kindex @kbd{#c<move>}
1347@cindex changing case
1348Change upper-case characters in the region to lower-case
1349(@code{downcase-region}).
1350Emacs command @kbd{M-l} does the same for words.
1351@item # C
1352@kindex @kbd{#C<move>}
1353Change lower-case characters in the region to upper-case. For instance,
1354@kbd{# C 3 w} will capitalize 3 words from the current point
1355(@code{upcase-region}).
1356Emacs command @kbd{M-u} does the same for words.
1357@item # g
1358@kindex @kbd{#g<move>}
1359Execute last keyboard macro for each line in the region
76f1a3c3 1360(@code{viper-global-execute}).
4009494e
GM
1361@item # q
1362@kindex @kbd{#q<move>}
1363Insert specified string at the beginning of each line in the region
1364(@code{viper-quote-region}). The default string is composed of the comment
1365character(s) appropriate for the current major mode.
1366@item # s
1367@kindex @kbd{#s<move>}
1368Check spelling of words in the region (@code{spell-region}).
1369The function used for spelling is determined from the variable
1370@code{viper-spell-function}.
1371@vindex @code{viper-spell-function}
1372@item *
1373@kindex @kbd{*}
1374Call last keyboard macro.
1375@item m .
1376Set mark at point and push old mark off the ring
1377@item m<
1378@item m>
1379Set mark at beginning and end of buffer, respectively.
1380@item m,
1381Jump to mark and pop mark off the ring. @xref{Mark,,Mark,emacs,The GNU
1382Emacs Manual}, for more info.
1383@item ] register
1384@kindex @kbd{]<a-z>}
1385View contents of register
1386@item [ textmarker
1387@kindex @kbd{[<a-z>}
1388View filename and position of textmarker
1389@item @@#
1390@item @@register
1391@item @@!
1392@kindex @kbd{@@#}
1393@kindex @kbd{@@<a-z>}
1394@kindex @kbd{@@!}
1395@cindex keyboard macros
1396@cindex register execution
1397
1398Begin/end keyboard macro. @@register has a different meaning when used after
1399a @kbd{@@#}. @xref{Macros and Registers}, for details
1400@item []
1401@kindex @kbd{[]}
1402Go to end of heading.
1403@item g <@emph{movement command}>
1404Search buffer for text delimited by movement command. The canonical
1405example is @kbd{gw} to search for the word under the cursor.
76f1a3c3 1406@xref{Improved Search}, for details.
4009494e
GM
1407@item C-g and C-]
1408@kindex @kbd{C-g}
1409@kindex @kbd{C-]}
1410Quit and Abort Recursive edit. These may be necessary on occasion.
1411@xref{Vi State}, for a reason.
1412@item C-c C-g
1413@kindex @kbd{C-c C-g}
1414Hitting @kbd{C-c} followed by @kbd{C-g} will display the information on the
1415current buffer. This is the same as hitting @kbd{C-g} in Vi, but, as
1416explained above, @kbd{C-g} is needed for other purposes in Emacs.
1417@item C-c /
1418@kindex @kbd{C-c /}
1419Without a prefix argument, this command toggles
1420case-sensitive/case-insensitive search modes and plain vanilla/regular
1421expression search. With the prefix argument 1, i.e.,
1422@kbd{1 C-c /}, this toggles case-sensitivity; with the prefix argument 2,
1423toggles plain vanilla search and search using
1424regular expressions. @xref{Viper Specials}, for alternative ways to invoke
1425this function.
1426@cindex vanilla search
1427@cindex case-sensitive search
1428@cindex case-insensitive search
1429
1430@item M-p and M-n
1431@kindex @kbd{M-p}
1432@kindex @kbd{M-n}
9ff0b02b 1433In the minibuffer, these commands navigate through the minibuffer
4009494e
GM
1434histories, such as the history of search strings, Ex commands, etc.
1435
9ff0b02b
MK
1436@item C-s
1437@kindex @kbd{C-s}
1438If the minibuffer is entered via a Viper search commands @kbd{/} or @kbd{?},
1439then typing this key inserts the last search string used by the
1440Emacs incremental search command (that is bound to @kbd{C-s} everywhere
1441except in this case).
1442
4009494e
GM
1443@item C-c M-p and C-c M-n
1444@kindex @kbd{C-c M-p}
1445@kindex @kbd{C-c M-n}
1446@cindex Insertion history
1447@cindex Insertion ring
1448@cindex Command history
1449@cindex Command ring
1450
1451In Insert or Replace state, these commands let the user
1452peruse the history of insertion strings used in previous insert or replace
1453commands. Try to hit @kbd{C-c M-p} or @kbd{C-c M-n} repeatedly and see what
1454happens. @xref{Viper Specials}, for more.
1455
1456In Vi state, these commands let the user peruse the history of Vi-style
1457destructive commands, such as @kbd{dw}, @kbd{J}, @kbd{a}, etc.
1458By repeatedly typing @kbd{C-c M-p} or @kbd{C-c M-n} you will cycle Viper
1459through the recent history of Vi commands, displaying the commands one by
1460one. Once
1461an appropriate command is found, it can be executed by typing `@kbd{.}'.
1462
1463Since typing @kbd{C-c M-p} is tedious, it is more convenient to bind an
1464appropriate function to a function key on the keyboard and use that key.
1465@xref{Viper Specials}, for details.
1466
1467@item Ex commands
1468@findex @kbd{:args}
1469@findex @kbd{:n}
1470@findex @kbd{:pwd}
1471@findex @kbd{:pre}
1472The commands @kbd{:args}, @kbd{:next}, @kbd{:pre} behave
1473differently. @kbd{:pwd} exists to get current directory.
1474The commands @kbd{:b} and @kbd{:B} switch buffers around. @xref{File and
1475Buffer Handling}, for details.
1476There are also the new commands @kbd{:RelatedFile} and
1477@kbd{PreviousRelatedFile} (which abbreviate to @kbd{R} and @kbd{P},
1478respectively. @xref{Viper Specials}, for details.
1479@findex @kbd{:RelatedFile}
1480@findex @kbd{:PreviousRelatedFile}
1481@end table
1482
1483Apart from the new commands, many old commands have been enhanced. Most
1484notably, Vi style macros are much more powerful in Viper than in Vi. @xref{Vi
1485Macros}, for details.
1486
1a5d3215 1487@node Useful Packages
4009494e
GM
1488@section Useful Packages
1489
1490Some Emacs packages are mentioned here as an aid to the new Viper user, to
1491indicate what Viper is capable of.
1492A vast number comes with the standard Emacs distribution, and many more exist
1493on the net and on the archives.
1494
1495This manual also mentions some Emacs features a new user
1496should know about. The details of these are found in the GNU Emacs
1497Manual.
1498
1499The features first. For details, look up the Emacs Manual.
1500
1501@table @samp
1502@item Make
1503@cindex make
1504@cindex compiling
1505
1506Makes and Compiles can be done from the editor. Error messages will be
1507parsed and you can move to the error lines.
1508@item Shell
1509@cindex shell
1510@cindex interactive shell
1511You can talk to Shells from inside the editor. Your entire shell session
1512can be treated as a file.
1513@item Mail
1514@cindex email
1515@cindex mail
1516Mail can be read from and sent within the editor. Several sophisticated
1517packages exist.
1518@item Language Sensitive Editing
1519Editing modes are written for most computer languages in existence. By
1520controlling indentation, they catch punctuation errors.
1521@end table
1522
1523The packages, below, represents a drop in the sea of special-purpose
1524packages that come with standard distribution of Emacs.
1525
1526@table @samp
1527@item Transparent FTP
1528@cindex transparent ftp
1529@pindex ange-ftp.el
1530@code{ange-ftp.el} can ftp from the editor to files on other machines
1531transparent to the user.
1532@item RCS Interfaces
1533@cindex version maintenance
1534@cindex RCS
1535@pindex vc.el
1536@code{vc.el} for doing RCS commands from inside the editor
1537@item Directory Editor
1538@cindex dired
1539@pindex dired.el
1540@code{dired.el} for editing contents of directories and for navigating in
1541the file system.
1542@item Syntactic Highlighting
1543@cindex font-lock
1544@pindex font-lock.el
1545@code{font-lock.el} for automatic highlighting various parts of a buffer
1546using different fonts and colors.
1547@item Saving Emacs Configuration
1548@cindex desktop
1549@pindex desktop.el
1550@code{desktop.el} for saving/restoring configuration on Emacs exit/startup.
1551@item Spell Checker
1552@cindex ispell
1553@pindex ispell.el
1554@code{ispell.el} for spell checking the buffer, words, regions, etc.
1555@item File and Buffer Comparison
1556@cindex ediff
1557@pindex ediff.el
1558@code{ediff.el} for finding differences between files and for applying
1559patches.
1560@end table
1561
1562@noindent
1563Emacs Lisp archives exist on
1564@samp{archive.cis.ohio-state.edu}
76f1a3c3 1565and @samp{wuarchive.wustl.edu}
4009494e
GM
1566
1567
1a5d3215 1568@node Customization
4009494e
GM
1569@chapter Customization
1570
1571@cindex customization
1572
1573Customization can be done in 2 ways.
1574
1575@itemize @bullet
1576@item
1577@cindex initialization
1578@cindex .viper
ece4bae5
GM
1579Elisp code in a @file{~/.emacs.d/viper} (or @file{~/.viper}) file.
1580Viper loads this file just before it does the binding for mode hooks.
1581This is recommended for experts only.
4009494e
GM
1582@item
1583@cindex .emacs
1584Elisp code in your @file{.emacs} file before and after the @code{(require
1585'viper)} line. This method is @emph{not} recommended, unless you know what
1586you are doing. Only two variables, @code{viper-mode} and
1587@code{viper-custom-file-name}, are supposed to be customized in @file{.emacs},
76f1a3c3 1588prior to loading Viper (i.e., prior to @code{(require 'viper)} command.
4009494e
GM
1589@item
1590@cindex :customize
1591By executing the @kbd{:customize} Ex command. This takes you to the Emacs
1592customization widget, which lets you change the values of Viper
1593customizable variables easily. This method is good for novice and
1594experts alike. The customization code in the form of Lisp commands will be
1595placed in @file{~/.emacs} or some other customization file depending on the
ece4bae5 1596version of Emacs that you use. Still, it is recommended to separate
4009494e 1597Viper-related customization produced by the Emacs customization widget
ece4bae5 1598and keep it in your Viper customization file.
4009494e
GM
1599
1600Some advanced customization cannot be accomplished this way, however, and
ece4bae5 1601has to be done in Emacs Lisp in your Viper customization file. For the common
4009494e
GM
1602cases, examples are provided that you can use directly.
1603@end itemize
1604
1605
1606@menu
1607* Rudimentary Changes:: Simple constant definitions.
1608* Key Bindings:: Enabling Emacs Keys, Rebinding keys, etc.
1609* Packages that Change Keymaps:: How to deal with such beasts.
1610* Viper Specials:: Special Viper commands.
1611* Vi Macros:: How to do Vi style macros.
1612@end menu
1613
1a5d3215 1614@node Rudimentary Changes
4009494e
GM
1615@section Rudimentary Changes
1616
1617@cindex setting variables
1618@cindex variables for customization
1619@findex @kbd{:set}
1620
1621An easy way to customize Viper is to change the values of constants used in
1622Viper. Here is the list of the constants used in Viper and their default
1623values. The corresponding :se command is also indicated. (The symbols
1624@code{t} and @code{nil} represent ``true'' and ``false'' in Lisp).
1625
1626Viper supports both the abbreviated Vi variable names and their full
1627names. Variable completion is done on full names only. @key{TAB} and
1628@key{SPC} complete
1629variable names. Typing `=' will complete the name and then will prompt for
1630a value, if applicable. For instance, @kbd{:se au @key{SPC}} will complete the
1631command to @kbd{:set autoindent}; @kbd{:se ta @key{SPC}} will complete the command
1632and prompt further like this: @kbd{:set tabstop = }.
1633However, typing @kbd{:se ts @key{SPC}} will produce a ``No match'' message
1634because @kbd{ts} is an abbreviation for @kbd{tabstop} and Viper supports
1635completion on full names only. However, you can still hit @key{RET}
1636or @kbd{=}, which will complete the command like this: @kbd{:set ts = } and
1637Viper will be waiting for you to type a value for the tabstop variable.
1638To get the full list of Vi variables, type @kbd{:se @key{SPC} @key{TAB}}.
1639
1640@table @code
1641@item viper-auto-indent nil
1642@itemx :se ai (:se autoindent)
1643@itemx :se ai-g (:se autoindent-global)
1644If @code{t}, enable auto indentation.
1645by @key{RET}, @kbd{o} or @kbd{O} command.
1646
1647@code{viper-auto-indent} is a local variable. To change the value globally, use
1648@code{setq-default}. It may be useful for certain major modes to have their
1649own values of @code{viper-auto-indent}. This can be achieved by using
1650@code{setq} to change the local value of this variable in the hooks to the
1651appropriate major modes.
1652
1653@kbd{:se ai} changes the value of @code{viper-auto-indent} in the current
1654buffer only; @kbd{:se ai-g} does the same globally.
1655@item viper-electric-mode t
1656If not @code{nil}, auto-indentation becomes electric, which means that
1657@key{RET}, @kbd{O}, and @kbd{o} indent cursor according to the current
1658major mode. In the future, this variable may control additional electric
1659features.
1660
1661This is a local variable: @code{setq} changes the value of this variable
1662in the current buffer only. Use @code{setq-default} to change the value in
1663all buffers.
1664@item viper-case-fold-search nil
1665@itemx :se ic (:se ignorecase)
1666If not @code{nil}, search ignores cases.
1667This can also be toggled by quickly hitting @kbd{/} twice.
1668@item viper-re-search nil
1669@itemx :se magic
1670If not @code{nil}, search will use regular expressions; if @code{nil} then
1671use vanilla search.
1672This behavior can also be toggled by quickly hitting @kbd{/} trice.
1673@item buffer-read-only
1674@itemx :se ro (:se readonly)
1675Set current buffer to read only. To change globally put
1676@code{(setq-default buffer-read-only t)} in your @file{.emacs} file.
1677@item blink-matching-paren t
1678@itemx :se sm (:se showmatch)
1679Show matching parens by blinking cursor.
1680@item tab-width t (default setting via @code{setq-default})
1681@itemx :se ts=value (:se tabstop=value)
1682@itemx :se ts-g=value (:se tabstop-global=value)
1683@code{tab-width} is a local variable that controls the width of the tab stops.
1684To change the value globally, use @code{setq-default}; for local settings,
1685use @code{setq}.
1686
1687The command @kbd{:se ts}
1688sets the tab width in the current
1689buffer only; it has no effect on other buffers.
1690
1691The command @kbd{:se ts-g} sets tab width globally,
1692for all buffers where the tab is not yet set locally,
1693including the new buffers.
1694
1695Note that typing @key{TAB} normally
1696doesn't insert the tab, since this key is usually bound to
1697a text-formatting function, @code{indent-for-tab-command} (which facilitates
1698programming and document writing). Instead, the tab is inserted via the
1699command @code{viper-insert-tab}, which is bound to @kbd{S-tab} (shift + tab).
1700
1701On some non-windowing terminals, Shift doesn't modify the @key{TAB} key, so
1702@kbd{S-tab} behaves as if it were @key{TAB}. In such a case, you will have
1703to bind @code{viper-insert-tab} to some other convenient key.
1704
1705@item viper-shift-width 8
1706@itemx :se sw=value (:se shiftwidth=value)
1707The number of columns shifted by @kbd{>} and @kbd{<} commands.
1708@item viper-search-wrap-around t
1709@itemx :se ws (:se wrapscan)
1710If not @code{nil}, search wraps around the end/beginning of buffer.
1711@item viper-search-scroll-threshold 2
1712If search lands within this many lines of the window top or bottom, the
1713window will be scrolled up or down by about 1/7-th of its size, to reveal
f99f1641 1714the context. If the value is negative, don't scroll.
4009494e
GM
1715@item viper-tags-file-name "TAGS"
1716The name of the file used as the tag table.
1717@item viper-re-query-replace nil
1718If not @code{nil}, use reg-exp replace in query replace.
1719@item viper-want-ctl-h-help nil
1720If not @code{nil}, @kbd{C-h} is bound to @code{help-command};
1721otherwise, @kbd{C-h} is bound as usual in Vi.
1722@item viper-vi-style-in-minibuffer t
1723If not @code{nil}, Viper provides a high degree of compatibility with Vi
9ff0b02b
MK
1724insert mode when you type text in the minibuffer; if @code{nil}, typing in
1725the minibuffer feels like plain Emacs.
4009494e
GM
1726@item viper-no-multiple-ESC t
1727If you set this to @code{nil}, you can use @key{ESC} as Meta in Vi state.
1728Normally, this is not necessary, since graphical displays have separate
1729Meta keys (usually on each side of the space bar). On a dumb terminal, Viper
1730sets this variable to @code{twice}, which is almost like @code{nil}, except
1731that double @key{ESC} beeps. This, too, lets @key{ESC} to be used as a Meta.
4009494e
GM
1732@item viper-fast-keyseq-timeout 200
1733Key sequences separated by this many milliseconds are treated as Vi-style
1734keyboard macros. If the key sequence is defined as such a macro, it will be
1735executed. Otherwise, it is processed as an ordinary sequence of typed keys.
1736
1737Setting this variable too high may slow down your typing. Setting it too
1738low may make it hard to type macros quickly enough.
4009494e
GM
1739@item viper-ex-style-motion t
1740Set this to @code{nil}, if you want @kbd{l,h} to cross
1741lines, etc. @xref{Movement and Markers}, for more info.
1742@item viper-ex-style-editing t
1743Set this to @code{nil}, if you want
1744@kbd{C-h} and @key{DEL} to not stop
1745at the beginning of a line in Insert state, @key{X} and @key{x} to delete
1746characters across lines in Vi command state, etc.
1747@item viper-ESC-moves-cursor-back t
1748It @code{t}, cursor moves back 1 character when switching from insert state to vi
1749state. If @code{nil}, the cursor stays where it was before the switch.
1750@item viper-always t
1751@code{t} means: leave it to Viper to decide when a buffer must be brought
1752up in Vi state,
1753Insert state, or Emacs state. This heuristics works well in virtually all
1754cases. @code{nil} means you either has to invoke @code{viper-mode} manually
1755for each buffer (or you can add @code{viper-mode} to the appropriate major mode
1756hooks using @code{viper-load-hook}).
1757
ece4bae5
GM
1758This option must be set in your Viper customization file.
1759@item viper-custom-file-name "~/.emacs.d/viper"
4009494e 1760File used for Viper-specific customization.
ece4bae5 1761Change this setting, if you want. Must be set in @file{.emacs}
4009494e
GM
1762before Viper is loaded. Note that you
1763have to set it as a string inside double quotes.
1764@item viper-spell-function 'ispell-region
1765Function used by the command @kbd{#c<move>} to spell.
1766@item viper-glob-function
1767The value of this variable is the function symbol used to expand wildcard
1768symbols. This is platform-dependent. The default tries to set this variable
1769to work with most shells, MS Windows, OS/2, etc. However, if it
1770doesn't work the way you expect, you should write your own.
1771Use @code{viper-glob-unix-files} and @code{viper-glob-mswindows-files} in
1772@file{viper-util.el} as examples.
1773
1774This feature is used to expand wildcards in the Ex command @kbd{:e}.
1775Note that Viper doesn't support wildcards in the @kbd{:r} and @kbd{:w}
1776commands, because file completion is a better mechanism.
1777@findex @code{viper-glob-function}
1778
1779@item ex-cycle-other-window t
1780If not @code{nil}, @kbd{:n} and @kbd{:b} will cycle through files in another
1781window, if one exists.
1782@item ex-cycle-through-non-files nil
1783@kbd{:n} does not normally cycle through buffers. Set this to get
1784buffers also.
1785@item viper-want-emacs-keys-in-insert
1786This is set to @code{nil} for user levels 1 and 2 and to @code{t} for user
1787levels 3 and 4. Users who specify level 5 are allowed to set this variable
1788as they please (the default for this level is @code{t}). If set to
1789@code{nil}, complete Vi compatibility is provided in Insert state. This is
1790really not recommended, as this precludes you from using language-specific
1791features provided by the major modes.
1792@item viper-want-emacs-keys-in-vi
1793This is set to @code{nil} for user
1794level 1 and to @code{t} for user levels 2--4.
1795At level 5, users are allowed to set this variable as they please (the
1796default for this level is @code{t}).
1797If set to @code{nil}, complete Vi compatibility is provided
1798in Vi command state. Setting this to @code{nil} is really a bad idea,
1799unless you are a novice, as this precludes the use
1800of language-specific features provided by the major modes.
1801@item viper-keep-point-on-repeat t
1802If not @code{nil}, point is not moved when the user repeats the previous
1803command by typing `.' This is very useful for doing repeated changes with
1804the @kbd{.} key.
1805@item viper-repeat-from-history-key 'f12
1806Prefix key used to invoke the macros @kbd{f12 1} and @kbd{f12 2} that repeat
1807the second-last and the third-last destructive command.
1808Both these macros are bound (as Viper macros) to
1809@code{viper-repeat-from-history},
1810which checks the second key by which it is invoked to see which of the
1811previous commands to invoke. Viper binds @kbd{f12 1} and @kbd{f12 2} only,
ece4bae5
GM
1812but the user can bind more in his/her Viper customization file.
1813@xref{Vi Macros}, for how to do this.
4009494e
GM
1814@item viper-keep-point-on-undo nil
1815If not @code{nil}, Viper tries to not move point when undoing commands.
1816Instead, it will briefly move the cursor to the place where change has
1817taken place. However, if the undone piece of text is not seen in window,
1818then point will be moved to the place where the change took place.
1819Set it to @code{t} and see if you like it better.
1820@item viper-delete-backwards-in-replace nil
1821If not @code{nil}, @key{DEL} key will delete characters while moving the cursor
1822backwards. If @code{nil}, the cursor will move backwards without deleting
1823anything.
1824@item viper-replace-overlay-face 'viper-replace-overlay-face
1825On a graphical display, Viper highlights replacement regions instead of
1826putting a @samp{$} at the end. This variable controls the so called
1827@dfn{face} used to highlight the region.
1828
1829By default, @code{viper-replace-overlay-face} underlines the replacement on
1830monochrome displays and also lays a stipple over them. On color displays,
1831replacement regions are highlighted with color.
1832
1833If you know something about Emacs faces and don't like how Viper highlights
1834replacement regions, you can change @code{viper-replace-overlay-face} by
1835specifying a new face. (Emacs faces are described in the Emacs Lisp
1836reference.) On a color display, the following customization method is
1837usually most effective:
173076b4 1838@smallexample
4009494e
GM
1839(set-face-foreground viper-replace-overlay-face "DarkSlateBlue")
1840(set-face-background viper-replace-overlay-face "yellow")
173076b4 1841@end smallexample
4009494e
GM
1842For a complete list of colors available to you, evaluate the expression
1843@code{(x-defined-colors)}. (Type it in the buffer @code{*scratch*} and then
1844hit the @kbd{C-j} key.
1845
1846@item viper-replace-overlay-cursor-color "Red"
1847@vindex @code{viper-replace-overlay-cursor-color}
1848Cursor color when it is inside the replacement region.
1849This has effect only on color displays and only when Emacs runs as an X
1850application.
1851@item viper-insert-state-cursor-color nil
1852@vindex @code{viper-insert-state-cursor-color}
1853If set to a valid color, this will be the cursor color when Viper is in
1854insert state.
1855@item viper-emacs-state-cursor-color nil
1856@vindex @code{viper-emacs-state-cursor-color}
1857If set to a valid color, this will be the cursor color when Viper is in
1858emacs state.
1859@item viper-replace-region-end-delimiter "$"
1860A string used to mark the end of replacement regions. It is used only on
1861TTYs or if @code{viper-use-replace-region-delimiters} is non-@code{nil}.
1862@item viper-replace-region-start-delimiter ""
1863A string used to mark the beginning of replacement regions. It is used
1864only on TTYs or if @code{viper-use-replace-region-delimiters} is non-@code{nil}.
1865@item viper-use-replace-region-delimiters
1866If non-@code{nil}, Viper will always use @code{viper-replace-region-end-delimiter} and
1867@code{viper-replace-region-start-delimiter} to delimit replacement regions,
1868even on color displays (where this is unnecessary). By default, this
1869variable is non-@code{nil} only on TTYs or monochrome displays.
1870@item viper-allow-multiline-replace-regions t
1871If non-@code{nil}, multi-line text replacement regions, such as those produced by
1872commands @kbd{c55w}, @kbd{3C}, etc., will stay around until the user exits
1873the replacement mode. In this variable is set to @code{nil}, Viper will
1874emulate the standard Vi behavior, which supports only intra-line
1875replacement regions (and multi-line replacement regions are deleted).
1876@item viper-toggle-key "\C-z"
1877Specifies the key used to switch from Emacs to Vi and back.
ece4bae5 1878Must be set in your Viper customization file. This variable can't be
4009494e
GM
1879changed interactively after Viper is loaded.
1880
1881In Insert state, this key acts as a temporary escape to Vi state, i.e., it
1882will set Viper up so that the very next command will be executed as if it
1883were typed in Vi state.
4009494e
GM
1884@item viper-buffer-search-char nil
1885Key used for buffer search. @xref{Viper Specials}, for details.
1886@item viper-surrounding-word-function 'viper-surrounding-word
1887The value of this variable is a function name that is used to determine
1888what constitutes a word clicked upon by the mouse. This is used by mouse
1889search and insert.
1890@item viper-search-face 'viper-search-face
1891Variable that controls how search patterns are highlighted when they are
1892found.
1893@item viper-vi-state-hook nil
1894List of parameterless functions to be run just after entering the Vi
1895command state.
1896@item viper-insert-state-hook nil
1897Same for Insert state. This hook is also run after entering Replace state.
1898@item viper-replace-state-hook nil
1899List of (parameterless) functions called just after entering Replace state
1900(and after all @code{viper-insert-state-hook}).
1901@item viper-emacs-state-hook nil
1902List of (parameterless) functions called just after switching from Vi state
1903to Emacs state.
1904@item viper-load-hook nil
1905List of (parameterless) functions called just after loading Viper. This is
1906the last chance to do customization before Viper is up and running.
1907@end table
1908@noindent
1909You can reset some of these constants in Viper with the Ex command @kbd{:set}
1910(when so indicated in the table). Or you
ece4bae5 1911can include a line like this in your Viper customization file:
4009494e
GM
1912@example
1913(setq viper-case-fold-search t)
1914@end example
1915@vindex @code{viper-auto-indent}
1916@vindex @code{viper-electric-mode}
1917@vindex @code{viper-case-fold-search}
1918@vindex @code{viper-re-search}
1919@vindex @code{viper-shift-width}
1920@vindex @code{buffer-read-only}
1921@vindex @code{viper-search-wrap-around}
1922@vindex @code{viper-search-scroll-threshold}
1923@vindex @code{viper-search-face}
1924@vindex @code{viper-tags-file-name}
1925@vindex @code{viper-re-query-replace}
1926@vindex @code{viper-want-ctl-h-help}
1927@vindex @code{viper-vi-style-in-minibuffer}
1928@vindex @code{viper-no-multiple-ESC}
1929@vindex @code{viper-always}
4009494e
GM
1930@vindex @code{viper-fast-keyseq-timeout}
1931@vindex @code{viper-ex-style-motion}
1932@vindex @code{viper-ex-style-editing}
1933@vindex @code{viper-ESC-moves-cursor-back}
1934@vindex @code{viper-custom-file-name}
1935@vindex @code{viper-spell-function}
1936@vindex @code{ex-cycle-other-window}
1937@vindex @code{ex-cycle-through-non-files}
1938@vindex @code{viper-want-emacs-keys-in-insert}
1939@vindex @code{viper-want-emacs-keys-in-vi}
1940@vindex @code{viper-keep-point-on-repeat}
1941@vindex @code{viper-keep-point-on-undo}
1942@vindex @code{viper-delete-backwards-in-replace}
1943@vindex @code{viper-replace-overlay-face}
1944@vindex @code{viper-replace-region-end-symbol}
1945@vindex @code{viper-replace-region-start-symbol}
1946@vindex @code{viper-allow-multiline-replace-regions}
1947@vindex @code{viper-toggle-key}
4009494e
GM
1948@vindex @code{viper-buffer-search-char}
1949@vindex @code{viper-surrounding-word-function}
1950@vindex @code{viper-vi-state-hook}
1951@vindex @code{viper-insert-state-hook}
1952@vindex @code{viper-replace-state-hook}
1953@vindex @code{viper-emacs-state-hook}
1954
1a5d3215 1955@node Key Bindings
4009494e
GM
1956@section Key Bindings
1957
1958@cindex key bindings
1959@cindex keymaps
1960
1961Viper lets you define hot keys, i.e., you can associate keyboard keys
1962such as F1, Help, PgDn, etc., with Emacs Lisp functions (that may already
1963exist or that you will write). Each key has a "preferred form" in
1964Emacs. For instance, the Up key's preferred form is [up], the Help key's
1965preferred form is [help], and the Undo key has the preferred form [f14].
1966You can find out the preferred form of a key by typing @kbd{M-x
1967describe-key-briefly} and then typing the key you want to know about.
1968
1969Under the X Window System, every keyboard key emits its preferred form,
1970so you can just type
1971
1972@lisp
1973(global-set-key [f11] 'calendar) ; L1, Stop
1974(global-set-key [f14] 'undo) ; L4, Undo
1975@end lisp
1976
1977@noindent
1978to bind L1 (a key that exists on some SUN workstations) so it will invoke
1979the Emacs Calendar and to bind L4 so it will undo changes.
1980However, on a dumb terminal or in an Xterm window, even the standard arrow
1981keys may
1982not emit the right signals for Emacs to understand. To let Emacs know about
1983those keys, you will have to find out which key sequences they emit
1984by typing @kbd{C-q} and then the key (you should switch to Emacs state
1985first). Then you can bind those sequences to their preferred forms using
4f4a84ec 1986@code{input-decode-map} as follows:
4009494e
GM
1987
1988@lisp
1989(cond ((string= (getenv "TERM") "xterm")
4f4a84ec
SM
1990(define-key input-decode-map "\e[192z" [f11]) ; L1
1991(define-key input-decode-map "\e[195z" [f14]) ; L4, Undo
4009494e
GM
1992@end lisp
1993
1994The above illustrates how to do this for Xterm. On VT100, you would have to
1995replace "xterm" with "vt100" and also change the key sequences (the same
1996key may emit different sequences on different types of terminals).
1997
1998The above keys are global, so they are overwritten by the local maps
1999defined by the major modes and by Viper itself. Therefore, if you wish to
2000change a binding set by a major mode or by Viper, read this.
2001
2002Viper users who wish to specify their own key bindings should be concerned
2003only with the following three keymaps:
2004@code{viper-vi-global-user-map} for Vi state commands,
2005@code{viper-insert-global-user-map} for Insert state commands,
2006and @code{viper-emacs-global-user-map} for Emacs state commands (note:
2007customized bindings for Emacs state made to @code{viper-emacs-global-user-map}
2008are @emph{not} inherited by Insert state).
2009
2010For more information on Viper keymaps, see the header of the file
2011@file{viper.el}.
2012If you wish to change a Viper binding, you can use the
2013@code{define-key} command, to modify @code{viper-vi-global-user-map},
2014@code{viper-insert-global-user-map}, and @code{viper-emacs-global-user-map}, as
2015explained below. Each of these key maps affects the corresponding Viper state.
2016The keymap @code{viper-insert-global-user-map} also affects Viper's Replace
2017state.
2018
2019@noindent
2020If you want to
2021bind a key, say @kbd{C-v}, to the function that scrolls
2022page down and to make @kbd{0} display information on the current buffer,
ece4bae5 2023putting this in your Viper customization file will do the trick in Vi state:
4009494e
GM
2024@example
2025(define-key viper-vi-global-user-map "\C-v" 'scroll-down)
2026@end example
2027@noindent
2028To set a key globally,
2029@example
2030(define-key viper-emacs-global-user-map "\C-c m" 'smail)
2031(define-key viper-vi-global-user-map "0" 'viper-info-on-file)
2032@end example
2033@noindent
2034Note, however, that this binding may be overwritten by other keymaps, since
2035the global keymap has the lowest priority.
2036To make sure that nothing will override a binding in Emacs state, you
2037can write this:
2038@example
2039(define-key viper-emacs-global-user-map "\C-c m" 'smail)
2040@end example
2041@noindent
2042To customize the binding for @kbd{C-h} in Insert state:
2043@example
173076b4
GM
2044(define-key viper-insert-global-user-map "\C-h"
2045 'my-del-backwards-function)
4009494e
GM
2046@end example
2047@noindent
2048
2049Each Emacs command key calls some Lisp function. If you have enabled the
2050Help, (@pxref{Rudimentary Changes}) @kbd{C-h k} will show you the function
2051for each specific key; @kbd{C-h b} will show all bindings, and @kbd{C-h m}
2052will provide information on the major mode in effect. If Help is not
2053enabled, you can still get help in Vi state by prefixing the above commands
2054with @kbd{\}, e.g., @kbd{\ C-h k} (or you can use the Help menu in the
2055menu bar, if Emacs runs under X).
2056
2057Viper users can also change bindings on a per major mode basis. As with
2058global bindings, this can be done separately for each of the three main Viper
2059states. To this end, Viper provides the function
2060@code{viper-modify-major-mode}.
2061@findex @code{viper-modify-major-mode}
2062
2063To modify keys in Emacs state for @code{my-favorite-major-mode}, the user
2064needs to create a sparse keymap, say, @code{my-fancy-map}, bind whatever
2065keys necessary in that keymap, and put
2066
2067@example
2068(viper-modify-major-mode 'dired-mode 'emacs-state my-fancy-map)
2069@end example
2070
2071@noindent
ece4bae5
GM
2072in your Viper customization file. To do the same in Vi and Insert states, you
2073should use @code{vi-state} and @code{insert-state}. Changes in Insert state
2074are also in effect in Replace state. For instance, suppose that the user wants
2075to use @kbd{dd} in Vi state under Dired mode to delete files, @kbd{u} to unmark
2076files, etc. The following code in the Viper customization file will then do
2077the job:
4009494e
GM
2078
2079@example
2080(setq my-dired-modifier-map (make-sparse-keymap))
2081(define-key my-dired-modifier-map "dd" 'dired-flag-file-deletion)
2082(define-key my-dired-modifier-map "u" 'dired-unmark)
2083(viper-modify-major-mode 'dired-mode 'vi-state my-dired-modifier-map)
2084@end example
2085
2086A Vi purist may want to modify Emacs state under Dired mode so that
2087@kbd{k}, @kbd{l}, etc., will move around in directory buffers, as in
2088Vi. Although this is not recommended, as these keys are bound to useful
2089Dired functions, the trick can be accomplished via the following code:
2090
2091@example
2092(setq my-dired-vi-purist-map (make-sparse-keymap))
2093(define-key my-dired-vi-purist-map "k" 'viper-previous-line)
2094(define-key my-dired-vi-purist-map "l" 'viper-forward-char)
173076b4
GM
2095(viper-modify-major-mode 'dired-mode
2096 'emacs-state my-dired-vi-purist-map)
4009494e
GM
2097@end example
2098
2099Yet another way to customize key bindings in a major mode is to edit the
2100list @code{viper-major-mode-modifier-list} using the customization widget.
2101@vindex @code{viper-major-mode-modifier-list}
2102(This variable is in the Viper-misc customization group.)
2103The elements of this list are triples of the form: (major-mode viper-state
2104keymap), where the keymap contains bindings that are supposed to be active
2105in the given major mode and the given viper-state.
2106
2107Effects similar to key binding changes can be achieved by defining Vi
2108keyboard macros using the Ex commands @kbd{:map} and @kbd{:map!}. The
2109difference is that multi-key Vi macros do not override the keys they are
2110bound to, unless these keys are typed in quick succession. So, with macros,
2111one can use the normal keys alongside with the macros. If per-mode
2112modifications are needed, the user can try both ways and see which one is
2113more convenient.
2114@findex @kbd{:map}
2115@xref{Vi Macros}, for details.
2116
2117Note: in major modes that come up in @emph{Emacs state} by default, the
2118aforesaid modifications may not take place immediately (but only after the
2119buffer switches to some other Viper state and then back to Emacs state). To
2120avoid this, one should add @code{viper-change-state-to-emacs} to an
2121appropriate hook of that major mode. (Check the function
2122@code{viper-set-hooks} in @file{viper.el} for examples.) However, if you
2123did not set @code{viper-always} to @code{nil}, chances are that you won't
2124need to perform the above procedure, because Viper will take care of most
2125useful defaults.
2126
2127
2128Finally, Viper has a facility that lets the user define per-buffer
2129bindings, i.e., bindings that are in effect in some specific buffers
2130only. Unlike per-mode bindings described above, per-buffer bindings can be
2131defined based on considerations other than the major mode. This is done
2132via the function @code{viper-add-local-keys}, which lets one specify bindings
2133that should be in effect in the current buffer only and for a specific Viper
2134state. For instance,
2135@lisp
2136(viper-add-local-keys 'vi-state '(("ZZ" .@: TeX-command-master)
2137 ("ZQ" .@: viper-save-kill-buffer)))
2138@end lisp
2139@noindent
2140redefines @kbd{ZZ} to invoke @code{TeX-command-master} in @code{vi-state}
2141and @kbd{ZQ} to save-then-kill the current buffer. These bindings take
2142effect only in the buffer where this command is executed. The typical use
2143of this function is to execute the above expression from within a function
2144that is included in a hook to some major mode. For instance, the above
2145expression
2146could be called from a function, @code{my-tex-init}, which may be added to
2147@code{tex-mode-hook} as follows:
2148@lisp
2149(add-hook 'tex-mode-hook 'my-tex-init)
2150@end lisp
2151@noindent
2152When TeX mode starts, the hook is executed and the above Lisp expression is
2153evaluated. Then, the bindings for @kbd{ZZ} and @kbd{ZQ} are changed in Vi
2154command mode for all buffers in TeX mode.
2155
2156Another useful application is to bind @kbd{ZZ} to @code{send-mail}
2157in the Mail mode buffers (the specifics of this depend on which mail
2158package you are using, @code{rmail}, @code{mh-e}, @code{vm}, etc.
2159For instance, here is how to do this for @code{mh-e}, the Emacs interface
2160to MH:
2161@lisp
2162(defun mh-add-vi-keys ()
2163 "Set up ZZ for MH-e and XMH."
2164 (viper-add-local-keys 'vi-state '(("ZZ" .@: mh-send-letter))))
2165(add-hook 'mh-letter-mode-hook 'mh-add-vi-keys)
2166@end lisp
2167
2168You can also use @code{viper-add-local-keys} to set per buffer
2169bindings in Insert state and Emacs state by passing as a parameter the
2170symbols @code{insert-state} and @code{emacs-state}, respectively.
2171As with global bindings, customized local bindings done to Emacs state
2172are not inherited by Insert state.
2173
2174On rare occasions, local keys may be added by mistake. Usually this is done
2175indirectly, by invoking a major mode that adds local keys (e.g.,
2176@code{shell-mode} redefines @key{RET}). In such a case, exiting the wrong
2177major mode won't rid you from unwanted local keys, since these keys are
2178local to Viper state and the current buffer, not to the major mode.
2179In such situations, the remedy is to type @kbd{M-x viper-zap-local-keys}.
2180
2181So much about Viper-specific bindings.
2182@xref{Customization,,Customization,emacs,The GNU Emacs
2183Manual}, and the Emacs quick reference card for the general info on key
2184bindings in Emacs.
2185
4f4a84ec 2186@vindex @code{input-decode-map}
4009494e
GM
2187@vindex @code{function-key-map}
2188@vindex @code{viper-vi-global-user-map}
2189@vindex @code{viper-insert-global-user-map}
2190@vindex @code{viper-emacs-global-user-map}
2191@findex @code{viper-add-local-keys}
2192@findex @code{viper-zap-local-keys}
2193
1a5d3215
GM
2194@node Packages that Change Keymaps
2195@section Packages that Change Keymaps
4009494e
GM
2196@cindex C-c and Viper
2197@cindex Viper and C-c
2198
2199Viper is designed to coexist with all major and minor modes of Emacs. This
2200means that bindings set by those modes are generally available with Viper
2201(unless you explicitly prohibit them by setting
2202@code{viper-want-emacs-keys-in-vi} and @code{viper-want-emacs-keys-in-insert} to
2203@code{nil}).
2204If @code{viper-always} is set to @code{t} (which is the default), Viper
2205will try to bring each buffer
2206in the Viper state that is most appropriate for that buffer.
2207Usually, this would be the Vi state, but sometimes it could be the Insert
2208state or the Emacs state.
2209
2210Some major mode bindings will necessarily be overwritten by Viper. Indeed, in
2211Vi state, most of the 1-character keys are used for Vi-style editing. This
2212usually causes no problems because most packages designed for editing files
2213typically do not bind such keys. Instead, they use key sequences that start
2214with @kbd{C-x} and @kbd{C-c}. This is why it was so important for us to
2215free up @kbd{C-x} and @kbd{C-c}.
2216It is common for language-specific major modes to bind @key{TAB} and
2217@kbd{C-j} (the line feed) keys to various formatting functions. This is
2218extremely useful, but may require some getting used to for a Vi user. If you
2219decide that this feature is not for you, you can re-bind these keys as
2220explained earlier (@pxref{Customization}).
2221
2222Binding for @key{TAB} is one of the most unusual aspects of Viper for many
2223novice users. In Emacs, @key{TAB} is used to format text and programs, and
2224is extremely useful. For instance, hitting @key{TAB} causes the current
2225line to be re-indented in accordance with the context. In programming,
2226this is very important, since improper automatic indentation would
2227immediately alert the programmer to a possible error. For instance, if a
2228@kbd{)} or a @kbd{"} is missing somewhere above the current
2229line, @key{TAB} is likely to mis-indent the line.
2230
2231For this reason, Viper doesn't change the standard Emacs binding of
2232@key{TAB}, thereby sacrificing Vi compatibility
2233(except for users at level 1). Instead, in Viper, the key
2234@kbd{S-tab} (shift+ tab) is chosen to emulate Vi's @key{TAB}.
2235
2236We should note that on some non-windowing terminals, Shift doesn't modify
2237the @key{TAB} key, so @kbd{S-tab} behaves as if it were @key{TAB}. In such
2238a case, you will have to bind @code{viper-insert-tab} to some other
2239convenient key.
2240
2241Some packages, notably Dired, Gnus, Info, etc., attach special meaning to
2242common keys like @key{SPC}, @kbd{x}, @kbd{d}, @kbd{v}, and others. This
2243means that Vi command state is inappropriate for working with these
2244packages. Fortunately, these modes operate on read-only buffers and are
2245designed not for editing files, but for special-purpose browsing, reading
2246news, mail, etc., and Vi commands are meaningless in these situations. For
2247this reason, Viper doesn't force Vi state on such major modes---it
2248brings them in Emacs state. You can switch to Vi state by typing @kbd{C-z}
2249if, for instance, you want to do Vi-style search in a buffer (although,
2250usually, incremental search, which is bound to @kbd{C-s}, is sufficient in
2251these situations). But you should then switch back to Emacs state if you
2252plan to continue using these major modes productively. You can also switch
2253to Vi temporarily, to execute just one command. This is done by typing
2254@kbd{C-c \}. (In some of these modes, @kbd{/} and @kbd{:} are bound
2255Vi-style, unless these keys perform essential duties.)
2256
2257If you would like certain major modes to come up in Emacs state rather than
2258Vi state (but Viper thinks otherwise), you should put these major modes
2259on the @code{viper-emacs-state-mode-list} list and delete them from
2260@code{viper-vi-state-mode-list}.
2261Likewise, you can force Viper's Insert state on a major mode by putting it
2262in @code{viper-insert-state-mode-list}.
2263@vindex @code{viper-emacs-state-mode-list}
2264@vindex @code{viper-insert-state-mode-list}
2265@vindex @code{viper-vi-state-mode-list}
2266
2267It is also possible to impose Vi on some major modes, even though they may
2268bind common keys to specialized commands. This might make sense for modes
2269that bind only a small number of common keys. For instance, Viper subverts
2270the Shell mode by changing the bindings for @kbd{C-m} and @kbd{C-d} using
2271@code{viper-add-local-keys} described in the section on customization
2272(@pxref{Customization}).
2273
2274In some cases, some @emph{minor} modes might override certain essential
2275bindings in Vi command state. This is not a big problem because this
2276can happen only in the beginning, when the minor mode kicks in. Typing
2277@code{M-x viper-mode} will correct the situation. Viper knows about
2278several such minor modes and takes care of them, so the above trick
2279is usually not necessary. If you find that some minor mode, e.g.,
2280@code{nasty-mode} interferes with Viper, putting the following in
ece4bae5 2281your Viper customization file should fix the problem:
4009494e
GM
2282@lisp
2283(viper-harness-minor-mode "nasty-mode")
2284@end lisp
2285@noindent
2286The argument to @code{viper-harness-minor-mode} is the name of the file for the
2287offending minor mode with the suffixes @file{.el} and @file{.elc} removed.
2288
2289It may not be always obvious which minor mode is at fault. The only
2290guidance here is to look into the file that defines the minor mode you are
2291suspecting, say @file{nasty-mode.el}, and see if it has a variable called
2292@code{nasty-mode-map}. Then check if there is a statement of the form
2293@lisp
2294(define-key nasty-mode-map key function)
2295@end lisp
2296@noindent
2297that binds the misbehaving
2298keys. If so, use the above line to harness @code{nasty-mode}. If your
2299suspicion is wrong, no harm is done if you harness a minor mode that
2300doesn't need to be harnessed.
2301
2302It is recommended to harness even those minor modes that don't override
2303Viper keys, but still have their own keymaps. A general way to
2304make a minor mode, @code{my-mode},
2305compatible with Viper is to have the file @file{my-mode.el} include the following code:
2306
2307@lisp
2308(when (fboundp 'viper-harness-minor-mode)
2309 (let ((lib (file-name-sans-extension
2310 (file-name-nondirectory load-file-name))))
2311 (viper-harness-minor-mode lib)))
2312@end lisp
2313
2314@vindex @code{viper-want-emacs-keys-in-vi}
2315@vindex @code{viper-want-emacs-keys-in-insert}
2316@vindex @code{viper-always}
2317@findex @code{viper-set-hooks}
2318@findex @code{viper-mode}
2319@findex @code{viper-harness-minor-mode}
2320@findex @code{remove-hook}
2321@findex @code{add-hook}
2322
1a5d3215 2323@node Viper Specials
4009494e
GM
2324@section Viper Specials
2325
2326Viper extends Vi with a number of useful features. This includes various
2327search functions, histories of search strings, Ex commands, insertions, and
2328Vi's destructive commands. In addition, Viper supports file name completion
2329and history, completion of Ex commands and variables, and many other
2330features. Some of these features are explained in detail elsewhere in this
2331document. Other features are explained here.
2332
2333@table @code
2334@item (viper-buffer-search-enable)
2335@item viper-buffer-search-char nil
2336Enable buffer search. Explicit call to @code{viper-buffer-search-enable}
2337sets @code{viper-buffer-search-char} to @kbd{g}. Alternatively, the user can
ece4bae5
GM
2338set @code{viper-buffer-search-char} in his/her Viper customization file to a key
2339sequence to be used for buffer search. There is no need to call
4009494e
GM
2340@code{viper-buffer-search-enable} in that case.
2341@findex @code{viper-buffer-search-enable}
2342@vindex @code{viper-buffer-search-char}
2343@item viper-toggle-search-style
2344This function, bound to @kbd{C-c /}, lets one toggle case-sensitive and
2345case-insensitive search, and also switch between plain vanilla search and
2346search via regular expressions. Without the prefix argument, the user is
2347asked which mode to toggle. With prefix argument 1, this toggles
2348case-sensitivity. With prefix argument 2, regular expression/vanilla search
2349will be toggled.
2350
2351However, we found that the most convenient way to toggle
2352these options is to bind a Vi macro to
2353bind @kbd{//} to toggles case sensitivity and to @kbd{///} to toggles
2354vanilla search. Thus, quickly hitting @kbd{/} twice will switch Viper from
2355case sensitive search to case-insensitive. Repeating this once again will
2356restore the original state. Likewise, quickly hitting @kbd{/} three times
2357will switch you from vanilla-style search to search via regular expressions.
2358If you hit something other than @kbd{/} after the first @kbd{/} or if the
2359second @kbd{/} doesn't follow quickly enough, then Viper will issue the
2360usual prompt @kbd{/} and will wait for input, as usual in Vi.
2361If you don't like this behavior, you can ``unrecord'' these macros in your
ece4bae5
GM
2362Viper customization file. For instance, if you don't like the above
2363feature, put this in the file:
4009494e
GM
2364@example
2365(viper-set-searchstyle-toggling-macros 'undefine)
2366@end example
2367@findex @code{viper-set-searchstyle-toggling-macros}
2368
2369If you don't like this feature as a default, but would still like to have
2370it in some major modes, you can do so by first unsetting it globally, as
2371shown above, and then setting it in the desired major modes as follows:
2372@example
2373(viper-set-searchstyle-toggling-macros nil 'c-mode)
2374(viper-set-searchstyle-toggling-macros nil 'lisp-mode)
2375@end example
2376
2377@item Vi-isms in Emacs state
2378Some people find it useful to use the Vi-style search key, `/', to invoke
2379search in modes which Viper leaves in emacs-state. These modes are:
2380@code{dired-mode}, @code{mh-folder-mode},
2381@code{Info-mode}, and @code{Buffer-menu-mode}
2382(more may be added in the future). So, in the above modes, Viper binds `/'
2383so that it will behave Vi-style. Furthermore, in those major modes, Viper
2384binds `:' to invoke ex-style commands, like in vi-state. And, as described
2385above, `//' and `///' get bound to Vi-style macros that toggle
2386case-insensitivity and regexp-search.
2387
2388If you don't like these features---which I don't really understand---you
2389can unbind `/' and `:' in @code{viper-dired-modifier-map} (for Dired) or in
2390@code{viper-slash-and-colon-map}, for other modes.
2391@vindex @code{viper-slash-and-colon-map}
2392@vindex @code{viper-dired-modifier-map}
2393
2394To unbind the macros `//' and `///' for a major mode where you feel they
2395are undesirable, execute @code{viper-set-emacs-state-searchstyle-macros} with a
2396non-@code{nil} argument. This can be done either interactively, by supplying a
2397prefix argument, or by placing
2398@example
2399(viper-set-emacs-state-searchstyle-macros 'undefine)
2400@end example
2401@findex @code{viper-set-emacs-state-searchstyle-macros}
2402in the hook to the major mode (e.g., @code{dired-mode-hook}).
2403@xref{Vi Macros}, for more information on Vi macros.
2404
2405@item viper-heading-start
2406@item viper-heading-end
2407@cindex headings
2408@cindex sections
2409@cindex paragraphs
2410@cindex sentences
2411Regular Expressions for @kbd{[[} and @kbd{]]}. Note that Emacs defines
2412Regexps for paragraphs and sentences. @xref{Paragraphs,,Paragraphs and
2413Sentences,emacs,The GNU Emacs Manual}, for details.
2414@item M-x viper-set-expert-level
2415@findex @code{viper-set-expert-level}
2416Change your user level interactively.
2417@item viper-smart-suffix-list '("" "tex" "c" "cc" "el" "p")
2418@vindex @code{viper-smart-suffix-list}
2419Viper supports Emacs-style file completion when it prompts the user for a
2420file name. However, in many cases, the same directory may contain files
2421with identical prefix but different suffixes, e.g., prog.c, prog.o,
2422paper.tex, paper.dvi. In such cases, completion will stop at the `.'.
2423If the above variable is a list of strings representing suffixes, Viper will
2424try these suffixes
2425in the order listed and will check if the corresponding file exists.
2426
2427For instance, if completion stopped at `paper.'@: and the user typed
2428@key{RET},
2429then Viper will check if the files `paper.', `paper.tex', `paper.c', etc., exist.
2430It will take the first such file. If no file exists, Viper will give a chance
2431to complete the file name by typing the appropriate suffix. If `paper.'@: was
2432the intended file name, hitting return will accept it.
2433
2434To turn this feature off, set the above variable to @code{nil}.
2435
2436@item viper-insertion-ring-size 14
2437@vindex @code{viper-insertion-ring-size}
2438@cindex Insertion ring
2439Viper remembers what was previously inserted in Insert and Replace states.
2440Several such recent insertions are kept in a special ring of strings of size
2441@code{viper-insertion-ring-size}.
2442If you enter Insert or Replace state you can reinsert strings from this
2443ring by typing @kbd{C-c M-p} or @kbd{C-c M-n}. The former will search the
2444ring in
2445the direction of older insertions, and the latter will search in
2446the direction of newer insertions. Hitting @kbd{C-c M-p} or @kbd{C-c M-n}
2447in succession
2448will undo the previous insertion from the ring and insert the next item on
2449the ring. If a larger ring size is needed, change the value of the above
ece4bae5 2450variable in the Viper customization file.
4009494e
GM
2451
2452Since typing these sequences of keys may be tedious, it is suggested that the
2453user should bind a function key, such as @kbd{f31}, as follows:
2454@example
2455(define-key viper-insert-global-user-map [f31]
2456 'viper-insert-prev-from-insertion-ring)
2457@end example
2458This binds @kbd{f31} (which is usually @kbd{R11} on a Sun workstation)
2459to the function that inserts the previous string in the insertion history.
2460To rotate the history in the opposite
2461direction, you can either bind an unused key to
2462@code{viper-insert-next-from-insertion-ring} or hit any digit (1 to 9) then
2463@kbd{f31}.
2464
2465One should not bind the above functions to @kbd{M-p} or @kbd{M-n}, since
9ff0b02b 2466this will interfere with the minibuffer histories and, possibly, other
4009494e
GM
2467major modes.
2468
2469@item viper-command-ring-size 14
2470@vindex @code{viper-command-ring-size}
2471@cindex Destructive command ring
2472@cindex Destructive command history
2473Viper keeps track of the recent history of destructive
2474commands, such as @kbd{dw}, @kbd{i}, etc.
2475In Vi state,
2476the most recent command can be re-executed by hitting `@kbd{.}', as in Vi.
2477However, repeated typing @kbd{C-c M-p} will cause Viper to show the
2478previous destructive commands in the minibuffer. Subsequent hitting `@kbd{.}'
2479will execute the command that was displayed last.
2480The key @kbd{C-c M-n} will cycle through the command history in the
2481opposite direction.
2482Since typing @kbd{C-c M-p} may be tedious, it is more convenient to bind an
2483appropriate function to an unused function key on the keyboard and use that
2484key. For instance, the following
2485@example
2486(define-key viper-vi-global-user-map [f31]
2487 'viper-prev-destructive-command)
2488@end example
2489binds the key @kbd{f31} (which is usually @kbd{R11} on a Sun workstation)
2490to the function that searches the command history in the direction of older
2491commands. To search in the opposite
2492direction, you can either bind an unused key to
2493@code{viper-next-destructive-command} or hit any digit (1 to 9) then @kbd{f31}.
2494
2495One should not bind the above functions to @kbd{M-p} or @kbd{M-n}, since
9ff0b02b 2496this will interfere with the minibuffer histories and, possibly, other
4009494e
GM
2497major modes.
2498
2499@item viper-minibuffer-vi-face 'viper-minibuffer-vi-face
2500@item viper-minibuffer-insert-face 'viper-minibuffer-insert-face
2501@item viper-minibuffer-emacs-face 'viper-minibuffer-emacs-face
2502These faces control the appearance of the minibuffer text in the
2503corresponding Viper states. You can change the appearance of these faces
44e97401 2504through Emacs's customization widget, which is accessible through the
4009494e
GM
2505menubar.
2506
2507Viper is located in this widget under the @emph{Emulations} customization
2508subgroup of the @emph{Editing} group. All Viper faces are grouped together
2509in Viper's @emph{Highlighting} customization subgroup.
2510
2511Note that only the text you type in is affected by the above faces.
9ff0b02b 2512Prompts and minibuffer messages are not affected.
4009494e
GM
2513
2514Purists who do not like adornments in the minibuffer can always zap them by
2515putting
2516@example
2517(copy-face 'default 'viper-minibuffer-vi-face)
2518(copy-face 'default 'viper-minibuffer-insert-face)
2519(copy-face 'default 'viper-minibuffer-emacs-face)
2520@end example
ece4bae5 2521in their Viper customization file or through the customization widget, as
4009494e
GM
2522described above. However, in that case, the user will not have any
2523indication of the current Viper state in the minibuffer. (This is important
2524if the user accidentally switches to another Viper state by typing @key{ESC} or
2525@kbd{C-z}).
2526@item M-x viper-go-away
2527@findex @code{viper-go-away}
2528Make Viper disappear from the face of your running Emacs instance. If your
2529fingers start aching again, @kbd{M-x viper-mode} might save your day.
2530@item M-x toggle-viper-mode
2531@findex @code{toggle-viper-mode}
2532Toggle Viperization of Emacs on and off.
2533@end table
2534
2535@cindex Multifile documents and programs
2536
2537Viper provides some support for multi-file documents and programs.
2538If a document consists of several files we can designate one of them as a
2539master and put the following at the end of that file:
2540@lisp
2541;; Local Variables:
2542;; eval: (viper-setup-master-buffer "file1" "file2" "file3" "file4")
2543;; End:
2544@end lisp
2545@noindent
2546where @code{file1} to @code{file4} are names of files related to the master
2547file. Next time, when the master file is visited, the command
2548@code{viper-setup-master-buffer} will be evaluated and the above files will
2549be associated with the master file. Then, the new Ex command
2550@kbd{:RelatedFile} (abbr.@: @kbd{:R}) will display files 1 to 4 one after
2551another, so you can edit them. If a file is not in any Emacs buffer, it
2552will be visited. The command @kbd{PreviousRelatedFile} (abbr., @kbd{:P})
2553goes through the file list in the opposite direction.
2554@findex @kbd{:RelatedFile}
2555@findex @kbd{:PreviousRelatedFile}
2556
2557These commands are akin to @kbd{:n} and @kbd{:N}, but they allow the user to
2558focus on relevant files only.
2559
2560Note that only the master file needs to have the aforementioned block of
2561commands. Also, ";;" above can be replaced by some other
2562markers. Semicolon is good for Lisp programs, since it is considered a
2563comment designator there. For LaTeX, this could be "%%%", and for C the
2564above block should be commented out.
2565
2566Even though these commands are sometimes useful, they are no substitute for
2567the powerful @emph{tag table} facility of Emacs. Viper's @kbd{:tag} command
2568in a primitive interface to Emacs tags. @xref{Tags,Tags,Tags,emacs,
2569The GNU Emacs Manual}, for more information on tags.
2570
2571The following two commands are normally bound to a mouse click and are part
2572of Viper. They work only if Emacs runs as an application under X
2573Windows (or under some other window system for which a port of GNU Emacs 20
2574is available). Clicking the mouse when Emacs is invoked in an Xterm window
2575(using @code{emacs -nw}) will do no good.
2576
2577@table @code
2578@cindex mouse
2579@cindex mouse-search
2580@item viper-mouse-search-key (meta shift 1)
2581@vindex @code{viper-mouse-insert-key}
2582This variable controls the @emph{mouse-search} feature of Viper. The
2583default value
2584states that holding Meta and Shift keys while clicking mouse button 1
2585should initiate search for a region under the mouse pointer (defined
2586below). This command can take a prefix argument, which indicates the
2587occurrence of the pattern to search for.
2588
2589Note: while loading initially, Viper binds this mouse action only if it is
2590not already bound to something else. If you want to use the mouse-search
2591feature, and the @kbd{Meta-Shift-Mouse-1} mouse action is already bound to
2592something else, you can rebind the mouse-search feature by setting
ece4bae5
GM
2593@code{viper-mouse-search-key} to something else in
2594your Viper customization file:
4009494e
GM
2595@lisp
2596(setq viper-mouse-search-key '(meta 1))
2597@end lisp
2598This would bind mouse search to the action invoked by pressing the
2599Meta key and clicking mouse button 1. The allowed values of
2600@code{viper-mouse-search-key} are lists that contain a mouse-button number
2601(1,2, or 3) and any combination of the words `control', `meta', and
2602`shift'.
2603
2604If the requested mouse action (e.g., (meta 1)) is already taken for other
2605purposes then you have to confirm your intention by placing the following
ece4bae5
GM
2606command in your Viper customization file after setting
2607@code{viper-mouse-search-key}:
4009494e
GM
2608@lisp
2609(viper-bind-mouse-search-key 'force)
2610@end lisp
2611
2612You can also change this setting interactively, through the customization
2613widget of Emacs (type @kbd{:customize}).
2614
2615The region that is chosen as a pattern to search for is determined as
2616follows. If search is invoked via a single click, Viper chooses the region
2617that lies between the beginning of the ``word'' under the pointer (``word''
2618is understood in Vi sense) and the end of that word. The only difference
2619with Vi's words is that in Lisp major modes `-' is considered an
2620alphanumeric symbol. This is done for the convenience of working with Lisp
2621symbols, which often have an `-' in them. Also, if you click on a
2622non-alphanumeric character that is not a word separator (in Vi sense) then
2623this character will also be considered alphanumeric, provided that it is
2624adjacent (from either side) to an alphanumeric character. This useful
2625feature gives added control over the patterns selected by the mouse click.
2626
2627On a double-click, the region is determined by the beginning of the current
2628Vi's ``Word'' (i.e., the largest non-separator chunk of text) and the End
2629of that ``Word'' (as determined by the @kbd{E} command).
2630
2631On a triple-click, the region consists of the entire line where the click
2632occurred with all leading and trailing spaces and tabs removed.
2633
2634@cindex mouse-insert
2635@item viper-mouse-insert-key (meta shift 2)
2636@vindex @code{viper-mouse-insert-key}
2637This variable controls the @emph{mouse-insert} feature of Viper.
2638The above default value states that
2639holding Meta and Shift keys while clicking mouse button 2
2640should insert the region surrounding the
2641mouse pointer. The rules defining this region are the same as for
2642mouse-search. This command takes an optional prefix argument, which
2643indicates how many such regions to snarf from the buffer and insert. (In
2644case of a triple-click, the prefix argument is ignored.)
2645
2646Note: while loading initially, Viper binds this mouse action only if it not
2647already bound to something else. If you want to use this feature and the
2648default mouse action is already bound, you can rebind mouse-insert by
ece4bae5 2649placing this command in your Viper customization file:
4009494e
GM
2650@lisp
2651(setq viper-mouse-insert-key '(meta 2))
2652@end lisp
2653If you want to bind mouse-insert to an action even if this action is
2654already taken for other purposes in Emacs, then you should add this command
ece4bae5 2655to your Viper customization file, after setting @code{viper-mouse-insert-key}:
4009494e
GM
2656@lisp
2657(viper-bind-mouse-insert-key 'force)
2658@end lisp
2659
2660This value can also be changed via the Emacs customization widget at the
2661menubar.
2662
2663@item viper-multiclick-timeout
2664This variable controls the rate at which double-clicking must occur for the
2665purpose of mouse search and mouse insert. By default, this is set to
2666@code{double-click-time} in Emacs and to
2667@code{mouse-track-multi-click-time} milliseconds in XEmacs.
2668@end table
2669@kindex @kbd{S-Mouse-1}
2670@kindex @kbd{S-Mouse-2}
2671@kindex @kbd{meta shift button1up}
2672@kindex @kbd{meta shift button2up}
2673@vindex @code{viper-multiclick-timeout}
2674@findex @code{viper-mouse-click-insert-word}
2675@findex @code{viper-mouse-click-search-word}
2676
2677Note: The above functions search and insert in the selected window of
2678the latest active frame. This means that you can click in another window or
2679another frame and have search or insertion done in the frame and window you
2680just left. This lets one use these functions in a multi-frame
2681configuration. However, this may require some getting used to. For
2682instance, if you are typing in a frame, A, and then move the mouse to frame
2683B and click to invoke mouse search, search (or insertion) will be performed
1df7defd 2684in frame A@. To perform search/insertion in frame B, you will first have to
4009494e
GM
2685shift focus there, which doesn't happen until you type a character or
2686perform some other action in frame B---mouse search doesn't shift focus.
2687
2688If you decide that you don't like the above feature and always want
2689search/insertion be performed in the frame where the click occurs, don't
2690bind (and unbind, if necessary) @code{viper-mouse-catch-frame-switch} from
2691the mouse event it is bound to.
2692
2693Mouse search is integrated with Vi-style search, so you can
2694repeat it with @kbd{n} and @kbd{N}. It should be also noted that, while
2695case-sensitivity of search in Viper is controlled by the variable
2696@code{viper-case-fold-search}, the case of mouse search is
2697controlled by the Emacs variable @code{case-fold-search}, which may be set
2698differently from @code{viper-case-fold-search}. Therefore, case-sensitivity
2699of mouse search may be different from that of the usual Vi-style search.
2700
2701Finally, if the way Viper determines the word to be searched for or to be
2702inserted is not what you want, there is a variable,
2703@code{viper-surrounding-word-function}, which can be changed to indicate
2704another function for snarfing words out of the buffer. The catch is that
2705you will then have to write such a function and make it known to your
2706Emacs. The function @code{viper-surrounding-word} in @file{viper.el} can be
2707used as a guiding example.
2708
1a5d3215 2709@node Vi Macros
4009494e
GM
2710@section Vi Macros
2711
2712@cindex Vi macros
2713
2714Viper supports much enhanced Vi-style macros and also facilitates the use
2715of Emacs-style macros. To define a temporary macro, it is generally more
2716convenient to use Emacs keyboard macro facility. Emacs keyboard macros are
2717usually defined anonymously, and the latest macro can be executed by typing
2718@kbd{C-x e} (or @kbd{*}, if Viper is in Vi state). If you need to use several
2719temporary macros, Viper lets you save them to a
2720register (a lowercase letter); such macros can then be executed by typing
2721@kbd{@@a} in Vi state (if a macro was previously saved in register
2722@kbd{a}).
2723@xref{Macros and Registers}, for details.
2724
2725If, however, you need to use a macro regularly, it must be given a
2726permanent name and saved. Emacs manual explains how to do this, but
2727invocation of named Emacs macros is quite different from Vi's. First,
2728invocation of permanent Emacs macros takes time because it requires typing
2729too many keys (to a Vi user's taste, anyway).
2730Second, binding such macros to function keys, for
2731fast access, hogs valuable real estate on the keyboard.
2732
2733Vi-style macros are better in that respect, since Vi lets the user overload
2734the meaning of key sequences: keys typed in fast succession are treated
2735specially, if this key sequence is bound to a macro.
2736
2737Viper provides Vi-style keyboard macros through the usual Ex commands,
2738@kbd{:map} and
2739@kbd{:map!}. These macros are much more powerful in Viper than
2740they are in the original Vi and in other emulators. This is because Viper
2741implements an enhanced vi-style
2742interface to the powerful Emacs keyboard macro facility.
2743
2744First, any Emacs
2745command can be executed while defining a macro, not just the Vi
2746commands. In particular, the user can invoke Emacs commands via @kbd{M-x
2747command-name} or by pressing various function keys on the keyboard. One
2748can even use the mouse, although this is usually not useful and is not
2749recommended (and macros defined with the use of the mouse cannot be saved in
2750command history and in the startup file, for future use).
2751
2752Macros defined by mixing Vi and Emacs commands are represented as
2753vectors. So, don't be confused when you see one (usually through the
2754history of Ex commands). For instance, if @kbd{gg} is defined by typing
2755@kbd{l}, the up-arrow key and @kbd{M-x next-line}, its definition will look
2756as follows in Emacs:
2757
2758@example
2759[l up (meta x) n e x t - l i n e return]
2760@end example
2761
2762Second, Viper macros are defined in a WYSIWYG style. This means that
2763commands are executed as you type them, so you can see precisely what is
2764being defined. Third, macros can be bound to arbitrary sequences of keys,
2765not just to printable keys. For instance, one can define a macro that will
2766be invoked by hitting @kbd{f3} then @kbd{f2} function keys. (The keys
2767@kbd{delete} and @kbd{backspace} are excluded; also, a macro invocation
2768sequence can't start with @key{ESC}. Some other keys, such as @kbd{f1} and
2769@kbd{help}, can't be bound to macros under Emacs, since they
2770are bound in @code{key-translation-map}, which overrides any other binding
2771the user gives to keys. In general, keys that have a binding in
2772@code{key-translation-map} can't be bound to a macro.)
2773
2774Fourth, in Viper, one can define macros that are specific to a given
2775buffer, a given major mode, or macros that are defined for all buffers. In
2776fact, the same macro name can have several different definitions: one
2777global, several definitions for various major modes, and
2778definitions for various specific buffers. Buffer-specific definitions
2779override mode-specific definitions, which, in turn, override global
2780definitions.
2781
2782As if all that is not enough, Viper (through its interface to Emacs
2783macros) lets the user define keyboard macros that ask for confirmation or
2784even prompt the user for input and then continue. To do this, one should
2785type @kbd{C-x q} (for confirmation) or @kbd{C-u C-x q} (for prompt).
2786For details, @pxref{Keyboard Macro Query,,Customization,emacs,The GNU Emacs
76f1a3c3 2787Manual}.
4009494e 2788
f99f1641 2789When the user finishes defining a macro (which is done by typing @kbd{C-x)},
4009494e
GM
2790a departure from Vi), you will be asked whether you want this
2791macro to be global, mode-specific, or buffer-specific. You will also be
ece4bae5 2792given a chance to save the macro in your Viper customization file.
4009494e
GM
2793This is the easiest way to save a macro and make
2794it permanently available. If you work your startup files with bare hands,
2795here is how Viper saves the above macro so that it will be
2796available in Viper's Insert state (and Replace state) in buffer @code{my-buf}
2797only:
2798
2799@example
2800(viper-record-kbd-macro "gg" 'insert-state
2801 [l up (meta x) n e x t - l i n e return]
2802 "my-buf")
2803@end example
2804
2805@noindent
2806To do the same for Vi state and all buffers with the major mode
2807@code{cc-mode}, use:
2808
2809@example
2810(viper-record-kbd-macro "gg" 'vi-state
2811 [l up (meta x) n e x t - l i n e return]
2812 'cc-mode)
2813@end example
2814
2815@noindent
2816Both macro names and macro definitions are vectors of symbols that denote
2817keys on the keyboard. Some keys, like @kbd{\}, @kbd{ }, or digit-keys must
2818be escaped with a backslash. Modified keys are represented as lists. For
2819instance, holding Meta and Control and pressing @kbd{f4} is represented as
2820@kbd{(control meta f4)}.
2821If all members of a vectors are printable characters (or sequences, such as
2822@kbd{\e}, @kbd{\t}, for @key{ESC} and @key{TAB}), then they can also be represented as
2823strings:
2824
2825@example
2826(viper-record-kbd-macro "aa" 'vi-state "aaa\e" "my-buffer")
2827@end example
2828
2829@noindent
2830Thus, typing @kbd{aa} fast in Vi state will switch Viper to Insert state
2831(due to the first @kbd{a}), insert @kbd{aa}, and then it will switch back to Vi
2832state. All this will take effect only in the buffer named @code{my-buffer}.
2833
2834Note that the last argument to @code{viper-record-kbd-macro} must be either a
2835string (a buffer name), a symbol representing a major mode, or @code{t};
2836the latter says that the macro is to be defined for all buffers
2837(which is how macros are defined in original Vi).
2838
2839For convenience, Viper also lets you define Vi-style macros in its Emacs
2840state. There is no Ex command, like @kbd{:map} and @kbd{:map!} for doing
ece4bae5
GM
2841this, but the user can include such a macro in the Viper customization file.
2842The only thing is that the @code{viper-record-kbd-macro} command should specify
4009494e
GM
2843@code{emacs-state} instead of @code{vi-state} or @code{insert-state}.
2844
2845The user can get rid of a macro either by using the Ex commands @kbd{:unmap}
2846and @kbd{:unmap!} or by issuing a call to @code{viper-unrecord-kbd-macro}.
2847The latter is more powerful, since it can delete macros even in
2848@code{emacs-state}. However, @code{viper-unrecord-kbd-macro} is usually
2849needed only when the user needs to get rid of the macros that are already
2850predefined in Viper.
2851The syntax is:
2852@findex @code{viper-unrecord-kbd-macro}
2853@example
2854(viper-unrecord-kbd-macro macro state)
2855@end example
2856@noindent
2857The second argument must be @code{vi-state}, @code{insert-state}, or
2858@code{emacs-state}. The first argument is a name of a macro. To avoid
2859mistakes in specifying names of existing macros, type @kbd{M-x
2860viper-describe-kbd-macros} and use a name from the list displayed by this
2861command.
2862
2863If an error occurs during macro definition, Emacs
2864aborts the process, and it must be repeated. This is analogous to Vi,
2865except that in Vi the user doesn't know there is an error until the macro is
2866actually run. All that means that in order for a definition to be
2867successful, the user must do some simple planning of the process in
2868advance, to avoid errors. For instance, if you want to map @kbd{gg} to
2869@kbd{llll} in Vi state, you must make sure that there is enough room on the
2870current line. Since @kbd{l} moves the cursor forward, it may signal an
2871error on reaching the end of line, which will abort the definition.
2872
2873These precautions are necessary only when defining macros; they will help
2874avoid the need to redo the job. When macros are actually run, an error
2875during the execution will simply terminate the current execution
2876(but the macro will remain mapped).
2877
2878A macro name can be a string of characters or a vector of keys.
2879The latter makes it possible to define macros bound to, say, double-hits
2880on a function key, such as @kbd{up} or @kbd{f13}.
2881This is very useful if you run out of function keys on your keyboard; it
2882makes Viper macro facility a @emph{keyboard doubler}, so to speak.
2883
2884Elsewhere (@xref{Key Bindings}, for details), we review
2885the standard Emacs mechanism for binding function keys to commands.
2886For instance,
2887
2888@example
2889(global-set-key [f13] 'repeat-complex-command)
2890@end example
2891
2892@noindent
2893binds the key f13 to the Emacs function that repeats the last minibuffer
2894command. Under Viper, however, you may still use this key for additional
2895purposes, if you bind, say, a double-hitting action for that key to some
2896other function. Emacs doesn't allow the user to do that, but Viper does
2897this through its keyboard macro facility. To do this, type @kbd{:map }
2898first. When you are asked to enter a macro name, hit f13 twice, followed by
2899@key{RET} or @key{SPC}.
2900
2901Emacs will now start the mapping process by actually executing
2902Vi and Emacs commands, so that you could see what will happen each time the
2903macro is executed. Suppose now we wanted to bind the key sequence
2904@kbd{f13 f13} to the command @code{eval-last-sexp}. To accomplish this, we
2905can type @kbd{M-x eval-last-sexp} followed by @kbd{C-x )}.
ece4bae5
GM
2906If you answer positively to Viper's offer to save this macro in your
2907Viper customization file for future uses, the following will be inserted
2908in that file:
4009494e
GM
2909
2910@example
2911(viper-record-kbd-macro [f16 f16] 'vi-state
2912 [(meta x) e v a l - l a s t - s e x p]
2913 'lisp-interaction-mode)
2914@end example
2915
2916To illustrate the above point, Viper provides two canned macros, which, by
2917default, are bound to @kbd{[f12 \1]} and @kbd{[f12 \2]} (invoked by typing
2918@kbd{f12} then @kbd{1} and @kbd{2}, respectively). These macros are useful
2919shortcuts to Viper's command ring history. The first macro will execute the
2920second-last destructive command (the last one is executed by @kbd{.}, as
2921usual). The second macro executes the third-last command.
2922
2923If you need to go deeper into the command history, you will have to use
2924other commands, as described earlier in this section; or you can bind,
2925say, @kbd{f12 \3} like this:
2926
2927@example
2928(viper-record-kbd-macro [f12 \3] 'vi-state
2929 [(meta x) r e p e a t - f r o m - h i s t o r y]
2930 t)
2931@end example
2932
2933
2934Note that even though the macro uses the function key @kbd{f12}, the key is
2935actually free and can still be bound to some Emacs function via
2936@code{define-key} or @code{global-set-key}.
2937
2938
2939Viper allows the user to define macro names that are prefixes of other macros.
2940For instance, one can define @kbd{[[} and @kbd{[[[[} to be macros.
2941If you type the exact sequence of such keys and then pause, Viper will
2942execute the right macro. However, if you don't pause and, say, type
2943@kbd{[[[[text} then the conflict is resolved as follows. If only one of the
2944key sequences, @kbd{[[} or @kbd{[[[[} has a definition applicable to the
2945current buffer, then, in fact, there is no conflict and the right macro
2946will be chosen. If both have applicable definitions, then the first one
2947found will be executed. Usually this is the macro with a shorter name. So,
2948in our case, @kbd{[[[[text} will cause the macro @kbd{[[} to be executed
2949twice and then the remaining keys, @kbd{t e x t}, will be processed.
2950
2951When defining macros using @kbd{:map} or @kbd{:map!}, the user enters
2952the actually keys to be used to invoke the macro. For instance, you
2953should hit the actual key @kbd{f6} if it is to be part of a macro
2954name; you do @emph{not} write @kbd{f 6}. When entering keys, Viper
2955displays them as strings or vectors (e.g., @code{"abc"} or @code{[f6
2956f7 a]}). The same holds for unmapping. Hitting @key{TAB} while
2957typing a macro name in the @kbd{:unmap} or @kbd{:unmap!} command will
2958cause name completion. Completions are displayed as strings or
2959vectors. However, as before, you don't actually type @samp{"},
2960@samp{[}, or @samp{]} that appear in the completions. These are
2961meta-symbols that indicate whether the corresponding macro name is a
2962vector or a string.
2963
2964One last difference from Vi: Vi-style keyboard macros cannot be defined in
2965terms of other Vi-style keyboard macros (but named Emacs macros are OK).
2966More precisely, while defining or executing a macro, the special meaning
2967of key sequences (as Vi macros) is ignored.
2968This is because it is all too easy to create an infinite loop in this way.
2969Since Viper macros are much more powerful than Vi's it is impossible to
2970detect such loops. In practice, this is not really a limitation but,
2971rather, a feature.
2972
9ff0b02b 2973We should also note that Vi macros are disabled in the minibuffer, which
4009494e
GM
2974helps keep some potential troubles away.
2975
2976The rate at which the user must type keys in order for them to be
2977recognized as a timeout macro is controlled by the variable
2978@code{viper-fast-keyseq-timeout}, which defaults to 200 milliseconds.
2979
ece4bae5
GM
2980For the most part, Viper macros defined in the Viper customization file can
2981be shared between X and TTY modes.
4009494e
GM
2982The problem with TTY may be that the function keys there generate sequences
2983of events instead of a single event (as under a window system).
2984Emacs maps some of these sequences back to the logical keys
2985(e.g., the sequences generated by the arrow keys are mapped to @kbd{up},
2986@kbd{left}, etc.). However, not all function keys are mapped in this way.
2987Macros that are bound to key sequences that contain such unmapped function
2988keys have to be redefined for TTY's (and possibly for every type of TTY you
2989may be using). To do this, start Emacs on an appropriate TTY device and
2990define the macro using @kbd{:map}, as usual.
2991
2992@findex @code{viper-describe-kbd-macros}
2993Finally, Viper provides a function that conveniently displays all macros
2994currently defined. To see all macros along with their definitions, type
2995@kbd{M-x viper-describe-kbd-macros}.
2996
1a5d3215 2997@node Commands
4009494e
GM
2998@chapter Commands
2999
3000This section is a semi-automatically bowdlerized version of the Vi
3001reference created by @* @samp{maart@@cs.vu.nl} and others. It can be
76f1a3c3 3002found on the Vi archives. This reference has been adapted for Viper.
4009494e
GM
3003
3004@menu
9360256a
GM
3005* Groundwork:: Textual Conventions and Viper basics
3006* Text Handling:: Moving, Editing, Undoing.
3007* Display:: Scrolling.
3008* File and Buffer Handling:: Editing, Writing and Quitting.
3009* Mapping:: Mapping Keys, Keyboard Macros
3010* Shell Commands:: Accessing Shell Commands, Processing Text
3011* Options:: Ex options, the @kbd{:set} commands
3012* Emacs Related Commands:: Meta Keys, Windows
4009494e
GM
3013* Mouse-bound Commands:: Search and insertion of text
3014@end menu
3015
1a5d3215 3016@node Groundwork
4009494e
GM
3017@section Groundwork
3018
3019The VI command set is based on the idea of combining motion commands
3020with other commands. The motion command is used as a text region
3021specifier for other commands.
3022We classify motion commands into @dfn{point commands} and
76f1a3c3 3023@dfn{line commands}.
4009494e
GM
3024
3025@cindex point commands
3026
3027The point commands are:
3028
3029@quotation
3030@kbd{h}, @kbd{l}, @kbd{0}, @kbd{$}, @kbd{w}, @kbd{W}, @kbd{b}, @kbd{B},
3031@kbd{e}, @kbd{E}, @kbd{(}, @kbd{)}, @kbd{/}, @kbd{?}, @kbd{`}, @kbd{f},
3032@kbd{F}, @kbd{t}, @kbd{T}, @kbd{%}, @kbd{;}, @kbd{,}, @kbd{^}
3033@end quotation
3034
3035@cindex line commands
3036
3037The line commands are:
3038
3039@quotation
3040@kbd{j}, @kbd{k}, @kbd{+}, @kbd{-}, @kbd{H}, @kbd{M}, @kbd{L}, @kbd{@{},
3041@kbd{@}}, @kbd{G}, @kbd{'}, @kbd{[[}, @kbd{]]}, @kbd{[]}
3042@end quotation
3043@noindent
3044
3045Text Deletion Commands (@pxref{Deleting Text}), Change commands
3046(@pxref{Changing Text}), even Shell Commands (@pxref{Shell Commands})
3047use these commands to describe a region of text to operate on.
3048
3049@cindex r and R region specifiers
3050
3051Viper adds two region descriptors, @kbd{r} and @kbd{R}. These describe
3052the Emacs regions (@pxref{Basics}), but they are not movement commands.
3053
3054The command description uses angle brackets @samp{<>} to indicate
3055metasyntactic variables, since the normal conventions of using simple
3056text can be confusing with Viper where the commands themselves are
3057characters. Watch out where @kbd{<} shift commands and @kbd{<count>} are
3058mentioned together!!!
3059
3060@kindex <move>
3061@kindex <a-z>
3062@kindex <address>
3063@cindex <move>
3064@cindex <a-z>
3065@cindex <address>
3066@cindex movements
3067
3068@samp{<move>} refers to the above movement commands, and @samp{<a-z>}
3069refers to registers or textmarkers from @samp{a} to @samp{z}. Note
3070that the @samp{<move>} is described by full move commands, that is to
3071say they will take counts, and otherwise behave like normal move commands.
3072@cindex Ex addresses
3073@samp{<address>} refers to Ex line addresses, which include
3074
3075@table @kbd
3076@item .@: <No address>
3077Current line
3078@item .+n .-n
3079Add or subtract for current line
3080@item number
3081Actual line number, use @kbd{.=} to get the line number
3082@item '<a-z>
3083Textmarker
3084@item $
3085Last line
3086@item x,y
3087Where x and y are one of the above
3088@item %
3089@cindex % (Ex address)
3090For the whole file, same as (1,$).
3091@item /<pat>/
3092@itemx ?<pat>?
3093Next or previous line with pattern <pat>.
3094
3095Note that the pattern is allowed to contain newline character (inserted as
3096@kbd{C-qC-j}). Therefore, one can search for patterns that span several
3097lines.
3098@end table
3099
3100@cindex % (Current file)
3101Note that @samp{%} is used in Ex commands @kbd{:e} and @kbd{:r <shell-cmd>}
3102to mean current file. If you want a @samp{%} in your command, it must be
3103escaped as @samp{\%}. Note that @kbd{:w} and the regular @kbd{:r <file>}
3104command doesn't support the meta symbols @samp{%} and @samp{#}, because
3105file history is a better mechanism.
3106@cindex # (Previous file)
3107Similarly, @samp{#} expands to the previous file. The previous file is
3108the first file in @kbd{:args} listing. This defaults to previous window
3109in the VI sense if you have one window only.
3110
3111@kindex <args>
3112@kindex <cmd>
3113@cindex <args>
3114@cindex <cmd>
3115@noindent
3116Others like @samp{<args> -- arguments}, @samp{<cmd> -- command} etc.
3117should be fairly obvious.
3118
3119@noindent
3120Common characters referred to include:
3121
3122@table @kbd
3123@item <sp>
3124Space
3125@item <ht>
3126Tab
3127@item <lf>
3128Linefeed
3129@item <esc>
3130Escape
3131@item <cr>
3132Return, Enter
3133@end table
3134@cindex <cr>
3135@cindex <esc>
3136@cindex <lf>
3137@cindex <ht>
3138@cindex <sp>
3139
3140@cindex words
3141@cindex WORDS
3142@cindex char
3143@cindex CHAR
3144
3145We also use @samp{word} for alphanumeric/non-alphanumeric words, and
3146@samp{WORD} for whitespace delimited words. @samp{char} refers to any
3147@acronym{ASCII} character, @samp{CHAR} to non-whitespace character.
3148Brackets @samp{[]} indicate optional parameters; @samp{<count>} also
3149optional, usually defaulting to 1. Brackets are elided for
3150@samp{<count>} to eschew obfuscation.
3151
3152Viper's idea of Vi's words is slightly different from Vi. First, Viper
3153words understand Emacs symbol tables. Therefore, all symbols declared to be
3154alphanumeric in a symbol table can automatically be made part of the Viper
3155word. This is useful when, for instance, editing text containing European,
3156Cyrillic, Japanese, etc., texts.
3157
3158Second, Viper lets you depart from Vi's idea of a word by changing the a
3159syntax preference via the customization widget (the variable
3160@code{viper-syntax-preference}) or by executing
3161@code{viper-set-syntax-preference} interactively.
3162
3163By default, Viper syntax preference is @code{reformed-vi}, which means that
3164Viper considers only those symbols to be part of a word that are specified
3165as word-symbols by the current Emacs syntax table (which may be different
3166for different major modes) plus the underscore symbol @kbd{_}, minus the
3167symbols that are not considered words in Vi (e.g., `,',;, etc.), but may be
3168considered as word-symbols by various Emacs major modes. Reformed-Vi works
3169very close to Vi, and it also recognizes words in other
3170alphabets. Therefore, this is the most appropriate mode for editing text
3171and is likely to fit all your needs.
3172
3173You can also set Viper syntax preference to @code{strict-vi}, which would
3174cause Viper to view all non-English letters as non-word-symbols.
3175
3176You can also specify @code{emacs} as your preference, which would
3177make Viper use exactly the same notion of a word as Emacs does. In
3178particular, the underscore may not be part of a word in some major modes.
3179
3180Finally, if @code{viper-syntax-preference} is set to @code{extended}, Viper
3181words would consist of characters that are classified as alphanumeric
3182@emph{or} as parts of symbols. This is convenient for editing programs.
3183
3184@code{viper-syntax-preference} is a local variable, so it can have different
3185values for different major modes. For instance, in programming modes it can
3186have the value @code{extended}. In text modes where words contain special
3187characters, such as European (non-English) letters, Cyrillic letters, etc.,
3188the value can be @code{reformed-vi} or @code{emacs}.
3189If you consider using different syntactic preferences for different major
3190modes, you should execute, for example,
3191
3192@example
3193(viper-set-syntax-preference nil "extended")
3194@end example
3195
3196in the appropriate major mode hooks.
3197
3198@vindex @code{viper-syntax-preference}
3199@findex @code{viper-set-syntax-preference}
3200@cindex syntax table
3201
3202
3203
3204The above discussion concerns only the movement commands. In regular
3205expressions, words remain the same as in Emacs. That is, the expressions
44e97401 3206@code{\w}, @code{\>}, @code{\<}, etc., use Emacs's idea of what is a word,
4009494e
GM
3207and they don't look into the value of variable
3208@code{viper-syntax-preference}. This is because Viper avoids changing
3209syntax tables in order to not thwart the various major modes that set these
3210tables.
3211
65e7ca35 3212The usual Emacs convention is used to indicate Control Characters, i.e.,
4009494e
GM
3213C-h for Control-h. @emph{Do not confuse this with a sequence of separate
3214characters
3215C, -, h!!!} The @kbd{^} is itself, never used to indicate a
3216Control character.
3217
3218Finally, we note that Viper's Ex-style commands can be made to work on the
3219current Emacs region. This is done by typing a digit argument before
3220@kbd{:}. For instance, typing @kbd{1:} will prompt you with something like
3221@emph{:123,135}, assuming that the current region starts at line 123 and
3222ends at line 135. There is no need to type the line numbers, since Viper
3223inserts them automatically in front of the Ex command.
3224@cindex Ex commands
3225
1a5d3215 3226@node Text Handling
4009494e
GM
3227@section Text Handling
3228
3229@menu
9360256a
GM
3230* Move Commands:: Moving, Searching
3231* Marking:: Textmarkers in Viper and the Emacs Mark.
3232* Appending Text:: Text insertion, Shifting, Putting
3233* Editing in Insert State:: Autoindent, Quoting etc.
3234* Deleting Text:: Deleting
3235* Changing Text:: Changing, Replacement, Joining
3236* Search and Replace:: Searches, Query Replace, Pattern Commands
3237* Yanking:: Yanking, Viewing Registers
3238* Undoing:: Multiple Undo, Backups
4009494e
GM
3239@end menu
3240
1a5d3215 3241@node Move Commands
4009494e
GM
3242@subsection Move Commands
3243
3244@cindex movement commands
3245@cindex searching
3246@cindex textmarkers
3247@cindex markers
3248@cindex column movement
3249@cindex paragraphs
3250@cindex headings
3251@cindex sections
3252@cindex sentences
3253@cindex matching parens
3254@cindex paren matching
3255
3256@table @kbd
3257@item <count> h C-h
3258<count> chars to the left.
3259@item <count> j <lf> C-n
3260<count> lines downward.
3261@item <count> l <sp>
3262<count> chars to the right.
3263@item <count> k C-p
3264<count> lines upward.
3265@item <count> $
3266To the end of line <count> from the cursor.
3267@item <count> ^
f99f1641 3268To the first CHAR <count> @minus{} 1 lines lower.
4009494e
GM
3269@item <count> -
3270To the first CHAR <count> lines higher.
3271@item <count> + <cr>
3272To the first CHAR <count> lines lower.
3273@item 0
3274To the first char of the line.
3275@item <count> |
3276To column <count>
3277@item <count> f<char>
3278<count> <char>s to the right (find).
3279@item <count> t<char>
3280Till before <count> <char>s to the right.
3281@item <count> F<char>
3282<count> <char>s to the left.
3283@item <count> T<char>
3284Till after <count> <char>s to the left.
3285@item <count> ;
3286Repeat latest @kbd{f t F T} <count> times.
3287@item <count> ,
3288Repeat latest @kbd{f t F T}
3289<count> times in opposite direction.
3290@item <count> w
3291<count> words forward.
3292@item <count> W
3293<count> WORDS forward.
3294@item <count> b
3295<count> words backward.
3296@item <count> B
3297<count> WORDS backward.
3298@item <count> e
3299To the end of word <count> forward.
3300@item <count> E
3301To the end of WORD <count> forward.
3302@item <count> G
3303Go to line <count> (default end-of-file).
3304@item <count> H
3305To line <count> from top of the screen (home).
3306@item <count> L
3307To line <count> from bottom of the screen (last).
3308@item M
3309To the middle line of the screen.
3310@item <count> )
3311<count> sentences forward.
3312@item <count> (
3313<count> sentences backward.
3314@item <count> @}
3315<count> paragraphs forward.
3316@item <count> @{
3317<count> paragraphs backward.
3318@item <count> ]]
3319To the <count>th heading.
3320@item <count> [[
3321To the <count>th previous heading.
3322@item <count> []
3323To the end of <count>th heading.
3324@item m<a-z>
3325Mark the cursor position with a letter.
3326@item `<a-z>
3327To the mark.
3328@item '<a-z>
3329To the first CHAR of the line with the mark.
3330@item [<a-z>
3331Show contents of textmarker.
3332@item ]<a-z>
3333Show contents of register.
3334@item ``
3335To the cursor position before the latest absolute
3336jump (of which are examples @kbd{/} and @kbd{G}).
3337@item ''
3338To the first CHAR of the line on which the cursor
3339was placed before the latest absolute jump.
3340@item <count> /<string>
3341To the <count>th occurrence of <string>.
3342@item <count> /<cr>
3343To the <count>th occurrence of <string> from previous @kbd{/ or ?}.
3344@item <count> ?<string>
3345To the <count>th previous occurrence of <string>.
3346@item <count> ?<cr>
3347To the <count>th previous occurrence of <string> from previous @kbd{?@: or /}.
3348@item n
3349Repeat latest @kbd{/} @kbd{?} (next).
3350@item N
3351Repeat latest search in opposite direction.
3352@item C-c /
3353Without a prefix argument, this command toggles
3354case-sensitive/case-insensitive search modes and plain vanilla/regular
3355expression search. With the prefix argument 1, i.e.,
3356@kbd{1 C-c /}, this toggles case-sensitivity; with the prefix argument 2,
3357toggles plain vanilla search and search using
3358regular expressions. @xref{Viper Specials}, for alternative ways to invoke
3359this function.
3360@cindex vanilla search
3361@cindex case-sensitive search
3362@cindex case-insensitive search
3363@item %
3364Find the next bracket/parenthesis/brace and go to its match.
3365By default, Viper ignores brackets/parentheses/braces that occur inside
3366parentheses. You can change this by setting
ece4bae5
GM
3367@code{viper-parse-sexp-ignore-comments} to @code{nil} in your Viper
3368customization file.
4009494e
GM
3369This option can also be toggled interactively if you quickly hit @kbd{%%%}.
3370
3371This latter feature is implemented as a vi-style keyboard macro. If you
3372don't want this macro, put
3373
3374@example
3375(viper-set-parsing-style-toggling-macro 'undefine)
3376@end example
3377@findex @code{viper-set-parsing-style-toggling-macro}
3378
ece4bae5 3379in your Viper customization file.
4009494e
GM
3380
3381@end table
3382@kindex @kbd{%}
3383@kindex @kbd{C-c /}
3384@kindex @kbd{N}
3385@kindex @kbd{n}
3386@kindex @kbd{?<cr>}
3387@kindex @kbd{/<cr>}
3388@kindex @kbd{?<string>}
3389@kindex @kbd{/<string>}
3390@kindex @kbd{''}
3391@kindex @kbd{``}
3392@kindex @kbd{]<a-z>}
3393@kindex @kbd{[<a-z>}
3394@kindex @kbd{'<a-z>}
3395@kindex @kbd{`<a-z>}
3396@kindex @kbd{m<a-z>}
3397@kindex @kbd{[]}
3398@kindex @kbd{[[}
3399@kindex @kbd{]]}
3400@kindex @kbd{@{}
3401@kindex @kbd{@}}
3402@kindex @kbd{(}
3403@kindex @kbd{)}
3404@kindex @kbd{M}
3405@kindex @kbd{L}
3406@kindex @kbd{H}
3407@kindex @kbd{G}
3408@kindex @kbd{E}
3409@kindex @kbd{e}
3410@kindex @kbd{B}
3411@kindex @kbd{b}
3412@kindex @kbd{W}
3413@kindex @kbd{w}
3414@kindex @kbd{,}
3415@kindex @kbd{;}
3416@kindex @kbd{T<char>}
3417@kindex @kbd{F<char>}
3418@kindex @kbd{t<char>}
3419@kindex @kbd{f<char>}
3420@kindex @kbd{|}
3421@kindex @kbd{0}
3422@kindex @kbd{<cr>}
3423@kindex @kbd{+}
3424@kindex @kbd{-}
3425@kindex @kbd{^}
3426@kindex @kbd{$}
3427@kindex @kbd{C-p}
3428@kindex @kbd{<lf>}
3429@kindex @kbd{<sp>}
3430@kindex @kbd{C-n}
3431@kindex @kbd{C-h}
3432@kindex @kbd{h}
3433@kindex @kbd{j}
3434@kindex @kbd{k}
3435@kindex @kbd{l}
3436@vindex @code{viper-parse-sexp-ignore-comments}
3437
1a5d3215 3438@node Marking
4009494e
GM
3439@subsection Marking
3440
3441Emacs mark is referred to in the region specifiers @kbd{r} and @kbd{R}.
3442@xref{Emacs Preliminaries}, and @xref{Basics}, for explanation. Also
3443see @ref{Mark,,Mark,emacs,The GNU Emacs manual}, for an explanation of
3444the Emacs mark ring.
3445
3446@cindex marking
3447
3448@table @kbd
3449@item m<a-z>
3450Mark the current file and position with the specified letter.
3451@item m .
3452Set the Emacs mark (@pxref{Emacs Preliminaries}) at point.
3453@item m ^
3454Set the Emacs mark (@pxref{Emacs Preliminaries}) back to where it was last
3455set with the @kbd{m.} command. This is useful when you set the mark with
3456@kbd{m.}, but then some other command (such as @kbd{L} or @kbd{G}) changes
3457it in a way that you didn't like.
3458@item m <
3459Set the Emacs mark at beginning of buffer.
3460@item m >
3461Set the Emacs mark at end of buffer.
3462@item m ,
3463Jump to the Emacs mark.
3464@item :mark <char>
3465Mark position with text marker named <char>. This is an Ex command.
3466@item :k <char>
3467Same as @kbd{:mark}.
3468@item ``
3469Exchange point and mark.
3470@item ''
3471Exchange point and mark and go to the first CHAR on line.
3472@item '<a-z>
3473Go to specified Viper mark.
db671917 3474@item `<a-z>
4009494e
GM
3475Go to specified Viper mark and go to the first CHAR on line.
3476@end table
3477@kindex @kbd{m<a-z>}
3478@kindex @kbd{m.}
3479@kindex @kbd{m>}
3480@kindex @kbd{m<}
3481@kindex @kbd{m,}
3482@kindex @kbd{m^}
3483@findex @kbd{:mark}
3484@findex @kbd{:k}
3485@kindex @kbd{''}
3486@kindex @kbd{``}
3487@kindex @kbd{`<a-z>}
3488@kindex @kbd{'<a-z>}
3489
1a5d3215 3490@node Appending Text
4009494e
GM
3491@subsection Appending Text
3492
3493@xref{Options}, to see how to change tab and shiftwidth size. See the GNU
3494Emacs manual, or try @kbd{C-ha tabs} (If you have turned Emacs help on).
3495Check out the variable @code{indent-tabs-mode} to put in just spaces.
3496Also see options for word-wrap.
3497
3498@cindex inserting
3499@cindex appending
3500@cindex paste
3501@cindex put
3502
3503@table @kbd
3504@item <count> a
3505<count> times after the cursor.
3506@item <count> A
3507<count> times at the end of line.
3508@item <count> i
3509<count> times before the cursor (insert).
3510@item <count> I
3511<count> times before the first CHAR of the line
3512@item <count> o
3513On a new line below the current (open).
3514The count is only useful on a slow terminal.
3515@item <count> O
3516On a new line above the current.
3517The count is only useful on a slow terminal.
3518@item <count> ><move>
3519Shift the lines described by <count><move> one
3520shiftwidth to the right (layout!).
3521@item <count> >>
3522Shift <count> lines one shiftwidth to the right.
3523@item <count> ["<a-z1-9>]p
3524Put the contents of the (default undo) buffer
3525<count> times after the cursor. The register will
3526be automatically down-cased.
3527@item <count> ["<a-z1-9>]P
3528Put the contents of the (default undo) buffer
3529<count> times before the cursor. The register will
3530@item [<a-z>
3531Show contents of textmarker.
3532@item ]<a-z>
3533Show contents of register.
3534@item <count> .
3535Repeat previous command <count> times. For destructive
3536commands as well as undo.
3537@item f1 1 and f1 2
3538While @kbd{.} repeats the last destructive command,
3539these two macros repeat the second-last and the third-last destructive
3540commands. @xref{Vi Macros}, for more information on Vi macros.
3541@item C-c M-p and C-c M-n
3542In Vi state,
3543these commands help peruse the history of Vi's destructive commands.
3544Successive typing of @kbd{C-c M-p} causes Viper to search the history in
3545the direction
3546of older commands, while hitting @kbd{C-c M-n} does so in reverse
9ff0b02b 3547order. Each command in the history is displayed in the minibuffer. The
4009494e
GM
3548displayed command can
3549then be executed by typing `@kbd{.}'.
3550
3551Since typing the above sequences of keys may be tedious, the
3552functions doing the perusing can be bound to unused keyboard keys in the
ece4bae5 3553Viper customization file. @xref{Viper Specials}, for details.
4009494e
GM
3554@end table
3555@kindex @kbd{C-c M-p}
3556@kindex @kbd{C-c M-n}
3557@kindex @kbd{.}
3558@kindex @kbd{]<a-z>}
3559@kindex @kbd{[<a-z>}
3560@kindex @kbd{P}
3561@kindex @kbd{p}
3562@kindex @kbd{"<a-z1-9>p}
3563@kindex @kbd{"<a-z1-9>P}
3564@kindex @kbd{>>}
3565@kindex @kbd{><move>}
3566@kindex @kbd{O}
3567@kindex @kbd{o}
3568@kindex @kbd{i}
3569@kindex @kbd{A}
3570@kindex @kbd{a}
3571
1a5d3215 3572@node Editing in Insert State
4009494e
GM
3573@subsection Editing in Insert State
3574
3575Minibuffer can be edited similarly to Insert state, and you can switch
3576between Insert/Replace/Vi states at will.
9ff0b02b 3577Some users prefer plain Emacs feel in the minibuffer. To this end, set
4009494e
GM
3578@var{viper-vi-style-in-minibuffer} to @code{nil}.
3579
3580@cindex Insert state
3581
3582@table @kbd
3583@item C-v
3584Deprive the next char of its special meaning (quoting).
3585@item C-h
3586One char back.
3587@item C-w
3588One word back.
3589@item C-u
3590Back to the begin of the change on the
3591current line.
3592
3593@end table
3594@kindex @kbd{C-u}
3595@kindex @kbd{C-w}
3596@kindex @kbd{C-v}
3597
1a5d3215 3598@node Deleting Text
4009494e
GM
3599@subsection Deleting Text
3600
3601
3602There is one difference in text deletion that you should be
3603aware of. This difference comes from Emacs and was adopted in Viper
3604because we find it very useful. In Vi, if you delete a line, say, and then
3605another line, these two deletions are separated and are put back
3606separately if you use the @samp{p} command. In Emacs (and Viper), successive
3607series of deletions that are @emph{not interrupted} by other commands are
3608lumped together, so the deleted text gets accumulated and can be put back
3609as one chunk. If you want to break a sequence of deletions so that the
3610newly deleted text could be put back separately from the previously deleted
3611text, you should perform a non-deleting action, e.g., move the cursor one
3612character in any direction.
3613
3614@cindex shifting text
3615
3616@table @kbd
3617@item <count> x
3618Delete <count> chars under and after the cursor.
3619@item <count> X
3620Delete <count> chars before the cursor.
3621@item <count> d<move>
3622Delete from point to endpoint of <count><move>.
3623@item <count> dd
3624Delete <count> lines.
3625@item D
3626The rest of the line.
3627@item <count> <<move>
3628Shift the lines described by <count><move> one
3629shiftwidth to the left (layout!).
3630@item <count> <<
3631Shift <count> lines one shiftwidth to the left.
3632@end table
3633@kindex @kbd{<<}
3634@kindex @kbd{<<move>}
3635@kindex @kbd{D}
3636@kindex @kbd{dd}
3637@kindex @kbd{d<move>}
3638@kindex @kbd{X}
3639@kindex @kbd{x}
3640
1a5d3215 3641@node Changing Text
4009494e
GM
3642@subsection Changing Text
3643
3644@cindex joining lines
3645@cindex changing case
3646@cindex quoting regions
3647@cindex substitution
3648
3649@table @kbd
3650@item <count> r<char>
f99f1641 3651Replace <count> chars by <char>; no <esc>.
4009494e
GM
3652@item <count> R
3653Overwrite the rest of the line,
f99f1641 3654appending change @var{count} @minus{} 1 times.
4009494e
GM
3655@item <count> s
3656Substitute <count> chars.
3657@item <count> S
3658Change <count> lines.
3659@item <count> c<move>
3660Change from begin to endpoint of <count><move>.
3661@item <count> cc
3662Change <count> lines.
3663@item <count> C
f99f1641 3664The rest of the line and <count> @minus{} 1 next lines.
4009494e
GM
3665@item <count> =<move>
3666Reindent the region described by move.
3667@item <count> ~
3668Switch lower and upper cases.
3669@item <count> J
3670Join <count> lines (default 2).
3671@item :[x,y]s/<pat>/<repl>/<f>
3672Substitute (on lines x through y) the pattern
3673<pat> (default the last pattern) with <repl>. Useful
1df7defd 3674flags <f> are @samp{g} for @samp{global} (i.e., change every
4009494e
GM
3675non-overlapping occurrence of <pat>) and @samp{c} for
3676@samp{confirm} (type @samp{y} to confirm a particular
3677substitution, else @samp{n} ). Instead of @kbd{/} any
3678punctuation CHAR unequal to <space> <tab> and <lf> can be used as
3679delimiter.
3680
3681In Emacs, @samp{\&} stands for the last matched expression, so
3682@kbd{s/[ab]+/\&\&/} will double the string matched by @kbd{[ab]}.
3683Viper doesn't treat @samp{&} specially, unlike Vi: use @samp{\&} instead.
3684
3685Viper does not parse search patterns and does not expand special symbols
3686found there (e.g., @samp{~} is not expanded to the result of the previous
3687substitution).
3688
3689Note: @emph{The newline character (inserted as @kbd{C-qC-j})
3690can be used in <repl>}.
3691@item :[x,y]copy [z]
3692Copy text between @kbd{x} and @kbd{y} to the position after @kbd{z}.
3693@item :[x,y]t [z]
3694Same as @kbd{:copy}.
3695@item :[x,y]move [z]
3696Move text between @kbd{x} and @kbd{y} to the position after @kbd{z}.
3697@item &
1df7defd 3698Repeat latest Ex substitute command, e.g.,
4009494e
GM
3699@kbd{:s/wrong/right}.
3700@item :x,yp
3701@itemx :g/Pat/p
3702@itemx :v/Pat/p
3703The above commands display certain buffer lines in a
3704temporary buffer. The first form above displays the buffer lines between
3705@kbd{x} and @kbd{y}. The second displays the lines of the buffer, which
3706match a given pattern. The third form displays the lines that do @emph{not}
3707match the given pattern.
3708@item #c<move>
3709Change upper-case characters in the region to lower-case.
3710@item #C<move>
3711Change lower-case characters in the region to upper-case.
3712@item #q<move>
3713Insert specified string at the beginning of each line in the region
3714@item C-c M-p and C-c M-n
3715In Insert and Replace states, these keys are bound to commands that peruse
3716the history of the text
3717previously inserted in other insert or replace commands. By repeatedly typing
3718@kbd{C-c M-p} or @kbd{C-c M-n}, you will cause Viper to
3719insert these previously used strings one by one.
3720When a new string is inserted, the previous one is deleted.
3721
3722In Vi state, these keys are bound to functions that peruse the history of
3723destructive Vi commands.
3724@xref{Viper Specials}, for details.
3725@end table
3726@kindex @kbd{C-c M-p}
3727@kindex @kbd{C-c M-n}
3728@kindex @kbd{#q<move> }
3729@kindex @kbd{#C<move>}
3730@kindex @kbd{#c<move>}
3731@kindex @kbd{&}
3732@kindex @kbd{\&}
3733@findex @kbd{:substitute/<pat>/<repl>/<f>}
3734@findex @kbd{:s/<pat>/<repl>/<f>}
3735@findex @kbd{:copy [z]}
3736@findex @kbd{:t [z]}
3737@findex @kbd{:move [z]}
3738@kindex @kbd{J}
3739@kindex @kbd{~}
3740@kindex @kbd{=<move>}
3741@kindex @kbd{C}
3742@kindex @kbd{cc}
3743@kindex @kbd{c<move>}
3744@kindex @kbd{S}
3745@kindex @kbd{s}
3746@kindex @kbd{R}
3747@kindex @kbd{r<char>}
3748
1a5d3215 3749@node Search and Replace
4009494e
GM
3750@subsection Search and Replace
3751
3752@xref{Groundwork}, for Ex address syntax. @xref{Options}, to see how to
3753get literal (non-regular-expression) search and how to stop search from
3754wrapping around.
3755
3756@table @kbd
3757@item C-c /
3758Toggle case-sensitive search. With prefix argument, toggle vanilla/regular
3759expression search.
3760@item <count> /<string>
3761To the <count>th occurrence of <string>.
3762
3763Viper does not parse search patterns and does not expand special symbols
3764found there (e.g., @samp{~} is not expanded to the result of the previous
3765substitution).
3766
9ff0b02b
MK
3767After typing @kbd{/} or @kbd{?} all the usual Emacs minibuffer commands, such as
3768@kbd{M-p} and @kbd{M-n} are available. In addition, typing @kbd{C-s} will
3769insert the last search string used by the Emacs incremental search command
3770(which is bound to @kbd{C-s} everywhere except in this case).
3771
4009494e
GM
3772@item <count> ?<string>
3773To the <count>th previous occurrence of <string>.
3774@item <count> g<move>
3775Search for the text described by move. (off by default)
3776@item n
3777Repeat latest @kbd{/} @kbd{?} (next).
3778@item N
3779Idem in opposite direction.
3780@item %
3781Find the next bracket and go to its match
3782@item :[x,y]g/<string>/<cmd>
3783@cindex text processing
3784Search globally [from line x to y] for <string>
3785and execute the Ex <cmd> on each occurrence.
3786@item :[x,y]v/<string>/<cmd>
3787Execute <cmd> on the lines that don't match.
3788@item #g<move>
3789Execute the last keyboard macro for each line in the region.
3790@xref{Macros and Registers}, for more info.
3791@item Q
3792Query Replace.
3793@item :ta <name>
3794Search in the tags file where <name> is defined (file, line), and go to it.
3795@item :[x,y]s/<pat>/<repl>/<f>
3796Substitute (on lines x through y) the pattern <pat> (default the last
3797pattern) with <repl>. Useful
1df7defd 3798flags <f> are @samp{g} for @samp{global} (i.e., change every
4009494e
GM
3799non-overlapping occurrence of <pat>) and @samp{c} for
3800@samp{confirm} (type @samp{y} to confirm a particular
3801substitution, else @samp{n}). Instead of @kbd{/} any
3802punctuation character other than <space> <tab> and <lf> can be used as
3803delimiter.
3804
3805Note: @emph{The newline character (inserted as @kbd{C-qC-j})
3806can be used in <repl>}.
3807@item &
1df7defd 3808Repeat latest Ex substitute command, e.g., @kbd{:s/wrong/right}.
4009494e
GM
3809@item :global /<pattern>/<ex-command>
3810@itemx :g /<pattern>/<ex-command>
3811Execute <ex-command> on all lines that match <pattern>.
3812@item :vglobal /<pattern>/<ex-command>
3813@itemx :v /<pattern>/<ex-command>
3814Execute <ex-command> on all lines that do not match <pattern>.
3815@end table
3816@kindex @kbd{&}
3817@findex @kbd{:substitute/<pat>/<repl>/<f>}
3818@kindex @kbd{Q}
3819@kindex @kbd{#g<move>}
3820@findex @kbd{:v}
3821@findex @kbd{:g}
3822@findex @kbd{:global}
3823@findex @kbd{:vglobal}
3824@findex @kbd{:tag <name>}
3825@kindex @kbd{%}
3826@kindex @kbd{N}
3827@kindex @kbd{n}
3828@kindex @kbd{g<move>}
3829@kindex @kbd{?<string>}
3830@kindex @kbd{/<string>}
3831
1a5d3215 3832@node Yanking
4009494e
GM
3833@subsection Yanking
3834
3835@cindex cut and paste
3836@cindex paste
3837
3838@table @kbd
3839@item <count> y<move>
3840Yank from begin to endpoint of <count><move>.
3841@item <count> "<a-z>y<move>
3842Yank from begin to endpoint of <count><move> to register.
3843@item <count> "<A-Z>y<move>
3844Yank from begin to endpoint of <count><move> and append
3845to register.
3846@item <count> yy
3847<count> lines.
3848@item <count> Y
3849Idem (should be equivalent to @kbd{y$} though).
3850@item m<a-z>
3851Mark the cursor position with a letter.
3852@item [<a-z>
3853Show contents of textmarker.
3854@item ]<a-z>
3855Show contents of register.
3856@item <count> ["<a-z1-9>]p
3857Put the contents of the (default undo) buffer
3858<count> times after the cursor. The register will
3859be automatically down-cased.
3860@item <count> ["<a-z1-9>]P
3861Put the contents of the (default undo) buffer
3862<count> times before the cursor. The register will
3863@end table
3864@kindex @kbd{P}
3865@kindex @kbd{p}
3866@kindex @kbd{"<a-z1-9>p}
3867@kindex @kbd{"<a-z1-9>P}
3868@kindex @kbd{]<a-z>}
3869@kindex @kbd{[<a-z>}
3870@kindex @kbd{m<a-z>}
3871@kindex @kbd{Y}
3872@kindex @kbd{yy}
3873@kindex @kbd{"<A-Z>y<move>}
3874@kindex @kbd{"<a-z>y<move>}
3875@kindex @kbd{y<move>}
3876@kindex @kbd{yank}
3877@findex @kbd{:yank}
3878
1a5d3215 3879@node Undoing
4009494e
GM
3880@subsection Undoing
3881
3882@cindex undo
3883@cindex backup files
3884
3885@table @kbd
3886@item u U
3887Undo the latest change.
3888@item .
3889Repeat undo.
3890@item :q!
3891Quit Vi without writing.
3892@item :e!
3893Re-edit a messed-up file.
3894@item :rec
3895Recover file from autosave. Viper also creates backup files
3896that have a @samp{~} appended to them.
3897@end table
3898@findex @kbd{:rec}
3899@findex @kbd{:e!}
3900@findex @kbd{:q!}
3901@kindex @kbd{.}
3902@kindex @kbd{U}
3903@kindex @kbd{u}
3904
1a5d3215 3905@node Display
4009494e
GM
3906@section Display
3907
3908@cindex scrolling
3909
3910@table @kbd
3911@item C-g
3912At user level 1,
3913give file name, status, current line number
3914and relative position.@*
3915At user levels 2 and higher, abort the current command.
3916@item C-c g
f99f1641 3917Give file name, status, current line number and relative position---all
4009494e
GM
3918user levels.
3919@item C-l
3920Refresh the screen.
3921@item <count> C-e
3922Expose <count> more lines at bottom, cursor stays put (if possible).
3923@item <count> C-y
3924Expose <count> more lines at top, cursor stays put (if possible).
3925@item <count> C-d
3926Scroll <count> lines downward (default the number of the previous scroll;
3927initialization: half a page).
3928@item <count> C-u
3929Scroll <count> lines upward (default the number of the previous scroll;
3930initialization: half a page).
3931@item <count> C-f
3932<count> pages forward.
3933@item <count> C-b
3934<count> pages backward (in older versions @kbd{C-b} only works without count).
3935@item <count> z<cr>
3936@item zH
3937Put line <count> at the top of the window (default the current line).
3938@item <count> z-
3939@item zL
3940Put line <count> at the bottom of the window
3941(default the current line).
3942@item <count> z.
3943@item zM
3944Put line <count> in the center of the window
3945(default the current line).
3946@end table
3947@kindex @kbd{zM}
3948@kindex @kbd{zL}
3949@kindex @kbd{zH}
3950@kindex @kbd{z<cr>}
3951@kindex @kbd{z.}
3952@kindex @kbd{z-}
3953@kindex @kbd{z<cr>}
3954@kindex @kbd{C-b}
3955@kindex @kbd{C-f}
3956@kindex @kbd{C-u}
3957@kindex @kbd{C-d}
3958@kindex @kbd{C-y}
3959@kindex @kbd{C-e}
3960@kindex @kbd{C-l}
3961@kindex @kbd{C-g}
3962
3963
1a5d3215 3964@node File and Buffer Handling
4009494e
GM
3965@section File and Buffer Handling
3966
3967@cindex multiple files
3968
3969In all file handling commands, space should be typed before entering the file
3970name. If you need to type a modifier, such as @kbd{>>} or @kbd{!}, don't
3971put any space between the command and the modifier.
3972
3973Note that many Ex commands, e.g., @kbd{:w}, accept command arguments. The
3974effect is that the command would start acting on the current region. For
3975instance, if the current region spans the lines 11 through 22, then if you
3976type @kbd{1:w} you would see @samp{:11,22w} in the minibuffer.
3977
3978@table @kbd
3979@item :q
3980Quit buffer except if modified.
3981@item :q!
3982Quit buffer without checking. In Viper, these two commands
3983are identical. Confirmation is required if exiting modified buffers that
3984visit files.
3985@item :suspend
3986@item :stop
3987Suspend Viper
3988@item :[x,y] w
3989Write the file. Viper makes sure that a final newline is always added to
3990any file where this newline is missing. This is done by setting Emacs
3991variable @code{require-final-newline} to @code{t}. If you don't like this
3992feature, use @code{setq-default} to set @code{require-final-newline} to
ece4bae5 3993@code{nil}. This must be done in the Viper customization file.
4009494e
GM
3994@item :[x,y] w <name>
3995Write to the file <name>.
3996@item :[x,y] w>> <name>
3997Append the buffer to the file <name>. There should be no space between
3998@kbd{w} and @kbd{>>}. Type space after the @kbd{>>} and see what happens.
3999@item :w!@: <name>
4000Overwrite the file <name>. In Viper, @kbd{:w} and @kbd{:w!} are identical.
4001Confirmation is required for writing to an existing file (if this is not
4002the file the buffer is visiting) or to a read-only file.
4003@item :x,y w <name>
4004Write lines x through y to the file <name>.
4005@item :wq
4006Write the file and kill buffer.
4007@item :r <file> [<file> ...]
4008Read file into a buffer, inserting its contents after the current line.
4009@item :xit
4010Same as @kbd{:wq}.
4011@item :Write
4012@itemx :W
4013Save all unsaved buffers, asking for confirmation.
4014@item :WWrite
4015@itemx :WW
4016Like @kbd{W}, but without asking for confirmation.
4017@item ZZ
4018Save current buffer and kill it. If user level is 1, then save all files
4019and kill Emacs. Killing Emacs is the wrong way to use it, so you should
4020switch to higher user levels as soon as possible.
4021@item :x [<file>]
4022Save and kill buffer.
4023@item :x!@: [<file>]
4024@kbd{:w![<file>]} and @kbd{:q}.
4025@item :pre
f99f1641 4026Preserve the file---autosave buffers.
4009494e
GM
4027@item :rec
4028Recover file from autosave.
4029@item :f [<file>]
4030without the argument, prints file name and character/line information afout
4031the currently visited file. With an argument, sets the currently visited
4032filename to @file{file}.
4033@item :cd [<dir>]
4034Set the working directory to <dir> (default home directory).
4035@item :pwd
4036Print present working directory.
4037@item :e [+<cmd>] <files>
4038Edit files. If no filename is given, edit the file visited by the current
4039buffer. If buffer was modified or the file changed on disk, ask for
4040confirmation. Unlike Vi, Viper allows @kbd{:e} to take multiple arguments.
4041The first file is edited the same way as in Vi. The rest are visited
4042in the usual Emacs way.
4043@item :e!@: [+<cmd>] <files>
4044Re-edit file. If no filename, re-edit current file.
4045In Viper, unlike Vi, @kbd{e!} is identical to @kbd{:e}. In both cases, the
4046user is asked to confirm if there is a danger of discarding changes to a
4047buffer.
4048@item :q!
4049Quit Vi without writing.
4050@item C-^
4051Edit the alternate (normally the previous) file.
4052@item :rew
4053Obsolete
4054@item :args
4055List files not shown anywhere with counts for next
4056@item :n [count] [+<cmd>] [<files>]
4057Edit <count> file, or edit files. The count comes from @kbd{:args}.
4058@item :N [count] [+<cmd>] [<files>]
4059Like @kbd{:n}, but the meaning of the variable
4060@var{ex-cycle-other-window} is reversed.
4061@item :b
4062Switch to another buffer. If @var{ex-cycle-other-window} is @code{t},
4063switch in another window. Buffer completion is supported.
4064The variable @var{viper-read-buffer-function} controls which function is
4065actually used to read the buffer name. The default is @code{read-buffer},
4066but better alternatives are also available in Emacs (e.g.,
4067@code{iswitchb-read-buffer}).
4068@vindex @var{viper-read-buffer-function}
4069@item :B
4070Like @kbd{:b}, but the meaning of @var{ex-cycle-other-window} is reversed.
4071@item :<address>r <name>
4072Read the file <name> into the buffer after the line <address>.
4073@item v, V, C-v
4074Edit a file in current or another window, or in another frame. File name
9ff0b02b 4075is typed in minibuffer. File completion and history are supported.
4009494e
GM
4076@end table
4077@kindex @kbd{v}
4078@kindex @kbd{V}
4079@findex @kbd{:args}
4080@findex @kbd{:rew}
4081@kindex @kbd{C-^}
4082@findex @kbd{:e!@: [<files>]}
4083@findex @kbd{:e [<files>]}
4084@findex @kbd{:edit [<files>]}
4085@findex @kbd{:edit!@: [<files>]}
4086@findex @kbd{:q!}
4087@findex @kbd{:q}
4088@findex @kbd{:quit}
4089@findex @kbd{:quit!}
4090@findex @kbd{:f}
4091@findex @kbd{:rec}
4092@findex @kbd{:r}
4093@findex @kbd{:read}
4094@findex @kbd{:pre}
4095@kindex @kbd{ZZ}
4096@findex @kbd{:wq}
4097@findex @kbd{:w <file>}
4098@findex @kbd{:w!@: <file>}
4099@findex @kbd{:w >> <file>}
4100@findex @kbd{:write <file>}
4101@findex @kbd{:write!@: <file>}
4102@findex @kbd{:write >> <file>}
4103@findex @kbd{:W}
4104@findex @kbd{:WW}
4105@findex @kbd{:Write}
4106@findex @kbd{:WWrite}
4107@findex @kbd{:WWrite}
4108@findex @kbd{:x}
4109@findex @kbd{:x!}
4110@findex @kbd{:suspend}
4111@findex @kbd{:stop}
4112@findex @kbd{:n [<count> | <file>]}
4113@findex @kbd{:cd [<dir>]}
4114@findex @kbd{:pwd}
4115
1a5d3215 4116@node Mapping
4009494e
GM
4117@section Mapping
4118
4119@cindex key bindings
4120@cindex key mapping
4121
4122@table @kbd
4123@item :map <string>
4124Start defining a Vi-style keyboard macro.
4125For instance, typing
4126@kbd{:map www} followed by @kbd{:!wc %} and then typing @kbd{C-x )}
4127will cause @kbd{www} to run wc on
4128current file (Vi replaces @samp{%} with the current file name).
4129@item C-x )
4130Finish defining a keyboard macro.
4131In Viper, this command completes the process of defining all keyboard
4132macros, whether they are Emacs-style or Vi-style.
4133This is a departure from Vi, needed to allow WYSIWYG mapping of
4134keyboard macros and to permit the use of function keys and arbitrary Emacs
4135functions in the macros.
4136@item :unmap <string>
4137Deprive <string> of its mappings in Vi state.
4138@item :map!@: <string>
4139Map a macro for Insert state.
4140@item :unmap!@: <string>
4141Deprive <string> of its mapping in Insert state (see @kbd{:unmap}).
4142@item @@<a-z>
4143In Vi state,
4144execute the contents of register as a command.
4145@item @@@@
4146In Vi state,
4147repeat last register command.
4148@item @@#
4149In Vi state,
4150begin keyboard macro. End with @@<a-z>. This will
4151put the macro in the proper register. Register will
4152be automatically down-cased.
4153@xref{Macros and Registers}, for more info.
4154@item @@!<a-z>
4155In Vi state,
4156yank anonymous macro to register
4157@item *
4158In Vi state,
4159execute anonymous macro (defined by C-x( and C-x )).
4160@item C-x e
4161Like @kbd{*}, but works in all Viper states.
4162@item #g<move>
4163Execute the last keyboard macro for each line in the region.
4164@xref{Macros and Registers}, for more info.
4165@item [<a-z>
4166Show contents of textmarker.
4167@item ]<a-z>
4168Show contents of register.
4169@end table
4170@kindex @kbd{]<a-z>}
4171@kindex @kbd{[<a-z>}
4172@kindex @kbd{#g<move>}
4173@kindex @kbd{*}
4174@kindex @kbd{@@!<a-z>}
4175@kindex @kbd{@@#}
4176@kindex @kbd{@@@@}
4177@kindex @kbd{@@<a-z>}
4178@findex @kbd{:unmap <char>}
4179@findex @kbd{:map <char> <seq>}
4180@findex @kbd{:unmap!@: <char>}
4181@findex @kbd{:map!@: <char> <seq>}
4182
1a5d3215 4183@node Shell Commands
4009494e
GM
4184@section Shell Commands
4185
4186@cindex % (Current file)
4187
4188The symbol @samp{%} is used in Ex shell commands to mean current file. If
4189you want a @samp{%} in your command, it must be escaped as @samp{\%}.
4190@cindex @samp{%} (Ex address)
4191However if @samp{%} is the first character, it stands as the address for
4192the whole file.
4193@cindex @samp{#} (Previous file)
4194Similarly, @samp{#} expands to the previous file. The previous file is the
4195first file in @kbd{:args} listing. This defaults to the previous file in
76f1a3c3 4196the VI sense if you have one window.
4009494e
GM
4197
4198Symbols @samp{%} and @samp{#} are also used in the Ex commands @kbd{:e} and
4199@kbd{:r <shell-cmd>}. The commands @kbd{:w} and the regular @kbd{:r
4200<file>} command don't support these meta symbols, because file history is a
4201better mechanism.
4202
4203@cindex shell commands
4204
4205@table @kbd
4206@item :sh
4207Execute a subshell in another window
4208@item :[x,y]!<cmd>
4209Execute a shell <cmd> [on lines x through y;
4210% is replace by current file, \% is changed to %
4211@item :[x,y]!!@: [<args>]
4212Repeat last shell command [and append <args>].
4213@item :!<cmd>
4214Just execute command and display result in a buffer.
4215@item :!!@: <args>
4216Repeat last shell command and append <args>
4217@item <count> !<move><cmd>
4218The shell executes <cmd>, with standard
4219input the lines described by <count><move>,
4220next the standard output replaces those lines
4221(think of @samp{cb}, @samp{sort}, @samp{nroff}, etc.).
4222@item <count> !!<cmd>
4223Give <count> lines as standard input to the
4224shell <cmd>, next let the standard output
4225replace those lines.
4226@item :[x,y] w !<cmd>
4227Let lines x to y be standard input for <cmd>
4228(notice the <sp> between @kbd{w} and @kbd{!}).
4229@item :<address>r !<cmd>
4230Put the output of <cmd> after the line <address> (default current).
4231@item :<address>r <name>
4232Read the file <name> into the buffer after the line <address> (default
4233current).
4234@item :make
4235Run the make command in the current directory.
4236@end table
4237@findex @kbd{:<address>r <name>}
4238@findex @kbd{:<address>r !<cmd>}
4239@findex @kbd{!<cmd>}
4240@findex @kbd{!!<cmd>}
4241@findex @kbd{!<move><cmd>}
4242@findex @kbd{:w !<cmd>}
4243@findex @kbd{:x,y w !<cmd>}
4244@findex @kbd{:!!@: <args>}
4245@findex @kbd{:!<cmd>}
4246@findex @kbd{:sh}
4247@findex @kbd{:make}
4248
1a5d3215 4249@node Options
4009494e
GM
4250@section Options
4251
4252@cindex Vi options
4253
4254@table @kbd
4255@item autoindent
4256@itemx ai
4257@cindex autoindent
f99f1641 4258autoindent: In append mode after a <cr> the
4009494e
GM
4259cursor will move directly below the first
4260character on the previous line.
4261This setting affects the current buffer only.
4262@item autoindent-global
4263@itemx ai-global
4264Same as `autoindent', but affects all buffers.
4265@item noautoindent
4266@itemx noai
4267Cancel autoindent.
4268@item noautoindent-global
4269@itemx noai-g
4270Cancel autoindent-global.
4271@item ignorecase
4272@itemx ic
4273@cindex case and searching
f99f1641 4274ignorecase: No distinction between upper and lower cases when searching.
4009494e
GM
4275@item noignorecase
4276@itemx noic
4277Cancel ignorecase.
4278@item magic
4279@itemx ma
4280@cindex literal searching
4281Regular expressions used in searches; nomagic means no regexps.
4282@item nomagic
4283@item noma
4284Cancel magic.
4285@item readonly
4286@itemx ro
4287@cindex readonly files
f99f1641 4288readonly: The file is not to be changed.
4009494e
GM
4289If the user attempts to write to this file, confirmation will be requested.
4290@item noreadonly
4291@itemx noro
4292Cancel readonly.
4293@item shell=<string>
4294@itemx sh=<string>
4295@cindex shell
f99f1641 4296shell: The program to be used for shell escapes
4009494e
GM
4297(default @samp{$SHELL} (default @file{/bin/sh})).
4298@item shiftwidth=<count>
4299@itemx sw=<count>
4300@cindex layout
4301@cindex shifting text
f99f1641 4302shiftwidth: Gives the shiftwidth (default 8 positions).
4009494e
GM
4303@item showmatch
4304@itemx sm
4305@cindex paren matching
4306@cindex matching parens
f99f1641 4307showmatch: Whenever you append a @kbd{)}, Vi shows
4009494e
GM
4308its match if it's on the same page; also with
4309@kbd{@{} and @kbd{@}}. If there's no match, Vi will beep.
4310@item noshowmatch
4311@itemx nosm
4312Cancel showmatch.
4313@item tabstop=<count>
4314@itemx ts=<count>
4315@cindex changing tab width
4316@cindex tabbing
f99f1641 4317tabstop: The length of a <ht>; warning: this is
4009494e
GM
4318only IN the editor, outside of it <ht>s have
4319their normal length (default 8 positions).
4320This setting affects the current buffer only.
4321@item tabstop-global
4322@itemx ts-g
4323Same as `tabstop', but affects all buffers.
4324@item wrapmargin=<count>
4325@itemx wm=<count>
4326@cindex auto fill
4327@cindex word wrap
f99f1641 4328wrapmargin: In append mode Vi automatically
4009494e
GM
4329puts a <lf> whenever there is a <sp> or <ht>
4330within <wm> columns from the right margin.
4331@item wrapscan
4332@itemx ws
4333@cindex searching
f99f1641 4334wrapscan: When searching, the end is
4009494e
GM
4335considered @samp{stuck} to the begin of the file.
4336@item nowrapscan
4337@itemx nows
4338Cancel wrapscan.
4339@item :set <option>
4340Turn <option> on.
4341@item :set no<option>
4342Turn <option> off.
4343@item :set <option>=<value>
4344Set <option> to <value>.
4345@end table
4346@findex @kbd{:set <option>=<value>}
4347@findex @kbd{:set no<option>}
4348@findex @kbd{:set <option>}
4349@findex @kbd{:set ws}
4350@findex @kbd{:set wrapscan}
4351@findex @kbd{:set wm=<count>}
4352@findex @kbd{:set wrapmargin=<count>}
4353@findex @kbd{:set ts=<count>}
4354@findex @kbd{:set tabstop=<count>}
4355@findex @kbd{:set tab-stop-local=<count>}
4356@findex @kbd{:set sm}
4357@findex @kbd{:set showmatch}
4358@findex @kbd{:set sw=<count>}
4359@findex @kbd{:set shiftwidth=<count>}
4360@findex @kbd{:set sh=<string>}
4361@findex @kbd{:set shell=<string>}
4362@findex @kbd{:set ro}
4363@findex @kbd{:set readonly}
4364@findex @kbd{:set magic}
4365@findex @kbd{:set ic}
4366@findex @kbd{:set ignorecase}
4367@findex @kbd{:set ai}
4368@findex @kbd{:set autoindent}
4369
1a5d3215 4370@node Emacs Related Commands
4009494e
GM
4371@section Emacs Related Commands
4372
4373@table @kbd
4374@item C-\
4375Begin Meta command in Vi or Insert states. Most often used as C-\ x (M-x).
4376
4377Note: Emacs binds @kbd{C-\} to a function that offers to change the
4378keyboard input method in the multilingual environment. Viper overrides this
4379binding. However, it is still possible to switch the input method by typing
4380@kbd{\ C-\} in the Vi command state and @kbd{C-z \ C-\} in the Insert state.
4381Or you can use the MULE menu on the menubar.
4382@item C-z
4383In Insert and Replace states, prepare Viper to accept the next command and
4384execute it as if Viper was in Vi state. Then return to Insert state.
4385
4386In Vi state, switch to Emacs state; in Emacs state, switch to Vi state.
4387@item C-c \
4388Switches to Vi state for the duration of a single command. Then goes back
4389to the original Viper state. Works from Vi, Insert, Replace, and Emacs states.
4390@item C-x0
4391Close Window
4392@item C-x1
4393Close Other Windows
4394@item C-x2
4395Split Window
4396@item C-xo
4397Move among windows
4398@item C-xC-f
4399Emacs find-file, useful in Insert state
4400@item C-y
4401Put back the last killed text. Similar to Vi's @kbd{p}, but also works in
4402Insert and Replace state. This command doesn't work in Vi command state,
4403since this binding is taken for something else.
4404@item M-y
4405Undoes the last @kbd{C-y} and puts another kill from the kill ring.
4406Using this command, you can try may different kills until you find the one
4407you need.
4408@end table
4409@kindex @kbd{M-y}
4410@kindex @kbd{C-y}
4411@kindex @kbd{C-xC-f}
4412@kindex @kbd{C-xo}
4413@kindex @kbd{C-x2}
4414@kindex @kbd{C-x1}
4415@kindex @kbd{C-x0}
4416@kindex @kbd{C-z}
4417@kindex @kbd{C-\}
4418@kindex @kbd{C-c\}
4419
1a5d3215 4420@node Mouse-bound Commands
4009494e
GM
4421@section Mouse-bound Commands
4422
4423The following two mouse actions are normally bound to special search and
4424insert commands in of Viper:
4425
4426@table @kbd
4427@item S-Mouse-1
4428Holding Shift and clicking mouse button 1 will
4429initiate search for
4430a region under the mouse pointer.
4431This command can take a prefix argument. Note: Viper sets this
4432binding only if this mouse action is not
4433already bound to something else.
76f1a3c3 4434@xref{Viper Specials}, for more information.
4009494e
GM
4435
4436@item S-Mouse-2
4437Holding Shift and clicking button 2 of the mouse will
4438insert a region surrounding the mouse pointer.
4439This command can also take a prefix argument.
4440Note: Viper sets this binding only if this mouse action is not
4441already bound to something else.
76f1a3c3 4442@xref{Viper Specials}, for more details.
4009494e
GM
4443@end table
4444@kindex @kbd{S-Mouse-1}
4445@kindex @kbd{S-Mouse-2}
4446@kindex @kbd{meta button1up}
4447@kindex @kbd{meta button2up}
4448
1a5d3215
GM
4449@node GNU Free Documentation License
4450@appendix GNU Free Documentation License
4451@include doclicense.texi
4452
4453@node Acknowledgments
4009494e
GM
4454@unnumbered Acknowledgments
4455
4456Viper, formerly known as VIP-19, was written by Michael Kifer. Viper is
4457based on the original VIP package by Masahiko Sato and on its enhancement,
4458VIP 4.4, by Aamod Sane. This manual is an adaptation of the manual for VIP
44594.4, which, in turn, was based on Sato's manual for VIP 3.5.
4460
4461Many contributors on the Net pointed out bugs and suggested a number of
4462useful features. Scott Bronson and Samuel Padgett contributed patches that
4463were incorporated in this code. Here is a hopefully complete list of
4464contributors:
4465
4466@example
4467aaronl@@vitelus.com (Aaron Lehmann),
4468ahg@@panix.com (Al Gelders),
4469amade@@diagram.fr (Paul-Bernard Amade),
4470ascott@@fws214.intel.com (Andy Scott),
4471bronson@@trestle.com (Scott Bronson),
4472cook@@biostat.wisc.edu (Tom Cook),
4473csdayton@@midway.uchicago.edu (Soren Dayton),
4474dave@@hellgate.utah.edu,
4475dm@@scs.cs.nyu.edu (David Mazieres),
4476dominik@@strw.LeidenUniv.nl (Carsten Dominik),
4477dwallach@@cs.princeton.edu (Dan Wallach),
4478dwight@@toolucky.llnl.gov (Dwight Shih),
4479dxc@@xprt.net (David X Callaway),
4480edmonds@@edmonds.home.cs.ubc.ca (Brian Edmonds),
4481gin@@mo.msk.ru (Golubev I.N.),
4482gviswana@@cs.wisc.edu (Guhan Viswanathan),
1df7defd 4483gvr@@halcyon.com (George V. Reilly),
4009494e
GM
4484hatazaki@@bach.convex.com (Takao Hatazaki),
4485hpz@@ibmhpz.aug.ipp-garching.mpg.de (Hans-Peter Zehrfeld),
4486irie@@t.email.ne.jp (Irie Tetsuya),
4487jackr@@dblues.engr.sgi.com (Jack Repenning),
1df7defd 4488jamesm@@bga.com (D.J. Miller II),
4009494e
GM
4489jjm@@hplb.hpl.hp.com (Jean-Jacques Moreau),
4490jl@@cse.ogi.edu (John Launchbury),
4491jobrien@@hchp.org (John O'Brien),
4492johnw@@borland.com (John Wiegley),
4493kanze@@gabi-soft.fr (James Kanze),
4494kin@@isi.com (Kin Cho),
4495kwzh@@gnu.org (Karl Heuer),
4496lindstro@@biostat.wisc.edu (Mary Lindstrom),
4497lektu@@terra.es (Juanma Barranquero),
4498lennart.borgman.073@@student.lu.se (Lennart Borgman),
4499minakaji@@osaka.email.ne.jp (Mikio Nakajima),
4500Mark.Bordas@@East.Sun.COM (Mark Bordas),
4501meyering@@comco.com (Jim Meyering),
4502martin@@xemacs.org (Martin Buchholz),
4503mbutler@@redfernnetworks.com (Malcolm Butler),
4504mveiga@@dit.upm.es (Marcelino Veiga Tuimil),
4505paulk@@summit.esg.apertus.com (Paul Keusemann),
4506pfister@@cs.stonybrook.edu (Hanspeter Pfister),
4507phil_brooks@@MENTORG.COM (Phil Brooks),
4508pogrell@@informatik.hu-berlin.de (Lutz Pogrell),
4509pradyut@@cs.uchicago.edu (Pradyut Shah),
4510roderick@@argon.org (Roderick Schertler),
4511rxga@@ulysses.att.com,
4512sawdey@@lcse.umn.edu (Aaron Sawdey),
4513simonb@@prl.philips.co.uk (Simon Blanchard),
4514spadgett1@@nc.rr.com (Samuel Padgett),
4515stephen@@farrell.org (Stephen Farrell),
4516storm@@cua.dk (Kim F. Storm),
4517sudish@@MindSpring.COM (Sudish Joseph),
4518schwab@@issan.informatik.uni-dortmund.de (Andreas Schwab)
4519terra@@diku.dk (Morten Welinder),
4520thanh@@informatics.muni.cz (Han The Thanh),
4521toma@@convex.convex.com,
4522vrenjak@@sun1.racal.com (Milan Vrenjak),
4523whicken@@dragon.parasoft.com (Wendell Hicken),
4524zapman@@cc.gatech.edu (Jason Zapman II),
4525@end example
4526
1a5d3215 4527@node Key Index
4009494e
GM
4528@unnumbered Key Index
4529
4530@printindex ky
4531
1a5d3215 4532@node Function Index
4009494e
GM
4533@unnumbered Function Index
4534
4535@printindex fn
4536
1a5d3215 4537@node Variable Index
4009494e
GM
4538@unnumbered Variable Index
4539
4540@printindex vr
4541
1a5d3215 4542@node Package Index
4009494e
GM
4543@unnumbered Package Index
4544
4545@printindex pg
4546
1a5d3215 4547@node Concept Index
4009494e
GM
4548@unnumbered Concept Index
4549
4550@printindex cp
4551
4009494e 4552@bye