Change to FDL 1.3.
[bpt/emacs.git] / doc / misc / vip.texi
CommitLineData
4009494e
GM
1\input texinfo
2
db78a8cb 3@setfilename ../../info/vip
4009494e
GM
4@settitle VIP
5
6@copying
7Copyright @copyright{} 1987, 2001, 2002, 2003, 2004,
3f548a7c 82005, 2006, 2007, 2008 Free Software Foundation, Inc.
4009494e
GM
9
10@quotation
11Permission is granted to copy, distribute and/or modify this document
12under the terms of the GNU Free Documentation License, Version 1.2 or
13any later version published by the Free Software Foundation; with no
debf4439
GM
14Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
15and with the Back-Cover Texts as in (a) below. A copy of the license
16is included in the section entitled ``GNU Free Documentation License''.
4009494e 17
6f093307
GM
18(a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
19modify this GNU manual. Buying copies from the FSF supports it in
20developing GNU and promoting software freedom.''
4009494e
GM
21@end quotation
22@end copying
23
24@titlepage
25@sp 10
26@center @titlefont{VIP}
27@sp 1
28@center A Vi Package for GNU Emacs
29@center (Version 3.5, September 15, 1987)
30@sp 2
31@center Masahiko Sato
32@page
33@vskip 0pt plus1filll
34@insertcopying
35@end titlepage
36
37@dircategory Emacs
38@direntry
39* VIP: (vip). An older VI-emulation for Emacs.
40@end direntry
41
42@finalout
43
44@ifnottex
45@node Top, Survey,, (DIR)
46@top VIP
47
48VIP is a Vi emulating package written in Emacs Lisp. VIP implements most
49Vi commands including Ex commands. It is therefore hoped that this package
50will enable you to do Vi style editing under the powerful GNU Emacs
51environment. This info file describes the usage of VIP assuming that you
52are fairly accustomed to Vi but not so much with Emacs. Also we will
53concentrate mainly on differences from Vi, especially features unique to
54VIP.
55
56It is recommended that you read nodes on survey and on customization before
57you start using VIP. Other nodes may be visited as needed.
58
59Comments and bug reports are welcome. Please send messages to
60@code{ms@@Sail.Stanford.Edu} if you are outside of Japan and to
61@code{masahiko@@sato.riec.tohoku.junet} if you are in Japan.@refill
62
63@end ifnottex
64
65@menu
66* Survey:: A survey of VIP.
67* Vi Commands:: Details of Vi commands.
68* Ex Commands:: Details of Ex commands.
69* Customization:: How to customize VIP.
70* GNU Free Documentation License:: The license for this documentation.
71
72@end menu
73@iftex
74@unnumbered Introduction
75
76VIP is a Vi emulating package written in Emacs Lisp. VIP implements most
77Vi commands including Ex commands. It is therefore hoped that this package
78will enable you to do Vi style editing under the powerful GNU Emacs
79environment. This manual describes the usage of VIP assuming that you are
80fairly accustomed to Vi but not so much with Emacs. Also we will
81concentrate mainly on differences from Vi, especially features unique to
82VIP.
83
84It is recommended that you read chapters on survey and on customization
85before you start using VIP. Other chapters may be used as future
86references.
87
88Comments and bug reports are welcome. Please send messages to
89@code{ms@@Sail.Stanford.Edu} if you are outside of Japan and to
90@code{masahiko@@unsun.riec.tohoku.junet} if you are in Japan.
91@end iftex
92
93@node Survey, Basic Concepts, Top, Top
94@chapter A Survey of VIP
95
96In this chapter we describe basics of VIP with emphasis on the features not
97found in Vi and on how to use VIP under GNU Emacs.
98
99@menu
100* Basic Concepts:: Basic concepts in Emacs.
101* Loading VIP:: How to load VIP automatically.
102* Modes in VIP:: VIP has three modes, which are orthogonal to modes
103 in Emacs.
104* Differences from Vi:: Differences of VIP from Vi is explained.
105@end menu
106
107@node Basic Concepts, Loading VIP, Survey, Survey
108@section Basic Concepts
109
110We begin by explaining some basic concepts of Emacs. These concepts are
111explained in more detail in the GNU Emacs Manual.
112
113@cindex buffer
114@cindex point
115@cindex mark
116@cindex text
117@cindex looking at
118@cindex end (of buffer)
119@cindex region
120
121Conceptually, a @dfn{buffer} is just a string of @acronym{ASCII} characters and two
122special characters @key{PNT} (@dfn{point}) and @key{MRK} (@dfn{mark}) such
123that the character @key{PNT} occurs exactly once and @key{MRK} occurs at
124most once. The @dfn{text} of a buffer is obtained by deleting the
125occurrences of @key{PNT} and @key{MRK}. If, in a buffer, there is a
126character following @key{PNT} then we say that point is @dfn{looking at}
127the character; otherwise we say that point is @dfn{at the end of buffer}.
128@key{PNT} and @key{MRK} are used
129to indicate positions in a buffer and they are not part of the text of the
130buffer. If a buffer contains a @key{MRK} then the text between @key{MRK}
131and @key{PNT} is called the @dfn{region} of the buffer.@refill
132
133@cindex window
134
135Emacs provides (multiple) @dfn{windows} on the screen, and you can see the
136content of a buffer through the window associated with the buffer. The
137cursor of the screen is always positioned on the character after @key{PNT}.
138@refill
139
140@cindex mode
141@cindex keymap
142@cindex local keymap
143@cindex global keymap
144
145A @dfn{keymap} is a table that records the bindings between characters and
146command functions. There is the @dfn{global keymap} common to all the
147buffers. Each buffer has its @dfn{local keymap} that determines the
148@dfn{mode} of the buffer. Local keymap overrides global keymap, so that if
149a function is bound to some key in the local keymap then that function will
150be executed when you type the key. If no function is bound to a key in the
151local map, however, the function bound to the key in the global map becomes
152in effect.@refill
153
154@node Loading VIP, Modes in VIP, Basic Concepts, Survey
155@section Loading VIP
156
157The recommended way to load VIP automatically is to include the line:
158@example
159(load "vip")
160@end example
161@noindent
162in your @file{.emacs} file. The @file{.emacs} file is placed in your home
163directory and it will be executed every time you invoke Emacs. If you wish
164to be in vi mode whenever Emacs starts up, you can include the following
165line in your @file{.emacs} file instead of the above line:
166@example
167(setq term-setup-hook 'vip-mode)
168@end example
169@noindent
170(@xref{Vi Mode}, for the explanation of vi mode.)
171
172Even if your @file{.emacs} file does not contain any of the above lines,
173you can load VIP and enter vi mode by typing the following from within
174Emacs.
175@example
176M-x vip-mode
177@end example
178@noindent
179
180@node Modes in VIP, Emacs Mode, Loading VIP, Survey
181@section Modes in VIP
182
183@kindex 032 @kbd{C-z} (@code{vip-change-mode-to-vi})
184@kindex 0301 @kbd{C-x C-z} (@code{suspend-emacs})
185
186Loading VIP has the effect of globally binding @kbd{C-z} (@kbd{Control-z})
187to the function @code{vip-change-mode-to-vi}. The default binding of @kbd{C-z}
188in GNU Emacs is @code{suspend-emacs}, but, you can also call
189@code{suspend-emacs} by typing @kbd{C-x C-z}. Other than this, all the
190key bindings of Emacs remain the same after loading VIP.@refill
191
192@cindex vi mode
193
194Now, if you hit @kbd{C-z}, the function @code{vip-change-mode-to-vi} will be
195called and you will be in @dfn{vi mode}. (Some major modes may locally bind
196@kbd{C-z} to some special functions. In such cases, you can call
197@code{vip-change-mode-to-vi} by @code{execute-extended-command} which is
198invoked by @kbd{M-x}. Here @kbd{M-x} means @kbd{Meta-x}, and if your
199terminal does not have a @key{META} key you can enter it by typing
200@kbd{@key{ESC} x}. The same effect can also be achieve by typing
201@kbd{M-x vip-mode}.)@refill
202
203@cindex mode line
204
205You can observe the change of mode by looking at the @dfn{mode line}. For
206instance, if the mode line is:@refill
207@example
208-----Emacs: *scratch* (Lisp Interaction)----All------------
209@end example
210@noindent
211then it will change to:
212@example
213-----Vi: *scratch* (Lisp Interaction)----All------------
214@end example
215@noindent
216Thus the word @samp{Emacs} in the mode line will change to @samp{Vi}.
217
218@cindex insert mode
219@cindex emacs mode
220
221You can go back to the original @dfn{emacs mode} by typing @kbd{C-z} in
222vi mode. Thus @kbd{C-z} toggles between these two modes.@refill
223
224Note that modes in VIP exist orthogonally to modes in Emacs. This means
225that you can be in vi mode and at the same time, say, shell mode.
226
227Vi mode corresponds to Vi's command mode. From vi mode you can enter
228@dfn{insert mode} (which corresponds to Vi's insert mode) by usual Vi command
229keys like @kbd{i}, @kbd{a}, @kbd{o} @dots{} etc.
230
231In insert mode, the mode line will look like this:
232@example
233-----Insert *scratch* (Lisp Interaction)----All------------
234@end example
235@noindent
236You can exit from insert mode by hitting @key{ESC} key as you do in Vi.
237
238That VIP has three modes may seem very complicated, but in fact it is not
239so. VIP is implemented so that you can do most editing remaining only
240in the two modes for Vi (that is vi mode and insert mode).
241
242@ifinfo
243The figure below shows the transition of three modes in VIP.
244@display
245
246
247 === C-z ==> == i,o ... ==>
248emacs mode vi mode insert mode
249 <== X-z === <=== ESC ====
250@end display
251@end ifinfo
252
253@menu
254* Emacs Mode:: This is the mode you should know better.
255* Vi Mode:: Vi commands are executed in this mode.
256* Insert Mode:: You can enter text, and also can do editing if you
257 know enough Emacs commands.
258@end menu
259
260@node Emacs Mode, Vi Mode, Modes in VIP, Modes in VIP
261@subsection Emacs Mode
262
263@kindex 032 @kbd{C-z} (@code{vip-change-mode-to-vi})
264
265You will be in this mode just after you loaded VIP. You can do all
266normal Emacs editing in this mode. Note that the key @kbd{C-z} is globally
267bound to @code{vip-change-mode-to-vi}. So, if you type @kbd{C-z} in this mode
268then you will be in vi mode.@refill
269
270@node Vi Mode, Insert Mode, Emacs Mode, Modes in VIP
271@subsection Vi Mode
272
273This mode corresponds to Vi's command mode. Most Vi commands work as they
274do in Vi. You can go back to emacs mode by typing @kbd{C-z}. You can
275enter insert mode, just as in Vi, by typing @kbd{i}, @kbd{a} etc.
276
277@node Insert Mode, Differences from Vi, Vi Mode, Modes in VIP
278@subsection Insert Mode
279
280The key bindings in this mode is the same as in the emacs mode except for
281the following 4 keys. So, you can move around in the buffer and change
282its content while you are in insert mode.
283
284@table @kbd
285@item @key{ESC}
286@kindex 033 @kbd{ESC} (@code{vip-change-mode-to-vi}) (insert mode)
287This key will take you back to vi mode.
288@item C-h
289@kindex 010 @kbd{C-h} (@code{vip-delete-backward-char}) (insert mode)
290Delete previous character.
291@item C-w
292@kindex 027 @kbd{C-w} (@code{vip-delete-backward-word}) (insert mode)
293Delete previous word.
294@item C-z
295@kindex 032 @kbd{C-z} (@code{vip-ESC}) (insert mode)
296Typing this key has the same effect as typing @key{ESC} in emacs mode.
297Thus typing @kbd{C-z x} in insert mode will have the same effect as typing
298@kbd{ESC x} in emacs mode.
299@end table
300
301@node Differences from Vi, Undoing, Insert Mode, Survey
302@section Differences from Vi
303
304The major differences from Vi are explained below.
305
306@menu
307* Undoing:: You can undo more in VIP.
308* Changing:: Commands for changing the text.
309* Searching:: Search commands.
310* z Command:: You can now use zH, zM and zL as well as z- etc.
311* Counts:: Some Vi commands which do not accept a count now
312 accept one.
313* Marking:: You can now mark the current point, beginning of
314 the buffer etc.
315* Region Commands:: You can now give a region as an argument for delete
316 commands etc.
317* New Commands:: Some new commands not available in Vi are added.
318* New Bindings:: Bindings of some keys are changed for the
319 convenience of editing under Emacs.
320* Window Commands:: Commands for moving among windows etc.
321* Buffer Commands:: Commands for selecting buffers etc.
322* File Commands:: Commands for visiting files etc.
323* Misc Commands:: Other useful commands.
324@end menu
325
326@node Undoing, Changing, Differences from Vi, Differences from Vi
327@subsection Undoing
328
329@kindex 165 @kbd{u} (@code{vip-undo})
330@kindex 056 @kbd{.} (@code{vip-repeat})
331
332You can repeat undoing by the @kbd{.} key. So, @kbd{u} will undo
333a single change, while @kbd{u .@: .@: .@:}, for instance, will undo 4 previous
334changes. Undo is undoable as in Vi. So the content of the buffer will
335be the same before and after @kbd{u u}.@refill
336
337@node Changing, Searching, Undoing, Differences from Vi
338@subsection Changing
339
340Some commands which change a small number of characters are executed
341slightly differently. Thus, if point is at the beginning of a word
342@samp{foo} and you wished to change it to @samp{bar} by typing @w{@kbd{c w}},
343then VIP will prompt you for a new word in the minibuffer by the prompt
344@samp{foo => }. You can then enter @samp{bar} followed by @key{RET} or
345@key{ESC} to complete the command. Before you enter @key{RET} or
346@key{ESC} you can abort the command by typing @kbd{C-g}. In general,
347@kindex 007 @kbd{C-g} (@code{vip-keyboard-quit})
348you can abort a partially formed command by typing @kbd{C-g}.@refill
349
350@node Searching, z Command, Changing, Differences from Vi
351@subsection Searching
352
353@kindex 057 @kbd{/} (@code{vip-search-forward})
354@kindex 077 @kbd{?} (@code{vip-search-backward})
355
356As in Vi, searching is done by @kbd{/} and @kbd{?}. The string will be
357searched literally by default. To invoke a regular expression search,
358first execute the search command @kbd{/} (or @kbd{?}) with empty search
359string. (I.e, type @kbd{/} followed by @key{RET}.)
360A search for empty string will toggle the search mode between vanilla
361search and regular expression search. You cannot give an offset to the
362search string. (It is a limitation.) By default, search will wrap around
363the buffer as in Vi. You can change this by rebinding the variable
364@code{vip-search-wrap-around}. @xref{Customization}, for how to do this.@refill
365
366@node z Command, Counts, Searching, Differences from Vi
367@subsection z Command
368
369@kindex 1723 @kbd{z H} (@code{vip-line-to-top})
370@kindex 1721 @kbd{z RET} (@code{vip-line-to-top})
371@kindex 1723 @kbd{z M} (@code{vip-line-to-middle})
372@kindex 1722 @kbd{z .} (@code{vip-line-to-middle})
373@kindex 1723 @kbd{z L} (@code{vip-line-to-bottom})
374@kindex 1722 @kbd{z -} (@code{vip-line-to-bottom})
375
376For those of you who cannot remember which of @kbd{z} followed by @key{RET},
377@kbd{.}@: and @kbd{-} do what. You can also use @kbd{z} followed by @kbd{H},
378@kbd{M} and @kbd{L} to place the current line in the Home (Middle, and
379Last) line of the window.@refill
380
381@node Counts, Marking, z Command, Differences from Vi
382@subsection Counts
383
384Some Vi commands which do not accept a count now accept one
385
386@table @kbd
387@item p
388@itemx P
389@kindex 160 @kbd{p} (@code{vip-put-back})
390@kindex 120 @kbd{P} (@code{vip-Put-back})
391Given counts, text will be yanked (in Vi's sense) that many times. Thus
392@kbd{3 p} is the same as @kbd{p p p}.
393@item o
394@itemx O
395@kindex 157 @kbd{o} (@code{vip-open-line})
396@kindex 117 @kbd{O} (@code{vip-Open-line})
397Given counts, that many copies of text will be inserted. Thus
398@kbd{o a b c @key{ESC}} will insert 3 lines of @samp{abc} below the current
399line.
400@item /
401@itemx ?
402@kindex 057 @kbd{/} (@code{vip-search-forward})
403@kindex 077 @kbd{?} (@code{vip-search-backward})
404Given a count @var{n}, @var{n}-th occurrence will be searched.
405@end table
406
407@node Marking, Region Commands, Counts, Differences from Vi
408@subsection Marking
409
410Typing an @kbd{m} followed by a lower-case character @var{ch} marks the
411point to the register named @var{ch} as in Vi. In addition to these, we
412have following key bindings for marking.
413
414@kindex 155 @kbd{m} (@code{vip-mark-point})
415
416@table @kbd
417@item m <
418Set mark at the beginning of buffer.
419@item m >
420Set mark at the end of buffer.
421@item m .
422Set mark at point (and push old mark on mark ring).
423@item m ,
424Jump to mark (and pop mark off the mark ring).
425@end table
426
427@node Region Commands, New Commands, Marking, Differences from Vi
428@subsection Region Commands
429
430@cindex region
431
432Vi operators like @kbd{d}, @kbd{c} etc. are usually used in combination
433with motion commands. It is now possible to use current region as the
434argument to these operators. (A @dfn{region} is a part of buffer
435delimited by point and mark.) The key @kbd{r} is used for this purpose.
436Thus @kbd{d r} will delete the current region. If @kbd{R} is used instead
437of @kbd{r} the region will first be enlarged so that it will become the
438smallest region containing the original region and consisting of whole
439lines. Thus @kbd{m .@: d R} will have the same effect as @kbd{d d}.@refill
440
441@node New Commands, New Bindings, Region Commands, Differences from Vi
442@subsection Some New Commands
443
444Note that the keys below (except for @kbd{R}) are not used in Vi.
445
446@table @kbd
447@item C-a
448@kindex 001 @kbd{C-a} (@code{vip-beginning-of-line})
449Move point to the beginning of line.
450@item C-n
451@kindex 016 @kbd{C-n} (@code{vip-next-window})
452If you have two or more windows in the screen, this key will move point to
453the next window.
454@item C-o
455@kindex 017 @kbd{C-o} (@code{vip-open-line-at-point})
456Insert a newline and leave point before it, and then enter insert mode.
457@item C-r
458@kindex 022 @kbd{C-r} (@code{isearch-backward})
459Backward incremental search.
460@item C-s
461@kindex 023 @kbd{C-s} (@code{isearch-forward})
462Forward incremental search.
463@item C-c
464@itemx C-x
465@itemx @key{ESC}
466@kindex 003 @kbd{C-c} (@code{vip-ctl-c})
467@kindex 0300 @kbd{C-x} (@code{vip-ctl-x})
468@kindex 033 @kbd{ESC} (@code{vip-ESC})
469These keys will exit from vi mode and return to emacs mode temporarily. If
470you hit one of these keys, Emacs will be in emacs mode and will believe
471that you hit that key in emacs mode. For example, if you hit @kbd{C-x}
472followed by @kbd{2}, then the current window will be split into 2 and you
473will be in vi mode again.
474@item \
475@kindex 134 @kbd{\} (@code{vip-escape-to-emacs})
476Escape to emacs mode. Hitting @kbd{\} will take you to emacs mode, and you
477can execute a single Emacs command. After executing the Emacs command you
478will be in vi mode again. You can give a count before typing @kbd{\}.
479Thus @kbd{5 \ *}, as well as @kbd{\ C-u 5 *}, will insert @samp{*****}
480before point. Similarly @kbd{1 0 \ C-p} will move the point 10 lines above
481the current line.@refill
482@item K
483@kindex 113 @kbd{K} (@code{vip-kill-buffer})
484Kill current buffer if it is not modified. Useful when you selected a
485buffer which you did not want.
486@item Q
487@itemx R
488@kindex 121 @kbd{Q} (@code{vip-query-replace})
489@kindex 122 @kbd{R} (@code{vip-replace-string})
490@kbd{Q} is for query replace and @kbd{R} is for replace. By default,
491string to be replaced are treated literally. If you wish to do a regular
492expression replace, first do replace with empty string as the string to be
493replaced. In this way, you can toggle between vanilla and regular
494expression replacement.
495@item v
496@itemx V
497@kindex 166 @kbd{v} (@code{vip-find-file})
498@kindex 126 @kbd{V} (@code{vip-find-file-other-window})
499These keys are used to Visit files. @kbd{v} will switch to a buffer
500visiting file whose name can be entered in the minibuffer. @kbd{V} is
501similar, but will use window different from the current window.
502@item #
503@kindex 0430 @kbd{#} (@code{vip-command-argument})
504If followed by a certain character @var{ch}, it becomes an operator whose
505argument is the region determined by the motion command that follows.
506Currently, @var{ch} can be one of @kbd{c}, @kbd{C}, @kbd{g}, @kbd{q} and
507@kbd{s}.@refill
508@item # c
509@kindex 0432 @kbd{# c} (@code{downcase-region})
510Change upper-case characters in the region to lower case
511(@code{downcase-region}).
512@item # C
513@kindex 0431 @kbd{# C} (@code{upcase-region})
514Change lower-case characters in the region to upper case. For instance,
515@kbd{# C 3 w} will capitalize 3 words from the current point
516(@code{upcase-region}).
517@item # g
518@kindex 0432 @kbd{# g} (@code{vip-global-execute})
519Execute last keyboard macro for each line in the region
520(@code{vip-global-execute}).@refill
521@item # q
522@kindex 0432 @kbd{# q} (@code{vip-quote-region})
523Insert specified string at the beginning of each line in the region
524(@code{vip-quote-region}).
525@item # s
526@kindex 0432 @kbd{# s} (@code{spell-region})
527Check spelling of words in the region (@code{spell-region}).
528@item *
529@kindex 052 @kbd{*} (@code{vip-call-last-kbd-macro})
530Call last keyboard macro.
531@end table
532
533@node New Bindings, Window Commands, New Commands, Differences from Vi
534@subsection New Key Bindings
535
536In VIP the meanings of some keys are entirely different from Vi. These key
537bindings are done deliberately in the hope that editing under Emacs will
538become easier. It is however possible to rebind these keys to functions
539which behave similarly as in Vi. @xref{Customizing Key Bindings}, for
540details.
541
542@table @kbd
543@item C-g
544@itemx g
545@kindex 007 @kbd{C-g} (@code{vip-keyboard-quit})
546@kindex 147 @kbd{g} (@code{vip-info-on-file})
547In Vi, @kbd{C-g} is used to get information about the file associated to
548the current buffer. Here, @kbd{g} will do that, and @kbd{C-g} is
549used to abort a command (this is for compatibility with emacs mode.)
550@item SPC
551@itemx @key{RET}
552@kindex 040 @kbd{SPC} (@code{vip-scroll})
553@kindex 015 @kbd{RET} (@code{vip-scroll-back})
554Now these keys will scroll up and down the text of current window.
555Convenient for viewing the text.
556@item s
557@itemx S
558@kindex 163 @kbd{s} (@code{vip-switch-to-buffer})
559@kindex 123 @kbd{S} (@code{vip-switch-to-buffer-other-window})
560They are used to switch to a specified buffer. Useful for switching to
561already existing buffer since buffer name completion is provided. Also
562a default buffer will be given as part of the prompt, to which you can
563switch by just typing @key{RET} key. @kbd{s} is used to select buffer
564in the current window, while @kbd{S} selects buffer in another window.
565@item C
566@itemx X
567@kindex 103 @kbd{C} (@code{vip-ctl-c-equivalent})
568@kindex 1300 @kbd{X} (@code{vip-ctl-x-equivalent})
569These keys will exit from vi mode and return to emacs mode temporarily.
570If you type @kbd{C} (@kbd{X}), Emacs will be in emacs mode and will believe
571that you have typed @kbd{C-c} (@kbd{C-x}, resp.) in emacs mode. Moreover,
572if the following character you type is an upper-case letter, then Emacs
573will believe that you have typed the corresponding control character.
574You will be in vi mode again after the command is executed. For example,
575typing @kbd{X S} in vi mode is the same as typing @kbd{C-x C-s} in emacs
576mode. You get the same effect by typing @kbd{C-x C-s} in vi mode, but
577the idea here is that you can execute useful Emacs commands without typing
578control characters. For example, if you hit @kbd{X} (or @kbd{C-x}) followed
579by @kbd{2}, then the current window will be split into 2 and you will be in
580vi mode again.@refill
581@end table
582
583In addition to these, @code{ctl-x-map} is slightly modified:
584
585@kindex 1301 @kbd{X 3} (@code{vip-buffer-in-two-windows})
586
587@table @kbd
588@item X 3
589@itemx C-x 3
590This is equivalent to @kbd{C-x 1 C-x 2} (1 + 2 = 3).
591@end table
592
593@node Window Commands, Buffer Commands, New Bindings, Differences from Vi
594@subsection Window Commands
595
596In this and following subsections, we give a summary of key bindings for
597basic functions related to windows, buffers and files.
598
599@table @kbd
600@item C-n
601@kindex 016 @kbd{C-n} (@code{vip-next-window})
602Switch to next window.
603@item X 1
604@itemx C-x 1
605@kindex 1301 @kbd{X 1} (@code{delete-other-windows})
606Delete other windows.
607@item X 2
608@itemx C-x 2
609@kindex 1301 @kbd{X 2} (@code{split-window-vertically})
610Split current window into two windows.
611@item X 3
612@itemx C-x 3
613@kindex 1301 @kbd{X 3} (@code{vip-buffer-in-two-windows})
614Show current buffer in two windows.
615@end table
616
617@node Buffer Commands, File Commands, Window Commands, Differences from Vi
618@subsection Buffer Commands
619
620@table @kbd
621@item s
622@kindex 163 @kbd{s} (@code{vip-switch-to-buffer})
623Switch to the specified buffer in the current window
624(@code{vip-switch-to-buffer}).
625@item S
626@kindex 123 @kbd{S} (@code{vip-switch-to-buffer-other-window})
627Switch to the specified buffer in another window
628(@code{vip-switch-to-buffer-other-window}).
629@item K
630@kindex 113 @kbd{K} (@code{vip-kill-buffer})
631Kill the current buffer if it is not modified.
632@item X S
633@itemx C-x C-s
634@kindex 1302 @kbd{X S} (@code{save-buffer})
635Save the current buffer in the file associated to the buffer.
636@end table
637
638@node File Commands, Misc Commands, Buffer Commands, Differences from Vi
639@subsection File Commands
640
641@table @kbd
642@item v
643@kindex 166 @kbd{v} (@code{vip-find-file})
644Visit specified file in the current window.
645@item V
646@kindex 126 @kbd{V} (@code{vip-find-file-other-window})
647Visit specified file in another window.
648@item X W
649@itemx C-x C-w
650@kindex 1302 @kbd{X W} (@code{write-file})
651Write current buffer into the specified file.
652@item X I
653@itemx C-x C-i
654@kindex 1302 @kbd{X I} (@code{insert-file})
655
656Insert specified file at point.
657@end table
658
659@node Misc Commands, Vi Commands, File Commands, Differences from Vi
660@subsection Miscellaneous Commands
661
662@table @kbd
663@item X (
664@itemx C-x (
665@kindex 1301 @kbd{X (} (@code{start-kbd-macro})
666Start remembering keyboard macro.
667@item X )
668@itemx C-x )
669@kindex 1301 @kbd{X )} (@code{end-kbd-macro})
670Finish remembering keyboard macro.
671@item *
672@kindex 052 @kbd{*} (@code{vip-call-last-kbd-macro})
673Call last remembered keyboard macro.
674@item X Z
675@itemx C-x C-z
676@kindex 1302 @kbd{X Z} (@code{suspend-emacs})
677Suspend Emacs.
678@item Z Z
679Exit Emacs.
680@itemx Q
681Query replace.
682@itemx R
683Replace.
684@end table
685
686@node Vi Commands, Numeric Arguments, Misc Commands, Top
687@chapter Vi Commands
688
689This chapter describes Vi commands other than Ex commands implemented in
690VIP. Except for the last section which discusses insert mode, all the
691commands described in this chapter are to be used in vi mode.
692
693@menu
694* Numeric Arguments:: Many commands accept numeric arguments
695* Important Keys:: Some very important keys.
696* Buffers and Windows:: Commands for handling buffers and windows.
697* Files:: Commands for handling files.
698* Viewing the Buffer:: How you can view the current buffer.
699* Mark Commands:: Marking positions in a buffer.
700* Motion Commands:: Commands for moving point.
701* Searching and Replacing:: Commands for searching and replacing.
702* Modifying Commands:: Commands for modifying the buffer.
703* Other Vi Commands:: Miscellaneous Commands.
704* Commands in Insert Mode:: Commands for entering insert mode.
705@end menu
706
707@node Numeric Arguments, Important Keys, Vi Commands, Vi Commands
708@section Numeric Arguments
709
710@cindex numeric arguments
711@cindex count
712@kindex 061 @kbd{1} (numeric argument)
713@kindex 062 @kbd{2} (numeric argument)
714@kindex 063 @kbd{3} (numeric argument)
715@kindex 064 @kbd{4} (numeric argument)
716@kindex 065 @kbd{5} (numeric argument)
717@kindex 066 @kbd{6} (numeric argument)
718@kindex 067 @kbd{7} (numeric argument)
719@kindex 068 @kbd{8} (numeric argument)
720@kindex 069 @kbd{9} (numeric argument)
721
722Most Vi commands accept a @dfn{numeric argument} which can be supplied as
723a prefix to the commands. A numeric argument is also called a @dfn{count}.
724In many cases, if a count is given, the command is executed that many times.
725For instance, @kbd{5 d d} deletes 5 lines while simple @kbd{d d} deletes a
726line. In this manual the metavariable @var{n} will denote a count.@refill
727
728@node Important Keys, Buffers and Windows, Numeric Arguments, Vi Commands
729@section Important Keys
730
731The keys @kbd{C-g} and @kbd{C-l} are unique in that their associated
732functions are the same in any of emacs, vi and insert mode.
733
734@table @kbd
735@item C-g
736@kindex 007 @kbd{C-g} (@code{vip-keyboard-quit})
737Quit. Cancel running or partially typed command (@code{keyboard-quit}).
738@item C-l
739@kindex 014 @kbd{C-l} (@code{recenter})
740Clear the screen and reprint everything (@code{recenter}).
741@end table
742
743In Emacs many commands are bound to the key strokes that start with
744@kbd{C-x}, @kbd{C-c} and @key{ESC}. These commands can be
745accessed from vi mode as easily as from emacs mode.@refill
746
747@table @kbd
748@item C-x
749@itemx C-c
750@itemx @key{ESC}
751@kindex 003 @kbd{C-c} (@code{vip-ctl-c})
752@kindex 0300 @kbd{C-x} (@code{vip-ctl-x})
753@kindex 033 @kbd{ESC} (@code{vip-ESC})
754Typing one of these keys have the same effect as typing it in emacs mode.
755Appropriate command will be executed according as the keys you type after
756it. You will be in vi mode again after the execution of the command.
757For instance, if you type @kbd{@key{ESC} <} (in vi mode) then the cursor will
758move to the beginning of the buffer and you will still be in vi mode.
759@item C
760@itemx X
761@kindex 103 @kbd{C} (@code{vip-ctl-c-equivalent})
762@kindex 1300 @kbd{X} (@code{vip-ctl-x-equivalent})
763Typing one of these keys have the effect of typing the corresponding
764control character in emacs mode. Moreover, if you type an upper-case
765character following it, that character will also be translated to the
766corresponding control character. Thus typing @kbd{X W} in vi mode is the
767same as typing @kbd{C-x C-w} in emacs mode. You will be in vi mode again
768after the execution of a command.
769@item \
770@kindex 134 @kbd{\} (@code{vip-escape-to-emacs})
771Escape to emacs mode. Hitting the @kbd{\} key will take you to emacs mode,
772and you can execute a single Emacs command. After executing the
773Emacs command you will be in vi mode again. You can give a count before
774typing @kbd{\}. Thus @kbd{5 \ +}, as well as @kbd{\ C-u 5 +}, will insert
775@samp{+++++} before point.@refill
776@end table
777
778@node Buffers and Windows, Files, Important Keys, Vi Commands
779@section Buffers and Windows
780
781@cindex buffer
782@cindex selected buffer
783@cindex current buffer
784
785In Emacs the text you edit is stored in a @dfn{buffer}.
786See GNU Emacs Manual, for details. There is always one @dfn{current}
787buffer, also called the @dfn{selected buffer}.@refill
788
789@cindex window
790@cindex modified (buffer)
791
792You can see the contents of buffers through @dfn{windows} created by Emacs.
793When you have multiple windows on the screen only one of them is selected.
794Each buffer has a unique name, and each window has a mode line which shows
795the name of the buffer associated with the window and other information
796about the status of the buffer. You can change the format of the mode
797line, but normally if you see @samp{**} at the beginning of a mode line it
798means that the buffer is @dfn{modified}. If you write out the content of
799the buffer to a file, then the buffer will become not modified. Also if
800you see @samp{%%} at the beginning of the mode line, it means that the file
801associated with the buffer is write protected.
802
803We have the following commands related to windows and buffers.
804
805@table @kbd
806@item C-n
807@kindex 016 @kbd{C-n} (@code{vip-next-window})
808Move cursor to the next-window (@code{vip-next-window}).
809@item X 1
810@kindex 1301 @kbd{X 1} (@code{delete-other-windows})
811Delete other windows and make the selected window fill the screen
812@*(@code{delete-other-windows}).
813@item X 2
814@kindex 1301 @kbd{X 2} (@code{split-window-vertically})
815Split current window into two windows (@code{split-window-vertically}).
816@item X 3
817@kindex 1301 @kbd{X 3} (@code{vip-buffer-in-two-windows})
818Show current buffer in two windows.
819@item s @var{buffer} @key{RET}
820@kindex 163 @kbd{s} (@code{vip-switch-to-buffer})
821Select or create a buffer named @var{buffer} (@code{vip-switch-to-buffer}).
822@item S @var{buffer} @key{RET}
823@kindex 123 @kbd{S} (@code{vip-switch-to-buffer-other-window})
824Similar but select a buffer named @var{buffer} in another window
825@*(@code{vip-switch-to-buffer-other-window}).
826@item K
827@kindex 113 @kbd{K} (@code{vip-kill-buffer})
828Kill the current buffer if it is not modified or if it is not associated
829with a file @*(@code{vip-kill-buffer}).
830@item X B
831@kindex 1302 @kbd{X B} (@code{list-buffers})
832List the existing buffers (@code{list-buffers}).
833@end table
834
835@cindex buffer name completion
836
837As @dfn{buffer name completion} is provided, you have only to type in
838initial substring of the buffer name which is sufficient to identify it
839among names of existing buffers. After that, if you hit @key{TAB} the rest
840of the buffer name will be supplied by the system, and you can confirm it
841by @key{RET}. The default buffer name to switch to will also be prompted,
842and you can select it by giving a simple @key{RET}. See GNU Emacs Manual
843for details of completion.
844
845@node Files, Viewing the Buffer, Buffers and Windows, Vi Commands
846@section Files
847
848We have the following commands related to files. They are used to visit,
849save and insert files.
850
851@table @kbd
852@item v @var{file} @key{RET}
853@kindex 166 @kbd{v} (@code{vip-find-file})
854Visit specified file in the current window (@code{vip-find-file}).
855@item V @var{file} @key{RET}
856@kindex 126 @kbd{V} (@code{vip-find-file-other-window})
857Visit specified file in another window (@code{vip-find-file-other-window}).
858@item X S
859@kindex 1302 @kbd{X S} (@code{save-buffer})
860Save current buffer to the file associated with the buffer. If no file is
861associated with the buffer, the name of the file to write out the content
862of the buffer will be asked in the minibuffer.
863@item X W @var{file} @key{RET}
864@kindex 1302 @kbd{X W} (@code{write-file})
865Write current buffer into a specified file.
866@item X I @var{file} @key{RET}
867@kindex 1302 @kbd{X I} (@code{insert-file})
868Insert a specified file at point.
869@item g
870@kindex 147 @kbd{g} (@code{vip-info-on-file})
871Give information on the file associated with the current buffer. Tell you
872the name of the file associated with the buffer, the line number of the
873current point and total line numbers in the buffer. If no file is
874associated with the buffer, this fact will be indicated by the null file
875name @samp{""}.
876@end table
877
878@cindex visiting (a file)
879@cindex default directory
880
881In Emacs, you can edit a file by @dfn{visiting} it. If you wish to visit a
882file in the current window, you can just type @kbd{v}. Emacs maintains the
883@dfn{default directory} which is specific to each buffer. Suppose, for
884instance, that the default directory of the current buffer is
885@file{/usr/masahiko/lisp/}. Then you will get the following prompt in the
886minibuffer.@refill
887@example
888visit file: /usr/masahiko/lisp/
889@end example
890@noindent
891@cindex file name completion
892If you wish to visit, say, @file{vip.el} in this directory, then you can
893just type @samp{vip.el} followed by @key{RET}. If the file @file{vip.el}
894already exists in the directory, Emacs will visit that file, and if not,
895the file will be created. Emacs will use the file name (@file{vip.el}, in
896this case) as the name of the buffer visiting the file. In order to make
897the buffer name unique, Emacs may append @samp{<2>}, @samp{<3>} etc., to
898the buffer name. As the @dfn{file name completion} is provided here, you
899can sometime save typing. For instance, suppose there is only one file in the
900default directory whose name starts with @samp{v}, that is @samp{vip.el}.
901Then if you just type @kbd{v @key{TAB}} then it will be completed to
902@samp{vip.el}. Thus, in this case, you just have to type @kbd{v v @key{TAB}
903@key{RET}} to visit @file{/usr/masahiko/lisp/vip.el}. Continuing the
904example, let us now suppose that you wished to visit the file
905@file{/usr/masahiko/man/vip.texinfo}. Then to the same prompt which you get
906after you typed @kbd{v}, you can enter @samp{/usr/masahiko/man/vip.texinfo} or
907@samp{../man/vip.texinfo} followed by @key{RET}.
908
909Use @kbd{V} instead of @kbd{v}, if you wish to visit a file in another
910window.
911
912You can verify which file you are editing by typing @kbd{g}. (You can also
913type @kbd{X B} to get information on other buffers too.) If you type
914@kbd{g} you will get an information like below in the echo area:@refill
915@example
916"/usr/masahiko/man/vip.texinfo" line 921 of 1949
917@end example
918
919After you edited the buffer (@samp{vip.texinfo}, in our example) for a while,
920you may wish to save it in a file. If you wish to save it in the file
921associated with the buffer (@file{/usr/masahiko/man/vip.texinfo}, in this
922case), you can just say @kbd{X S}. If you wish to save it in another file,
923you can type @kbd{X W}. You will then get a similar prompt as you get for
924@kbd{v}, to which you can enter the file name.@refill
925
926@node Viewing the Buffer, Mark Commands, Files, Vi Commands
927@section Viewing the Buffer
928
929In this and next section we discuss commands for moving around in the
930buffer. These command do not change the content of the buffer. The
931following commands are useful for viewing the content of the current
932buffer.
933
934@table @kbd
935@item @key{SPC}
936@itemx C-f
937@kindex 040 @kbd{SPC} (@code{vip-scroll})
938@kindex 006 @kbd{C-f} (@code{vip-scroll-back})
939Scroll text of current window upward almost full screen. You can go
940@i{forward} in the buffer by this command (@code{vip-scroll}).
941@item @key{RET}
942@itemx C-b
943@kindex 015 @kbd{RET} (@code{vip-scroll-back})
944@kindex 002 @kbd{C-b} (@code{vip-scroll-back})
945Scroll text of current window downward almost full screen. You can go
946@i{backward} in the buffer by this command (@code{vip-scroll-back}).
947@itemx C-d
948@kindex 004 @kbd{C-d} (@code{vip-scroll-up})
949Scroll text of current window upward half screen. You can go
950@i{down} in the buffer by this command (@code{vip-scroll-down}).
951@itemx C-u
952@kindex 025 @kbd{C-u} (@code{vip-scroll-down})
953Scroll text of current window downward half screen. You can go
954@i{up} in the buffer by this command (@code{vip-scroll-up}).
955@item C-y
956@kindex 031 @kbd{C-y} (@code{vip-scroll-down-one})
957Scroll text of current window upward by one line (@code{vip-scroll-down-one}).
958@item C-e
959@kindex 005 @kbd{C-e} (@code{vip-scroll-up-one})
960Scroll text of current window downward by one line (@code{vip-scroll-up-one}).
961@end table
962@noindent
963You can repeat these commands by giving a count. Thus, @kbd{2 @key{SPC}}
964has the same effect as @kbd{@key{SPC} @key{SPC}}.
965
966The following commands reposition point in the window.
967
968@table @kbd
969@item z H
970@itemx z @key{RET}
971@kindex 1723 @kbd{z H} (@code{vip-line-to-top})
972@kindex 1721 @kbd{z RET} (@code{vip-line-to-top})
973Put point on the top (@i{home}) line in the window. So the current line
974becomes the top line in the window. Given a count @var{n}, point will be
975placed in the @var{n}-th line from top (@code{vip-line-to-top}).
976@item z M
977@itemx z .
978@kindex 1723 @kbd{z M} (@code{vip-line-to-middle})
979@kindex 1722 @kbd{z .} (@code{vip-line-to-middle})
980Put point on the @i{middle} line in the window. Given a count @var{n},
981point will be placed in the @var{n}-th line from the middle line
982(@code{vip-line-to-middle}).
983@item z L
984@itemx z -
985@kindex 1723 @kbd{z L} (@code{vip-line-to-bottom})
986@kindex 1722 @kbd{z -} (@code{vip-line-to-bottom})
987Put point on the @i{bottom} line in the window. Given a count @var{n},
988point will be placed in the @var{n}-th line from bottom
989(@code{vip-line-to-bottom}).
990@item C-l
991Center point in window and redisplay screen (@code{recenter}).
992@end table
993
994@node Mark Commands, Motion Commands, Viewing the Buffer, Vi Commands
995@section Mark Commands
996
997The following commands are used to mark positions in the buffer.
998
999@table @kbd
1000@item m @var{ch}
1001@kindex 155 @kbd{m} (@code{vip-mark-point})
1002Store current point in the register @var{ch}. @var{ch} must be a
1003lower-case @acronym{ASCII} letter.
1004@item m <
1005Set mark at the beginning of current buffer.
1006@item m >
1007Set mark at the end of current buffer.
1008@item m .
1009Set mark at point.
1010@item m ,
1011Jump to mark (and pop mark off the mark ring).
1012@end table
1013
1014@cindex mark ring
1015
1016Emacs uses the @dfn{mark ring} to store marked positions. The commands
1017@kbd{m <}, @kbd{m >} and @kbd{m .}@: not only set mark but also add it as the
1018latest element of the mark ring (replacing the oldest one). By repeating
1019the command `@kbd{m ,}' you can visit older and older marked positions. You
1020will eventually be in a loop as the mark ring is a ring.
1021
1022@node Motion Commands, Searching and Replacing, Mark Commands, Vi Commands
1023@section Motion Commands
1024
1025Commands for moving around in the current buffer are collected here. These
1026commands are used as an `argument' for the delete, change and yank commands
1027to be described in the next section.
1028
1029@table @kbd
1030@item h
1031@kindex 150 @kbd{h} (@code{vip-backward-char})
1032Move point backward by one character. Signal error if point is at the
1033beginning of buffer, but (unlike Vi) do not complain otherwise
1034(@code{vip-backward-char}).
1035@item l
1036@kindex 154 @kbd{l} (@code{vip-forward-char})
1037Move point backward by one character. Signal error if point is at the
1038end of buffer, but (unlike Vi) do not complain otherwise
1039(@code{vip-forward-char}).
1040@item j
1041@kindex 152 @kbd{j} (@code{vip-next-line})
1042Move point to the next line keeping the current column. If point is on the
1043last line of the buffer, a new line will be created and point will move to
1044that line (@code{vip-next-line}).
1045@item k
1046@kindex 153 @kbd{k} (@code{vip-previous-line})
1047Move point to the previous line keeping the current column
1048(@code{vip-next-line}).
1049@item +
1050@kindex 053 @kbd{+} (@code{vip-next-line-at-bol})
1051Move point to the next line at the first non-white character. If point is
1052on the last line of the buffer, a new line will be created and point will
1053move to the beginning of that line (@code{vip-next-line-at-bol}).
1054@item -
1055@kindex 055 @kbd{-} (@code{vip-previous-line-at-bol})
1056Move point to the previous line at the first non-white character
1057(@code{vip-previous-line-at-bol}).
1058@end table
1059@noindent
1060If a count is given to these commands, the commands will be repeated that
1061many times.
1062
1063@table @kbd
1064@item 0
1065@kindex 060 @kbd{0} (@code{vip-beginning-of-line})
1066Move point to the beginning of line (@code{vip-beginning-of-line}).
1067@item ^
1068@kindex 136 @kbd{^} (@code{vip-bol-and-skip-white})
1069Move point to the first non-white character on the line
1070(@code{vip-bol-and-skip-white}).
1071@item $
1072@kindex 044 @kbd{$} (@code{vip-goto-eol})
1073Move point to the end of line (@code{vip-goto-eol}).
1074@item @var{n} |
1075@kindex 174 @kbd{|} (@code{vip-goto-col})
1076Move point to the @var{n}-th column on the line (@code{vip-goto-col}).
1077@end table
1078@noindent
1079Except for the @kbd{|} command, these commands neglect a count.
1080
1081@cindex word
1082
1083@table @kbd
1084@item w
1085@kindex 167 @kbd{w} (@code{vip-forward-word})
1086Move point forward to the beginning of the next word
1087(@code{vip-forward-word}).
1088@item W
1089@kindex 127 @kbd{W} (@code{vip-forward-Word})
1090Move point forward to the beginning of the next word, where a @dfn{word} is
1091considered as a sequence of non-white characters (@code{vip-forward-Word}).
1092@item b
1093@kindex 142 @kbd{b} (@code{vip-backward-word})
1094Move point backward to the beginning of a word (@code{vip-backward-word}).
1095@item B
1096@kindex 102 @kbd{B} (@code{vip-backward-Word})
1097Move point backward to the beginning of a word, where a @i{word} is
1098considered as a sequence of non-white characters (@code{vip-forward-Word}).
1099@item e
1100@kindex 145 @kbd{e} (@code{vip-end-of-word})
1101Move point forward to the end of a word (@code{vip-end-of-word}).
1102@item E
1103@kindex 105 @kbd{E} (@code{vip-end-of-Word})
1104Move point forward to the end of a word, where a @i{word} is
1105considered as a sequence of non-white characters (@code{vip-end-of-Word}).
1106@end table
1107@noindent
1108@cindex syntax table
1109Here the meaning of the word `word' for the @kbd{w}, @kbd{b} and @kbd{e}
1110commands is determined by the @dfn{syntax table} effective in the current
1111buffer. Each major mode has its syntax mode, and therefore the meaning of
1112a word also changes as the major mode changes. See GNU Emacs Manual for
1113details of syntax table.
1114
1115@table @kbd
1116@item H
1117@kindex 110 @kbd{H} (@code{vip-window-top})
1118Move point to the beginning of the @i{home} (top) line of the window.
1119Given a count @var{n}, go to the @var{n}-th line from top
1120(@code{vip-window-top}).
1121@item M
1122@kindex 115 @kbd{M} (@code{vip-window-middle})
1123Move point to the beginning of the @i{middle} line of the window. Given
1124a count @var{n}, go to the @var{n}-th line from the middle line
1125(@code{vip-window-middle}).
1126@item L
1127@kindex 114 @kbd{L} (@code{vip-window-bottom})
1128Move point to the beginning of the @i{lowest} (bottom) line of the
1129window. Given count, go to the @var{n}-th line from bottom
1130(@code{vip-window-bottom}).
1131@end table
1132@noindent
1133These commands can be used to go to the desired line visible on the screen.
1134
1135@table @kbd
1136@item (
1137@kindex 050 @kbd{(} (@code{vip-backward-sentence})
1138Move point backward to the beginning of the sentence
1139(@code{vip-backward-sentence}).
1140@item )
1141@kindex 051 @kbd{)} (@code{vip-forward-sentence})
1142Move point forward to the end of the sentence
1143(@code{vip-forward-sentence}).
1144@item @{
1145@kindex 173 @kbd{@{} (@code{vip-backward-paragraph})
1146Move point backward to the beginning of the paragraph
1147(@code{vip-backward-paragraph}).
1148@item @}
1149@kindex 175 @kbd{@}} (@code{vip-forward-paragraph})
1150Move point forward to the end of the paragraph
1151(@code{vip-forward-paragraph}).
1152@end table
1153@noindent
1154A count repeats the effect for these commands.
1155
1156@table @kbd
1157@item G
1158@kindex 107 @kbd{G} (@code{vip-goto-line})
1159Given a count @var{n}, move point to the @var{n}-th line in the buffer on
1160the first non-white character. Without a count, go to the end of the buffer
1161(@code{vip-goto-line}).
1162@item ` `
1163@kindex 140 @kbd{`} (@code{vip-goto-mark})
1164Exchange point and mark (@code{vip-goto-mark}).
1165@item ` @var{ch}
1166Move point to the position stored in the register @var{ch}. @var{ch} must
1167be a lower-case letter.
1168@item ' '
1169@kindex 047 @kbd{'} (@code{vip-goto-mark-and-skip-white})
1170Exchange point and mark, and then move point to the first non-white
1171character on the line (@code{vip-goto-mark-and-skip-white}).
1172@item ' @var{ch}
1173Move point to the position stored in the register @var{ch} and skip to the
1174first non-white character on the line. @var{ch} must be a lower-case letter.
1175@item %
1176@kindex 045 @kbd{%} (@code{vip-paren-match})
1177Move point to the matching parenthesis if point is looking at @kbd{(},
1178@kbd{)}, @kbd{@{}, @kbd{@}}, @kbd{[} or @kbd{]}
1179@*(@code{vip-paren-match}).
1180@end table
1181@noindent
1182The command @kbd{G} mark point before move, so that you can return to the
1183original point by @kbd{` `}. The original point will also be stored in
1184the mark ring.
1185
1186The following commands are useful for moving points on the line. A count
1187will repeat the effect.
1188
1189@table @kbd
1190@item f @var{ch}
1191@kindex 146 @kbd{f} (@code{vip-find-char-forward})
1192Move point forward to the character @var{ch} on the line. Signal error if
1193@var{ch} could not be found (@code{vip-find-char-forward}).
1194@item F @var{ch}
1195@kindex 106 @kbd{F} (@code{vip-find-char-backward})
1196Move point backward to the character @var{ch} on the line. Signal error if
1197@var{ch} could not be found (@code{vip-find-char-backward}).
1198@item t @var{ch}
1199@kindex 164 @kbd{t} (@code{vip-goto-char-forward})
1200Move point forward upto the character @var{ch} on the line. Signal error if
1201@var{ch} could not be found (@code{vip-goto-char-forward}).
1202@item T @var{ch}
1203@kindex 124 @kbd{T} (@code{vip-goto-char-backward})
1204Move point backward upto the character @var{ch} on the line. Signal error if
1205@var{ch} could not be found (@code{vip-goto-char-backward}).
1206@item ;
1207@kindex 073 @kbd{;} (@code{vip-repeat-find})
1208Repeat previous @kbd{f}, @kbd{t}, @kbd{F} or @kbd{T} command
1209(@code{vip-repeat-find}).
1210@item ,
1211@kindex 054 @kbd{,} (@code{vip-repeat-find-opposite})
1212Repeat previous @kbd{f}, @kbd{t}, @kbd{F} or @kbd{T} command, in the
1213opposite direction (@code{vip-repeat-find-opposite}).
1214@end table
1215
1216@node Searching and Replacing, Modifying Commands, Motion Commands, Vi Commands
1217@section Searching and Replacing
1218
1219Following commands are available for searching and replacing.
1220
1221@cindex regular expression (search)
1222
1223@table @kbd
1224@item / @var{string} @key{RET}
1225@kindex 057 @kbd{/} (@code{vip-search-forward})
1226Search the first occurrence of the string @var{string} forward starting
1227from point. Given a count @var{n}, the @var{n}-th occurrence of
1228@var{string} will be searched. If the variable @code{vip-re-search} has value
1229@code{t} then @dfn{regular expression} search is done and the string
1230matching the regular expression @var{string} is found. If you give an
1231empty string as @var{string} then the search mode will change from vanilla
1232search to regular expression search and vice versa
1233(@code{vip-search-forward}).
1234@item ? @var{string} @key{RET}
1235@kindex 077 @kbd{?} (@code{vip-search-backward})
1236Same as @kbd{/}, except that search is done backward
1237(@code{vip-search-backward}).
1238@item n
1239@kindex 156 @kbd{n} (@code{vip-search-next})
1240Search the previous search pattern in the same direction as before
1241(@code{vip-search-next}).
1242@item N
1243@kindex 116 @kbd{N} (@code{vip-search-Next})
1244Search the previous search pattern in the opposite direction
1245(@code{vip-search-Next}).
1246@item C-s
1247@kindex 023 @kbd{C-s} (@code{isearch-forward})
1248Search forward incrementally. See GNU Emacs Manual for details
1249(@code{isearch-forward}).
1250@item C-r
1251@kindex 022 @kbd{C-r} (@code{isearch-backward})
1252Search backward incrementally (@code{isearch-backward}).
1253@cindex vanilla (replacement)
1254@cindex regular expression (replacement)
1255@item R @var{string} RET @var{newstring}
1256@kindex 122 @kbd{R} (@code{vip-replace-string})
1257There are two modes of replacement, @dfn{vanilla} and @dfn{regular expression}.
1258If the mode is @i{vanilla} you will get a prompt @samp{Replace string:},
1259and if the mode is @i{regular expression} you will ge a prompt
1260@samp{Replace regexp:}. The mode is initially @i{vanilla}, but you can
1261toggle these modes by giving a null string as @var{string}. If the mode is
1262vanilla, this command replaces every occurrence of @var{string} with
1263@var{newstring}. If the mode is regular expression, @var{string} is
1264treated as a regular expression and every string matching the regular
1265expression is replaced with @var{newstring} (@code{vip-replace-string}).
1266@item Q @var{string} RET @var{newstring}
1267@kindex 121 @kbd{Q} (@code{vip-query-replace})
1268Same as @kbd{R} except that you will be asked form confirmation before each
1269replacement
1270@*(@code{vip-query-replace}).
1271@item r @var{ch}
1272@kindex 162 @kbd{r} (@code{vip-replace-char})
1273Replace the character point is looking at by the character @var{ch}. Give
1274count, replace that many characters by @var{ch} (@code{vip-replace-char}).
1275@end table
1276@noindent
1277The commands @kbd{/} and @kbd{?} mark point before move, so that you can
1278return to the original point by @w{@kbd{` `}}.
1279
1280@node Modifying Commands, Delete Commands, Searching and Replacing, Vi Commands
1281@section Modifying Commands
1282
1283In this section, commands for modifying the content of a buffer are
1284described. These commands affect the region determined by a motion command
1285which is given to the commands as their argument.
1286
1287@cindex point commands
1288@cindex line commands
1289
1290We classify motion commands into @dfn{point commands} and
1291@dfn{line commands}. The point commands are as follows:
1292@example
1293@kbd{h}, @kbd{l}, @kbd{0}, @kbd{^}, @kbd{$}, @kbd{w}, @kbd{W}, @kbd{b}, @kbd{B}, @kbd{e}, @kbd{E}, @kbd{(}, @kbd{)}, @kbd{/}, @kbd{?}, @kbd{`}, @kbd{f}, @kbd{F}, @kbd{t}, @kbd{T}, @kbd{%}, @kbd{;}, @kbd{,}
1294@end example
1295@noindent
1296The line commands are as follows:
1297@example
1298@kbd{j}, @kbd{k}, @kbd{+}, @kbd{-}, @kbd{H}, @kbd{M}, @kbd{L}, @kbd{@{}, @kbd{@}}, @kbd{G}, @kbd{'}
1299@end example
1300@noindent
1301@cindex expanding (region)
1302If a point command is given as an argument to a modifying command, the
1303region determined by the point command will be affected by the modifying
1304command. On the other hand, if a line command is given as an argument to a
1305modifying command, the region determined by the line command will be
1306enlarged so that it will become the smallest region properly containing the
1307region and consisting of whole lines (we call this process @dfn{expanding
1308the region}), and then the enlarged region will be affected by the modifying
1309command.
1310
1311@menu
1312* Delete Commands:: Commands for deleting text.
1313* Yank Commands:: Commands for yanking text in Vi's sense.
1314* Put Back Commands:: Commands for putting back deleted/yanked text.
1315* Change Commands:: Commands for changing text.
1316* Repeating and Undoing Modifications::
1317@end menu
1318@node Delete Commands, Yank Commands, Modifying Commands, Modifying Commands
1319@subsection Delete Commands
1320
1321@table @kbd
1322@item d @var{motion-command}
1323@kindex 1440 @kbd{d} (@code{vip-command-argument})
1324Delete the region determined by the motion command @var{motion-command}.
1325@end table
1326@noindent
1327For example, @kbd{d $} will delete the region between point and end of
1328current line since @kbd{$} is a point command that moves point to end of line.
1329@kbd{d G} will delete the region between the beginning of current line and
1330end of the buffer, since @kbd{G} is a line command. A count given to the
1331command above will become the count for the associated motion command.
1332Thus, @kbd{3 d w} will delete three words.
1333
1334@kindex 042 @kbd{"} (@code{vip-command-argument})
1335It is also possible to save the deleted text into a register you specify.
1336For example, you can say @kbd{" t 3 d w} to delete three words and save it
1337to register @kbd{t}. The name of a register is a lower-case letter between
1338@kbd{a} and @kbd{z}. If you give an upper-case letter as an argument to
1339a delete command, then the deleted text will be appended to the content of
1340the register having the corresponding lower-case letter as its name. So,
1341@kbd{" T d w} will delete a word and append it to register @kbd{t}. Other
1342modifying commands also accept a register name as their argument, and we
1343will not repeat similar explanations.
1344
1345We have more delete commands as below.
1346
1347@table @kbd
1348@item d d
1349@kindex 1442 @kbd{d d}
1350Delete a line. Given a count @var{n}, delete @var{n} lines.
1351@item d r
1352@kindex 1442 @kbd{d r}
1353Delete current region.
1354@item d R
1355@kindex 1441 @kbd{d R}
1356Expand current region and delete it.
1357@item D
1358@kindex 104 @kbd{D} (@code{vip-kill-line})
1359Delete to the end of a line (@code{vip-kill-line}).
1360@item x
1361@kindex 170 @kbd{x} (@code{vip-delete-char})
1362Delete a character after point. Given @var{n}, delete @var{n} characters
1363(@code{vip-delete-char}).
1364@item @key{DEL}
1365@kindex 177 @kbd{DEL} (@code{vip-delete-backward-char})
1366Delete a character before point. Given @var{n}, delete @var{n} characters
1367(@code{vip-delete-backward-char}).
1368@end table
1369
1370@node Yank Commands, Put Back Commands, Delete Commands, Modifying Commands
1371@subsection Yank Commands
1372
1373@cindex yank
1374
1375Yank commands @dfn{yank} a text of buffer into a (usually anonymous) register.
1376Here the word `yank' is used in Vi's sense. Thus yank commands do not
1377alter the content of the buffer, and useful only in combination with
1378commands that put back the yanked text into the buffer.
1379
1380@table @kbd
1381@item y @var{motion-command}
1382@kindex 1710 @kbd{y} (@code{vip-command-argument})
1383Yank the region determined by the motion command @var{motion-command}.
1384@end table
1385@noindent
1386For example, @kbd{y $} will yank the text between point and the end of line
1387into an anonymous register, while @kbd{"c y $} will yank the same text into
1388register @kbd{c}.
1389
1390Use the following command to yank consecutive lines of text.
1391
1392@table @kbd
1393@item y y
1394@itemx Y
1395@kindex 131 @kbd{Y} (@code{vip-yank-line})
1396@kindex 1712 @kbd{y y} (@code{vip-yank-line})
1397Yank a line. Given @var{n}, yank @var{n} lines (@code{vip-yank-line}).
1398@item y r
1399@kindex 1712 @kbd{y r}
1400Yank current region.
1401@item y R
1402@kindex 1711 @kbd{y R}
1403Expand current region and yank it.
1404@end table
1405
1406@node Put Back Commands, Change Commands, Yank Commands, Modifying Commands
1407@subsection Put Back Commands
1408Deleted or yanked texts can be put back into the buffer by the command
1409below.
1410
1411@table @kbd
1412@item p
1413@kindex 160 @kbd{p} (@code{vip-put-back})
1414Insert, after the character point is looking at, most recently
1415deleted/yanked text from anonymous register. Given a register name
1416argument, the content of the named register will be put back. Given a
1417count, the command will be repeated that many times. This command also
1418checks if the text to put back ends with a new line character, and if so
1419the text will be put below the current line (@code{vip-put-back}).
1420@item P
1421@kindex 120 @kbd{P} (@code{vip-Put-back})
1422Insert at point most recently deleted/yanked text from anonymous register.
1423Given a register name argument, the content of the named register will
1424be put back. Given a count, the command will be repeated that many times.
1425This command also checks if the text to put back ends with a new line
1426character, and if so the text will be put above the current line rather
1427than at point (@code{vip-Put-back}).
1428@end table
1429@noindent
1430@cindex number register
1431Thus, @kbd{" c p} will put back the content of the register @kbd{c} into the
1432buffer. It is also possible to specify @dfn{number register} which is a
1433numeral between @kbd{1} and @kbd{9}. If the number register @var{n} is
1434specified, @var{n}-th previously deleted/yanked text will be put back. It
1435is an error to specify a number register for the delete/yank commands.
1436
1437@node Change Commands, Repeating and Undoing Modifications, Put Back Commands, Modifying Commands
1438@subsection Change Commands
1439
1440Most commonly used change command takes the following form.
1441
1442@table @kbd
1443@item c @var{motion-command}
1444@kindex 1430 @kbd{c} (@code{vip-command-argument})
1445Replace the content of the region determined by the motion command
1446@var{motion-command} by the text you type. If the motion command is a
1447point command then you will type the text into minibuffer, and if the
1448motion command is a line command then the region will be deleted first and
1449you can insert the text in @var{insert mode}.
1450@end table
1451@noindent
1452For example, if point is at the beginning of a word @samp{foo} and you
1453wish to change it to @samp{bar}, you can type @kbd{c w}. Then, as @kbd{w}
1454is a point command, you will get the prompt @samp{foo =>} in the
1455minibuffer, for which you can type @kbd{b a r @key{RET}} to complete the change
1456command.@refill
1457
1458@table @kbd
1459@item c c
1460@kindex 1432 @kbd{c c}
1461Change a line. Given a count, that many lines are changed.
1462@item c r
1463@kindex 1432 @kbd{c r}
1464Change current region.
1465@item c R
1466@kindex 1431 @kbd{c R}
1467Expand current region and change it.
1468@end table
1469
1470@node Repeating and Undoing Modifications, Other Vi Commands, Change Commands, Modifying Commands
1471@subsection Repeating and Undoing Modifications
1472
1473VIP records the previous modifying command, so that it is easy to repeat
1474it. It is also very easy to undo changes made by modifying commands.
1475
1476@table @kbd
1477@item u
1478@kindex 165 @kbd{u} (@code{vip-undo})
1479Undo the last change. You can undo more by repeating undo by the repeat
1480command @samp{.}. For example, you can undo 5 previous changes by typing
1481@samp{u....}. If you type @samp{uu}, then the second @samp{u} undoes the
1482first undo command (@code{vip-undo}).
1483@item .
1484@kindex 056 @kbd{.} (@code{vip-repeat})
1485Repeat the last modifying command. Given count @var{n} it becomes the new
1486count for the repeated command. Otherwise, the count for the last
1487modifying command is used again (@code{vip-repeat}).
1488@end table
1489
1490@node Other Vi Commands, Commands in Insert Mode, Repeating and Undoing Modifications, Vi Commands
1491@section Other Vi Commands
1492
1493Miscellaneous Vi commands are collected here.
1494
1495@table @kbd
1496@item Z Z
1497@kindex 132 @kbd{Z Z} (@code{save-buffers-kill-emacs})
1498Exit Emacs. If modified buffers exist, you will be asked whether you wish
1499to save them or not (@code{save-buffers-kill-emacs}).
1500@item !@: @var{motion-command} @var{format-command}
1501@itemx @var{n} !@: !@: @var{format-command}
1502@kindex 041 @kbd{!} (@code{vip-command-argument})
1503The region determined by the motion command @var{motion-command} will be
1504given to the shell command @var{format-command} and the region will be
1505replaced by its output. If a count is given, it will be passed to
1506@var{motion-command}. For example, @samp{3!Gsort} will sort the region
1507between point and the 3rd line. If @kbd{!} is used instead of
1508@var{motion-command} then @var{n} lines will be processed by
1509@var{format-command} (@code{vip-command-argument}).
1510@item J
1511@kindex 112 @kbd{J} (@code{vip-join-lines})
1512Join two lines. Given count, join that many lines. A space will be
1513inserted at each junction (@code{vip-join-lines}).
1514@item < @var{motion-command}
1515@itemx @var{n} < <
1516@kindex 074 @kbd{<} (@code{vip-command-argument})
1517Shift region determined by the motion command @var{motion-command} to
1518left by @var{shift-width} (default is 8). If @kbd{<} is used instead of
1519@var{motion-command} then shift @var{n} lines
1520@*(@code{vip-command-argument}).
1521@item > @var{motion-command}
1522@itemx @var{n} > >
1523@kindex 076 @kbd{>} (@code{vip-command-argument})
1524Shift region determined by the motion command @var{motion-command} to
1525right by @var{shift-width} (default is 8). If @kbd{<} is used instead of
1526@var{motion-command} then shift @var{n} lines
1527@*(@code{vip-command-argument}).
1528@item = @var{motion-command}
1529@kindex 075 @kbd{=} (@code{vip-command-argument})
1530Indent region determined by the motion command @var{motion-command}. If
1531@kbd{=} is used instead of @var{motion-command} then indent @var{n} lines
1532(@code{vip-command-argument}).
1533@item *
1534@kindex 052 @kbd{*} (@code{vip-call-last-kbd-macro})
1535Call last remembered keyboard macro.
1536@item #
1537A new vi operator. @xref{New Commands}, for more details.
1538@end table
1539
1540The following keys are reserved for future extensions, and currently
1541assigned to a function that just beeps (@code{vip-nil}).
1542
1543@kindex 046 @kbd{&} (@code{vip-nil})
1544@kindex 100 @kbd{@@} (@code{vip-nil})
1545@kindex 125 @kbd{U} (@code{vip-nil})
1546@kindex 133 @kbd{[} (@code{vip-nil})
1547@kindex 135 @kbd{]} (@code{vip-nil})
1548@kindex 137 @kbd{_} (@code{vip-nil})
1549@kindex 161 @kbd{q} (@code{vip-nil})
1550@kindex 176 @kbd{~} (@code{vip-nil})
1551
1552@example
1553&, @@, U, [, ], _, q, ~
1554@end example
1555
1556VIP uses a special local keymap to interpret key strokes you enter in vi
1557mode. The following keys are bound to @var{nil} in the keymap. Therefore,
1558these keys are interpreted by the global keymap of Emacs. We give below a
1559short description of the functions bound to these keys in the global
1560keymap. See GNU Emacs Manual for details.
1561
1562@table @kbd
1563@item C-@@
1564@kindex 000 @kbd{C-@@} (@code{set-mark-command})
1565Set mark and push previous mark on mark ring (@code{set-mark-command}).
1566@item TAB
1567@kindex 011 TAB (@code{indent-for-tab-command})
1568Indent line for current major mode (@code{indent-for-tab-command}).
1569@item C-j
1570@kindex 012 @kbd{C-j} (@code{newline-and-indent})
1571Insert a newline, then indent according to mode (@code{newline-and-indent}).
1572@item C-k
1573@kindex 013 @kbd{C-k} (@code{kill-line})
1574Kill the rest of the current line; before a newline, kill the newline.
1575With a numeric argument, kill that many lines from point. Negative arguments
1576kill lines backward (@code{kill-line}).
1577@item C-l
1578@kindex 014 @kbd{C-l} (@code{recenter})
1579Clear the screen and reprint everything (@code{recenter}).
1580@item @var{n} C-p
1581@kindex 020 @kbd{C-p} (@code{previous-line})
1582Move cursor vertically up @var{n} lines (@code{previous-line}).
1583@item C-q
1584@kindex 021 @kbd{C-q} (@code{quoted-insert})
1585Read next input character and insert it. Useful for inserting control
1586characters
1587@*(@code{quoted-insert}).
1588@item C-r
1589@kindex 022 @kbd{C-r} (@code{isearch-backward})
1590Search backward incrementally (@code{isearch-backward}).
1591@item C-s
1592@kindex 023 @kbd{C-s} (@code{isearch-forward})
1593Search forward incrementally (@code{isearch-forward}).
1594@item @var{n} C-t
1595@kindex 024 @kbd{C-t} (@code{transpose-chars})
1596Interchange characters around point, moving forward one character. With
1597count @var{n}, take character before point and drag it forward past @var{n}
1598other characters. If no argument and at end of line, the previous two
1599characters are exchanged (@code{transpose-chars}).
1600@item @var{n} C-v
1601@kindex 026 @kbd{C-v} (@code{scroll-up})
1602Scroll text upward @var{n} lines. If @var{n} is not given, scroll near
1603full screen (@code{scroll-up}).
1604@item C-w
1605@kindex 027 @kbd{C-w} (@code{kill-region})
1606Kill between point and mark. The text is save in the kill ring. The
1607command @kbd{P} or @kbd{p} can retrieve it from kill ring
1608(@code{kill-region}).
1609@end table
1610
1611@node Commands in Insert Mode, Ex Commands, Other Vi Commands, Vi Commands
1612@section Insert Mode
1613
1614You can enter insert mode by one of the following commands. In addition to
1615these, you will enter insert mode if you give a change command with a line
1616command as the motion command. Insert commands are also modifying commands
1617and you can repeat them by the repeat command @kbd{.} (@code{vip-repeat}).
1618
1619@table @kbd
1620@item i
1621@kindex 151 @kbd{i} (@code{vip-insert})
1622Enter insert mode at point (@code{vip-insert}).
1623@item I
1624@kindex 111 @kbd{I} (@code{vip-Insert})
1625Enter insert mode at the first non white character on the line
1626(@code{vip-Insert}).
1627@item a
1628@kindex 141 @kbd{a} (@code{vip-append})
1629Move point forward by one character and then enter insert mode
1630(@code{vip-append}).
1631@item A
1632@kindex 101 @kbd{A} (@code{vip-Append})
1633Enter insert mode at end of line (@code{vip-Append}).
1634@item o
1635@kindex 157 @kbd{o} (@code{vip-open-line})
1636Open a new line below the current line and enter insert mode
1637(@code{vip-open-line}).
1638@item O
1639@kindex 117 @kbd{O} (@code{vip-Open-line})
1640Open a new line above the current line and enter insert mode
1641(@code{vip-Open-line}).
1642@item C-o
1643@kindex 017 @kbd{C-o} (@code{vip-open-line-at-point})
1644Insert a newline and leave point before it, and then enter insert mode
1645@*(@code{vip-open-line-at-point}).
1646@end table
1647
1648Insert mode is almost like emacs mode. Only the following 4 keys behave
1649differently from emacs mode.
1650
1651@table @kbd
1652@item @key{ESC}
1653@kindex 033 @kbd{ESC} (@code{vip-change-mode-to-vi}) (insert mode)
1654This key will take you back to vi mode (@code{vip-change-mode-to-vi}).
1655@item C-h
1656@kindex 010 @kbd{C-h} (@code{delete-backward-char}) (insert mode)
1657Delete previous character (@code{delete-backward-char}).
1658@item C-w
1659@kindex 027 @kbd{C-w} (@code{vip-delete-backward-word}) (insert mode)
1660Delete previous word (@code{vip-delete-backward-word}).
1661@item C-z
1662@kindex 032 @kbd{C-z} (@code{vip-ESC}) (insert mode)
1663This key simulates @key{ESC} key in emacs mode. For instance, typing
1664@kbd{C-z x} in insert mode is the same as typing @kbd{ESC x} in emacs mode
1665(@code{vip-ESC}).
1666@end table
1667@noindent
1668You can also bind @kbd{C-h} to @code{help-command} if you like.
1669(@xref{Customizing Key Bindings}, for details.) Binding @kbd{C-h} to
1670@code{help-command} has the effect of making the meaning of @kbd{C-h}
1671uniform among emacs, vi and insert modes.
1672
1673When you enter insert mode, VIP records point as the start point of
1674insertion, and when you leave insert mode the region between point and
1675start point is saved for later use by repeat command etc. Therefore, repeat
1676command will not really repeat insertion if you move point by emacs
1677commands while in insert mode.
1678
1679@node Ex Commands, Ex Command Reference, Commands in Insert Mode, Top
1680@chapter Ex Commands
1681
1682@kindex 072 @kbd{:} (@code{vip-ex})
1683
1684In vi mode, you can execute an Ex command @var{ex-command} by typing:
1685@example
1686@kbd{:@: @var{ex-command} @key{RET}}
1687@end example
1688Every Ex command follows the following pattern:
1689@example
1690@var{address command} @kbd{!}@: @var{parameters count flags}
1691@end example
1692@noindent
1693@cindex address
1694where all parts are optional. For the syntax of @dfn{address}, the reader
1695is referred to the reference manual of Ex.
1696
1697@cindex magic
1698@cindex regular expression
1699
1700In the current version of VIP, searching by Ex commands is always
1701@dfn{magic}. That is, search patterns are always treated as @dfn{regular
1702expressions}. For example, a typical forward search would be invoked by
1703@kbd{:/@var{pat}/}. If you wish to include @samp{/} as part of
1704@var{pat} you must preceded it by @samp{\}. VIP strips off these @kbd{\}'s
1705before @kbd{/} and the resulting @var{pat} becomes the actual search
1706pattern. Emacs provides a different and richer class or regular
1707expressions than Vi/Ex, and VIP uses Emacs' regular expressions. See GNU
1708Emacs Manual for details of regular expressions.
1709
1710Several Ex commands can be entered in a line by separating them by a pipe
1711character @samp{|}.
1712
1713@menu
1714* Ex Command Reference:: Explain all the Ex commands available in VIP.
1715@end menu
1716@node Ex Command Reference, Customization, Ex Commands, Ex Commands
1717@section Ex Command Reference
1718In this section we briefly explain all the Ex commands supported by VIP.
1719Most Ex commands expect @var{address} as their argument, and they use
1720default addresses if they are not explicitly given. In the following, such
1721default addresses will be shown in parentheses.
1722
1723Most command names can and preferably be given in abbreviated forms. In
1724the following, optional parts of command names will be enclosed in
1725brackets. For example, @samp{co[py]} will mean that copy command can be
1726give as @samp{co} or @samp{cop} or @samp{copy}.
1727
1728If @var{command} is empty, point will move to the beginning of the line
1729specified by the @var{address}. If @var{address} is also empty, point will
1730move to the beginning of the current line.
1731
1732@cindex flag
1733
1734Some commands accept @dfn{flags} which are one of @kbd{p}, @kbd{l} and
1735@kbd{#}. If @var{flags} are given, the text affected by the commands will
1736be displayed on a temporary window, and you will be asked to hit return to
1737continue. In this way, you can see the text affected by the commands
1738before the commands will be executed. If you hit @kbd{C-g} instead of
1739@key{RET} then the commands will be aborted. Note that the meaning of
1740@var{flags} is different in VIP from that in Vi/Ex.
1741
1742@table @kbd
1743@item (.,.@:) co[py] @var{addr} @var{flags}
1744@itemx (.,.@:) t @var{addr} @var{flags}
1745Place a copy of specified lines after @var{addr}. If @var{addr} is
1746@kbd{0}, it will be placed before the first line.
1747@item (.,.@:) d[elete] @var{register} @var{count} @var{flags}
1748Delete specified lines. Text will be saved in a named @var{register} if a
1749lower-case letter is given, and appended to a register if a capital letter is
1750given.
1751@item e[dit] !@: +@var{addr} @var{file}
1752@itemx e[x] !@: +@var{addr} @var{file}
1753@itemx vi[sual] !@: +@var{addr} @var{file}
1754Edit a new file @var{file} in the current window. The command will abort
1755if current buffer is modified, which you can override by giving @kbd{!}.
1756If @kbd{+}@var{addr} is given, @var{addr} becomes the current line.
1757@item file
1758Give information about the current file.
1759@item (1,$) g[lobal] !@: /@var{pat}/ @var{cmds}
1760@itemx (1,$) v /@var{pat}/ @var{cmds}
1761Among specified lines first mark each line which matches the regular
1762expression @var{pat}, and then execute @var{cmds} on each marked line.
1763If @kbd{!}@: is given, @var{cmds} will be executed on each line not matching
1764@var{pat}. @kbd{v} is same as @kbd{g!}.
1765@item (.,.+1) j[oin] !@: @var{count} @var{flags}
1766Join specified lines into a line. Without @kbd{!}, a space character will
1767be inserted at each junction.
1768@item (.@:) k @var{ch}
1769@itemx (.@:) mar[k] @var{ch}
1770Mark specified line by a lower-case character @var{ch}. Then the
1771addressing form @kbd{'}@var{ch} will refer to this line. No white space is
1772required between @kbd{k} and @var{ch}. A white space is necessary between
1773@kbd{mark} and @var{ch}, however.
1774@item map @var{ch} @var{rhs}
1775Define a macro for vi mode. After this command, the character @var{ch}
1776will be expanded to @var{rhs} in vi mode.
1777@item (.,.@:) m[ove] @var{addr}
1778Move specified lines after @var{addr}.
1779@item (.@:) pu[t] @var{register}
1780Put back previously deleted or yanked text. If @var{register} is given,
1781the text saved in the register will be put back; otherwise, last deleted or
1782yanked text will be put back.
1783@item q[uit] !
1784Quit from Emacs. If modified buffers with associated files exist, you will
1785be asked whether you wish to save each of them. At this point, you may
1786choose not to quit, by hitting @kbd{C-g}. If @kbd{!}@: is given, exit from
1787Emacs without saving modified buffers.
1788@item (.@:) r[ead] @var{file}
1789Read in the content of the file @var{file} after the specified line.
1790@item (.@:) r[ead] !@: @var{command}
1791Read in the output of the shell command @var{command} after the specified
1792line.
1793@item se[t]
1794Set a variable's value. @xref{Customizing Constants}, for the list of variables
1795you can set.
1796@item sh[ell]
1797Run a subshell in a window.
1798@item (.,.@:) s[ubstitute] /@var{pat}/@var{repl}/ @var{options} @var{count} @var{flags}
1799@itemx (.,.@:) & @var{options} @var{count} @var{flags}
1800On each specified line, the first occurrence of string matching regular
1801expression @var{pat} is replaced by replacement pattern @var{repl}. Option
1802characters are @kbd{g} and @kbd{c}. If global option character @kbd{g}
1803appears as part of @var{options}, all occurrences are substituted. If
1804confirm option character @kbd{c} appears, you will be asked to give
1805confirmation before each substitution. If @kbd{/@var{pat}/@var{repl}/} is
1806missing, the last substitution is repeated.
1807@item st[op]
1808Suspend Emacs.
1809@item ta[g] @var{tag}
1810@cindex tag
1811@cindex selected tags table
1812Find first definition of @var{tag}. If no @var{tag} is given, previously
1813given @var{tag} is used and next alternate definition is find. By default,
1814the file @file{TAGS} in the current directory becomes the @dfn{selected tags
1815table}. You can select another tags table by @kbd{set} command.
1816@xref{Customizing Constants}, for details.
1817@item und[o]
1818Undo the last change.
1819@item unm[ap] @var{ch}
1820The macro expansion associated with @var{ch} is removed.
1821@item ve[rsion]
1822Tell the version number of VIP.
1823@item (1,$) w[rite] !@: @var{file}
1824Write out specified lines into file @var{file}. If no @var{file} is given,
1825text will be written to the file associated to the current buffer. Unless
1826@kbd{!}@: is given, if @var{file} is different from the file associated to
1827the current buffer and if the file @var{file} exists, the command will not
1828be executed. Unlike Ex, @var{file} becomes the file associated to the
1829current buffer.
1830@item (1,$) w[rite]>> @var{file}
1831Write out specified lines at the end of file @var{file}. @var{file}
1832becomes the file associated to the current buffer.
1833@item (1,$) wq !@: @var{file}
1834Same as @kbd{write} and then @kbd{quit}. If @kbd{!}@: is given, same as
1835@kbd{write !}@: then @kbd{quit}.
1836@item (.,.) y[ank] @var{register} @var{count}
1837Save specified lines into register @var{register}. If no register is
1838specified, text will be saved in an anonymous register.
1839@item @var{addr} !@: @var{command}
1840Execute shell command @var{command}. The output will be shown in a new
1841window. If @var{addr} is given, specified lines will be used as standard
1842input to @var{command}.
1843@item ($) =
1844Print the line number of the addressed line.
1845@item (.,.) > @var{count} @var{flags}
1846Shift specified lines to the right. The variable @code{vip-shift-width}
1847(default value is 8) determines the amount of shift.
1848@item (.,.) < @var{count} @var{flags}
1849Shift specified lines to the left. The variable @code{vip-shift-width}
1850(default value is 8) determines the amount of shift.
1851@item (.,.@:) ~ @var{options} @var{count} @var{flags}
1852Repeat the previous @kbd{substitute} command using previous search pattern
1853as @var{pat} for matching.
1854@end table
1855
1856The following Ex commands are available in Vi, but not implemented in VIP.
1857@example
1858@kbd{abbreviate}, @kbd{list}, @kbd{next}, @kbd{print}, @kbd{preserve}, @kbd{recover}, @kbd{rewind}, @kbd{source},
1859@kbd{unabbreviate}, @kbd{xit}, @kbd{z}
1860@end example
1861
1862@node Customization, Customizing Constants, Ex Command Reference, Top
1863@chapter Customization
1864
1865If you have a file called @file{.vip} in your home directory, then it
1866will also be loaded when VIP is loaded. This file is thus useful for
1867customizing VIP.
1868
1869@menu
1870* Customizing Constants:: How to change values of constants.
1871* Customizing Key Bindings:: How to change key bindings.
1872@end menu
1873
1874@node Customizing Constants, Customizing Key Bindings, Customization, Customization
1875@section Customizing Constants
1876An easy way to customize VIP is to change the values of constants used
1877in VIP. Here is the list of the constants used in VIP and their default
1878values.
1879
1880@table @code
1881@item vip-shift-width 8
1882The number of columns shifted by @kbd{>} and @kbd{<} command.
1883@item vip-re-replace nil
1884If @code{t} then do regexp replace, if @code{nil} then do string replace.
1885@item vip-search-wrap-around t
1886If @code{t}, search wraps around the buffer.
1887@item vip-re-search nil
1888If @code{t} then search is reg-exp search, if @code{nil} then vanilla
1889search.
1890@item vip-case-fold-search nil
1891If @code{t} search ignores cases.
1892@item vip-re-query-replace nil
1893If @code{t} then do reg-exp replace in query replace.
1894@item vip-open-with-indent nil
1895If @code{t} then indent to the previous current line when open a new line
1896by @kbd{o} or @kbd{O} command.
1897@item vip-tags-file-name "TAGS"
1898The name of the file used as the tags table.
1899@item vip-help-in-insert-mode nil
1900If @code{t} then @key{C-h} is bound to @code{help-command} in insert mode,
1901if @code{nil} then it sis bound to @code{delete-backward-char}.
1902@end table
1903@noindent
1904You can reset these constants in VIP by the Ex command @kbd{set}. Or you
1905can include a line like this in your @file{.vip} file:
1906@example
1907(setq vip-case-fold-search t)
1908@end example
1909
1910@node Customizing Key Bindings,, Customizing Constants, Customization
1911@section Customizing Key Bindings
1912
1913@cindex local keymap
1914
1915VIP uses @code{vip-command-mode-map} as the @dfn{local keymap} for vi mode.
1916For example, in vi mode, @key{SPC} is bound to the function
1917@code{vip-scroll}. But, if you wish to make @key{SPC} and some other keys
1918 behave like Vi, you can include the following lines in your @file{.vip}
1919file.
1920
1921@example
1922(define-key vip-command-mode-map "\C-g" 'vip-info-on-file)
1923(define-key vip-command-mode-map "\C-h" 'vip-backward-char)
1924(define-key vip-command-mode-map "\C-m" 'vip-next-line-at-bol)
1925(define-key vip-command-mode-map " " 'vip-forward-char)
1926(define-key vip-command-mode-map "g" 'vip-keyboard-quit)
1927(define-key vip-command-mode-map "s" 'vip-substitute)
1928(define-key vip-command-mode-map "C" 'vip-change-to-eol)
1929(define-key vip-command-mode-map "R" 'vip-change-to-eol)
1930(define-key vip-command-mode-map "S" 'vip-substitute-line)
1931(define-key vip-command-mode-map "X" 'vip-delete-backward-char)
1932@end example
1933
1934@node GNU Free Documentation License,,, Top
1935@appendix GNU Free Documentation License
1936@include doclicense.texi
1937
1938
1939@unnumbered Key Index
1940
1941@printindex ky
1942
1943@unnumbered Concept Index
1944@printindex cp
1945
1946@setchapternewpage odd
1947@contents
1948@bye
1949
1950@ignore
1951 arch-tag: 7c5d17b9-1d21-4261-a88a-b9fdbbf1020b
1952@end ignore