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