blob: 8389fe5a3a61e3d4fd9882f8b1a1c6777cbb9606 [file] [log] [blame]
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001*insert.txt* For Vim version 7.0aa. Last change: 2005 Jul 29
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7 *Insert* *Insert-mode*
8Inserting and replacing text *mode-ins-repl*
9
10Most of this file is about Insert and Replace mode. At the end are a few
11commands for inserting text in other ways.
12
13An overview of the most often used commands can be found in chapter 24 of the
14user manual |usr_24.txt|.
15
161. Special keys |ins-special-keys|
172. Special special keys |ins-special-special|
183. 'textwidth' and 'wrapmargin' options |ins-textwidth|
194. 'expandtab', 'smarttab' and 'softtabstop' options |ins-expandtab|
205. Replace mode |Replace-mode|
216. Virtual Replace mode |Virtual-Replace-mode|
227. Insert mode completion |ins-completion|
238. Insert mode commands |inserting|
249. Ex insert commands |inserting-ex|
2510. Inserting a file |inserting-file|
26
27Also see 'virtualedit', for moving the cursor to positions where there is no
28character. Useful for editing a table.
29
30==============================================================================
311. Special keys *ins-special-keys*
32
33In Insert and Replace mode, the following characters have a special meaning;
34other characters are inserted directly. To insert one of these special
35characters into the buffer, precede it with CTRL-V. To insert a <Nul>
36character use "CTRL-V CTRL-@" or "CTRL-V 000". On some systems, you have to
37use "CTRL-V 003" to insert a CTRL-C. Note: When CTRL-V is mapped you can
38often use CTRL-Q instead |i_CTRL-Q|.
39
40If you are working in a special language mode when inserting text, see the
41'langmap' option, |'langmap'|, on how to avoid switching this mode on and off
42all the time.
43
44If you have 'insertmode' set, <Esc> and a few other keys get another meaning.
45See |'insertmode'|.
46
47char action ~
48-----------------------------------------------------------------------
49 *i_CTRL-[* *i_<Esc>*
50<Esc> or CTRL-[ End insert or Replace mode, go back to Normal mode. Finish
51 abbreviation.
52 Note: If your <Esc> key is hard to hit on your keyboard, train
53 yourself to use CTRL-[.
54 *i_CTRL-C*
55CTRL-C Quit insert mode, go back to Normal mode. Do not check for
Bram Moolenaar677ee682005-01-27 14:41:15 +000056 abbreviations. Does not trigger the |InsertLeave| autocommand
57 event.
Bram Moolenaar071d4272004-06-13 20:20:40 +000058
59 *i_CTRL-@*
60CTRL-@ Insert previously inserted text and stop insert. {Vi: only
61 when typed as first char, only up to 128 chars}
62 *i_CTRL-A*
63CTRL-A Insert previously inserted text. {not in Vi}
64
65 *i_CTRL-H* *i_<BS>* *i_BS*
66<BS> or CTRL-H Delete the character before the cursor (see |i_backspacing|
67 about joining lines).
68 See |:fixdel| if your <BS> key does not do what you want.
69 {Vi: does not delete autoindents}
70 *i_<Del>* *i_DEL*
71<Del> Delete the character under the cursor. If the cursor is at
72 the end of the line, and the 'backspace' option includes
73 "eol", delete the <EOL>; the next line is appended after the
74 current one.
75 See |:fixdel| if your <Del> key does not do what you want.
76 {not in Vi}
77 *i_CTRL-W*
78CTRL-W Delete the word before the cursor (see |i_backspacing| about
79 joining lines). See the section "word motions",
80 |word-motions|, for the definition of a word.
81 *i_CTRL-U*
82CTRL-U Delete all entered characters in the current line (see
83 |i_backspacing| about joining lines).
84
85 *i_CTRL-I* *i_<Tab>* *i_Tab*
86<Tab> or CTRL-I Insert a tab. If the 'expandtab' option is on, the
87 equivalent number of spaces is inserted (use CTRL-V <Tab> to
88 avoid the expansion; use CTRL-Q <Tab> if CTRL-V is mapped
89 |i_CTRL-Q|). See also the 'smarttab' option and
90 |ins-expandtab|.
91 *i_CTRL-J* *i_<NL>*
92<NL> or CTRL-J Begin new line.
93 *i_CTRL-M* *i_<CR>*
94<CR> or CTRL-M Begin new line.
95 *i_CTRL-K*
96CTRL-K {char1} [char2]
97 Enter digraph (see |digraphs|). When {char1} is a special
98 key, the code for that key is inserted in <> form. For
99 example, the string "<S-Space>" can be entered by typing
100 <C-K><S-Space> (two keys). Neither char is considered for
101 mapping. {not in Vi}
102
103CTRL-N Find next keyword (see |i_CTRL-N|). {not in Vi}
104CTRL-P Find previous keyword (see |i_CTRL-P|). {not in Vi}
105
106CTRL-R {0-9a-z"%#*+:.-=} *i_CTRL-R*
107 Insert the contents of a register. Between typing CTRL-R and
108 the second character, '"' will be displayed to indicate that
109 you are expected to enter the name of a register.
110 The text is inserted as if you typed it, but mappings and
111 abbreviations are not used. If you have options like
112 'textwidth', 'formatoptions', or 'autoindent' set, this will
113 influence what will be inserted. This is different from what
114 happens with the "p" command and pasting with the mouse.
115 Special registers:
116 '"' the unnamed register, containing the text of
117 the last delete or yank
118 '%' the current file name
119 '#' the alternate file name
120 '*' the clipboard contents (X11: primary selection)
121 '+' the clipboard contents
122 '/' the last search pattern
123 ':' the last command-line
124 '.' the last inserted text
125 '-' the last small (less than a line) delete
126 '=' the expression register: you are prompted to
127 enter an expression (see |expression|)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000128 Note that 0x80 (128 decimal) is used for
129 special keys, use CTRL-R CTRL-R to insert it
130 literally.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 See |registers| about registers. {not in Vi}
132
133CTRL-R CTRL-R {0-9a-z"%#*+/:.-=} *i_CTRL-R_CTRL-R*
134 Insert the contents of a register. Works like using a single
135 CTRL-R, but the text is inserted literally, not as if typed.
136 This differs when the register contains characters like <BS>.
137 Example, where register a contains "ab^Hc": >
138 CTRL-R a results in "ac".
139 CTRL-R CTRL-R a results in "ab^Hc".
140< Options 'textwidth', 'formatoptions', etc. still apply. If
141 you also want to avoid these, use "<C-R><C-O>r", see below.
142 The '.' register (last inserted text) is still inserted as
143 typed. {not in Vi}
144
145CTRL-R CTRL-O {0-9a-z"%#*+/:.-=} *i_CTRL-R_CTRL-O*
146 Insert the contents of a register literally and don't
147 auto-indent. Does the same as pasting with the mouse
148 |<MiddleMouse>|.
149 Does not replace characters!
150 The '.' register (last inserted text) is still inserted as
151 typed. {not in Vi}
152
153CTRL-R CTRL-P {0-9a-z"%#*+/:.-=} *i_CTRL-R_CTRL-P*
154 Insert the contents of a register literally and fix the
155 indent, like |[<MiddleMouse>|.
156 Does not replace characters!
157 The '.' register (last inserted text) is still inserted as
158 typed. {not in Vi}
159
160 *i_CTRL-T*
161CTRL-T Insert one shiftwidth of indent at the start of the current
162 line. The indent is always rounded to a 'shiftwidth' (this is
163 vi compatible). {Vi: only when in indent}
164 *i_CTRL-D*
165CTRL-D Delete one shiftwidth of indent at the start of the current
166 line. The indent is always rounded to a 'shiftwidth' (this is
167 vi compatible). {Vi: CTRL-D works only when used after
168 autoindent}
169 *i_0_CTRL-D*
1700 CTRL-D Delete all indent in the current line. {Vi: CTRL-D works
171 only when used after autoindent}
172 *i_^_CTRL-D*
173^ CTRL-D Delete all indent in the current line. The indent is
174 restored in the next line. This is useful when inserting a
175 label. {Vi: CTRL-D works only when used after autoindent}
176
177 *i_CTRL-V*
178CTRL-V Insert next non-digit literally. For special keys, the
179 terminal code is inserted. It's also possible to enter the
180 decimal, octal or hexadecimal value of a character
181 |i_CTRL-V_digit|.
182 The characters typed right after CTRL-V are not considered for
183 mapping. {Vi: no decimal byte entry}
184 Note: When CTRL-V is mapped (e.g., to paste text) you can
185 often use CTRL-Q instead |i_CTRL-Q|.
186
187 *i_CTRL-Q*
188CTRL-Q Same as CTRL-V.
189 Note: Some terminal connections may eat CTRL-Q, it doesn't
190 work then. It does work in the GUI.
191
192CTRL-X Enter CTRL-X mode. This is a sub-mode where commands can
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000193 be given to complete words or scroll the window. See
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 |i_CTRL-X| and |ins-completion|. {not in Vi}
195
196 *i_CTRL-E*
197CTRL-E Insert the character which is below the cursor. {not in Vi}
198 *i_CTRL-Y*
199CTRL-Y Insert the character which is above the cursor. {not in Vi}
200 Note that for CTRL-E and CTRL-Y 'textwidth' is not used, to be
201 able to copy characters from a long line.
202
203 *i_CTRL-_*
204CTRL-_ Switch between languages, as follows:
205 - When in a rightleft window, revins and nohkmap are toggled,
206 since English will likely be inserted in this case.
207 - When in a norightleft window, revins and hkmap are toggled,
208 since Hebrew will likely be inserted in this case.
209
210 CTRL-_ moves the cursor to the end of the typed text.
211
212 This command is only available when the 'allowrevins' option
213 is set.
214 Please refer to |rileft.txt| for more information about
215 right-to-left mode.
216 {not in Vi}
217 Only if compiled with the |+rightleft| feature (which is not
218 the default).
219 *i_CTRL-^*
220CTRL-^ Toggle the use of typing language characters.
221 When language |:lmap| mappings are defined:
222 - If 'iminsert' is 1 (langmap mappings used) it becomes 0 (no
223 langmap mappings used).
224 - If 'iminsert' has another value it becomes 1, thus langmap
225 mappings are enabled.
226 When no language mappings are defined:
227 - If 'iminsert' is 2 (Input Method used) it becomes 0 (no
228 Input Method used).
229 - If 'iminsert' has another value it becomes 2, thus the Input
230 Method is enabled.
231 When set to 1, the value of the "b:keymap_name" variable, the
232 'keymap' option or "<lang>" appears in the status line.
233 The language mappings are normally used to type characters
234 that are different from what the keyboard produces. The
235 'keymap' option can be used to install a whole number of them.
236 {not in Vi}
237
238 *i_CTRL-]*
239CTRL-] Trigger abbreviation, without inserting a character. {not in
240 Vi}
241
242 *i_<Insert>*
243<Insert> Toggle between Insert and Replace mode. {not in Vi}
244-----------------------------------------------------------------------
245
246 *i_backspacing*
247The effect of the <BS>, CTRL-W, and CTRL-U depend on the 'backspace' option
248(unless 'revins' is set). This is a comma separated list of items:
249
250item action ~
251indent allow backspacing over autoindent
252eol allow backspacing over end-of-line (join lines)
253start allow backspacing over the start position of insert; CTRL-W and
254 CTRL-U stop once at the start position
255
256When 'backspace' is empty, Vi compatible backspacing is used. You cannot
257backspace over autoindent, before column 1 or before where insert started.
258
259For backwards compatibility the values "0", "1" and "2" are also allowed, see
260|'backspace'|.
261
262If the 'backspace' option does contain "eol" and the cursor is in column 1
263when one of the three keys is used, the current line is joined with the
264previous line. This effectively deletes the <EOL> in front of the cursor.
265{Vi: does not cross lines, does not delete past start position of insert}
266
267 *i_CTRL-V_digit*
268With CTRL-V the decimal, octal or hexadecimal value of a character can be
269entered directly. This way you can enter any character, except a line break
270(<NL>, value 10). There are five ways to enter the character value:
271
272first char mode max nr of chars max value ~
273(none) decimal 3 255
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000274o or O octal 3 377 (255)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275x or X hexadecimal 2 ff (255)
276u hexadecimal 4 ffff (65535)
277U hexadecimal 8 7fffffff (2147483647)
278
279Normally you would type the maximum number of characters. Thus to enter a
280space (value 32) you would type <C-V>032. You can omit the leading zero, in
281which case the character typed after the number must be a non-digit. This
282happens for the other modes as well: As soon as you type a character that is
283invalid for the mode, the value before it will be used and the "invalid"
284character is dealt with in the normal way.
285
286If you enter a value of 10, it will end up in the file as a 0. The 10 is a
287<NL>, which is used internally to represent the <Nul> character. When writing
288the buffer to a file, the <NL> character is translated into <Nul>. The <NL>
289character is written at the end of each line. Thus if you want to insert a
290<NL> character in a file you will have to make a line break.
291
292 *i_CTRL-X* *insert_expand*
293CTRL-X enters a sub-mode where several commands can be used. Most of these
294commands do keyword completion; see |ins-completion|. These are not available
295when Vim was compiled without the |+insert_expand| feature.
296
297Two commands can be used to scroll the window up or down, without exiting
298insert mode:
299
300 *i_CTRL-X_CTRL-E*
301CTRL-X CTRL-E scroll window one line up.
302
303 *i_CTRL-X_CTRL-Y*
304CTRL-X CTRL-Y scroll window one line down.
305
306After CTRL-X is pressed, each CTRL-E (CTRL-Y) scrolls the window up (down) by
307one line unless that would cause the cursor to move from its current position
308in the file. As soon as another key is pressed, CTRL-X mode is exited and
309that key is interpreted as in Insert mode.
310
311
312==============================================================================
3132. Special special keys *ins-special-special*
314
315The following keys are special. They stop the current insert, do something,
316and then restart insertion. This means you can do something without getting
317out of Insert mode. This is very handy if you prefer to use the Insert mode
318all the time, just like editors that don't have a separate Normal mode. You
319may also want to set the 'backspace' option to "indent,eol,start" and set the
320'insertmode' option. You can use CTRL-O if you want to map a function key to
321a command.
322
323The changes (inserted or deleted characters) before and after these keys can
324be undone separately. Only the last change can be redone and always behaves
325like an "i" command.
326
327char action ~
328-----------------------------------------------------------------------
329<Up> cursor one line up *i_<Up>*
330<Down> cursor one line down *i_<Down>*
331CTRL-G <Up> cursor one line up, insert start column *i_CTRL-G_<Up>*
332CTRL-G k cursor one line up, insert start column *i_CTRL-G_k*
333CTRL-G CTRL-K cursor one line up, insert start column *i_CTRL-G_CTRL-K*
334CTRL-G <Down> cursor one line down, insert start column *i_CTRL-G_<Down>*
335CTRL-G j cursor one line down, insert start column *i_CTRL-G_j*
336CTRL-G CTRL-J cursor one line down, insert start column *i_CTRL-G_CTRL-J*
337<Left> cursor one character left *i_<Left>*
338<Right> cursor one character right *i_<Right>*
339<S-Left> cursor one word back (like "b" command) *i_<S-Left>*
340<C-Left> cursor one word back (like "b" command) *i_<C-Left>*
341<S-Right> cursor one word forward (like "w" command) *i_<S-Right>*
342<C-Right> cursor one word forward (like "w" command) *i_<C-Right>*
343<Home> cursor to first char in the line *i_<Home>*
344<End> cursor to after last char in the line *i_<End>*
345<C-Home> cursor to first char in the file *i_<C-Home>*
346<C-End> cursor to after last char in the file *i_<C-End>*
347<LeftMouse> cursor to position of mouse click *i_<LeftMouse>*
348<S-Up> move window one page up *i_<S-Up>*
349<PageUp> move window one page up *i_<PageUp>*
350<S-Down> move window one page down *i_<S-Down>*
351<PageDown> move window one page down *i_<PageDown>*
352<MouseDown> scroll three lines down *i_<MouseDown>*
353<S-MouseDown> scroll a full page down *i_<S-MouseDown>*
354<MouseUp> scroll three lines up *i_<MouseUp>*
355<S-MouseUp> scroll a full page up *i_<S-MouseUp>*
356CTRL-O execute one command, return to Insert mode *i_CTRL-O*
357CTRL-G u break undo sequence, start new change *i_CTRL-G_u*
358-----------------------------------------------------------------------
359
360Note: If the cursor keys take you out of Insert mode, check the 'noesckeys'
361option.
362
363The CTRL-O command sometimes has a side effect: If the cursor was beyond the
364end of the line, it will be put on the last character in the line. In
365mappings it's often better to use <Esc> (first put an "x" in the text, <Esc>
366will then always put the cursor on it).
367
368The shifted cursor keys are not available on all terminals.
369
370Another side effect is that a count specified before the "i" or "a" command is
371ignored. That is because repeating the effect of the command after CTRL-O is
372too complicated.
373
374An example for using CTRL-G u: >
375
376 :inoremap <C-H> <C-G>u<C-H>
377
378This redefines the backspace key to start a new undo sequence. You can now
379undo the effect of the backspace key, without changing what you typed before
380that, with CTRL-O u.
381
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000382Using CTRL-O splits undo: the text typed before and after it is undone
383separately. If you want to avoid this (e.g., in a mapping) you might be able
384to use CTRL-R = |i_CTRL-R|. E.g., to call a function: >
385 :imap <F2> <C-R>=MyFunc()<CR>
386
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387When the 'whichwrap' option is set appropriately, the <Left> and <Right>
388keys on the first/last character in the line make the cursor wrap to the
389previous/next line.
390
391The CTRL-G j and CTRL-G k commands can be used to insert text in front of a
392column. Example: >
393 int i;
394 int j;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000395Position the cursor on the first "int", type "istatic <C-G>j ". The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396result is: >
397 static int i;
398 int j;
399When inserting the same text in front of the column in every line, use the
400Visual blockwise command "I" |v_b_I|.
401
402==============================================================================
4033. 'textwidth' and 'wrapmargin' options *ins-textwidth*
404
405The 'textwidth' option can be used to automatically break a line before it
406gets too long. Set the 'textwidth' option to the desired maximum line
407length. If you then type more characters (not spaces or tabs), the
408last word will be put on a new line (unless it is the only word on the
409line). If you set 'textwidth' to 0, this feature is disabled.
410
411The 'wrapmargin' option does almost the same. The difference is that
412'textwidth' has a fixed width while 'wrapmargin' depends on the width of the
413screen. When using 'wrapmargin' this is equal to using 'textwidth' with a
414value equal to (columns - 'wrapmargin'), where columns is the width of the
415screen.
416
417When 'textwidth' and 'wrapmargin' are both set, 'textwidth' is used.
418
419If you don't really want to break the line, but view the line wrapped at a
420convenient place, see the 'linebreak' option.
421
422The line is only broken automatically when using insert mode, or when
423appending to a line. When in replace mode and the line length is not
424changed, the line will not be broken.
425
426Long lines are broken if you enter a non-white character after the margin.
427The situations where a line will be broken can be restricted by adding
428characters to the 'formatoptions' option:
429"l" Only break a line if it was not longer than 'textwidth' when the insert
430 started.
431"v" Only break at a white character that has been entered during the
432 current insert command. This is mostly Vi-compatible.
433"lv" Only break if the line was not longer than 'textwidth' when the insert
434 started and only at a white character that has been entered during the
435 current insert command. Only differs from "l" when entering non-white
436 characters while crossing the 'textwidth' boundary.
437
438If you want to format a block of text, you can use the "gq" operator. Type
439"gq" and a movement command to move the cursor to the end of the block. In
440many cases, the command "gq}" will do what you want (format until the end of
441paragraph). Alternatively, you can use "gqap", which will format the whole
442paragraph, no matter where the cursor currently is. Or you can use Visual
443mode: hit "v", move to the end of the block, and type "gq". See also |gq|.
444
445==============================================================================
4464. 'expandtab', 'smarttab' and 'softtabstop' options *ins-expandtab*
447
448If the 'expandtab' option is on, spaces will be used to fill the amount of
449whitespace of the tab. If you want to enter a real <Tab>, type CTRL-V first
450(use CTRL-Q when CTRL-V is mapped |i_CTRL-Q|).
451The 'expandtab' option is off by default. Note that in Replace mode, a single
452character is replaced with several spaces. The result of this is that the
453number of characters in the line increases. Backspacing will delete one
454space at a time. The original character will be put back for only one space
455that you backspace over (the last one). {Vi does not have the 'expandtab'
456option}
457
458 *ins-smarttab*
459When the 'smarttab' option is on, a <Tab> inserts 'shiftwidth' positions at
460the beginning of a line and 'tabstop' positions in other places. This means
461that often spaces instead of a <Tab> character are inserted. When 'smarttab
462is off, a <Tab> always inserts 'tabstop' positions, and 'shiftwidth' is only
463used for ">>" and the like. {not in Vi}
464
465 *ins-softtabstop*
466When the 'softtabstop' option is non-zero, a <Tab> inserts 'softtabstop'
467positions, and a <BS> used to delete white space, will delete 'softtabstop'
468positions. This feels like 'tabstop' was set to 'softtabstop', but a real
469<Tab> character still takes 'tabstop' positions, so your file will still look
470correct when used by other applications.
471
472If 'softtabstop' is non-zero, a <BS> will try to delete as much white space to
473move to the previous 'softtabstop' position, except when the previously
474inserted character is a space, then it will only delete the character before
475the cursor. Otherwise you cannot always delete a single character before the
476cursor. You will have to delete 'softtabstop' characters first, and then type
477extra spaces to get where you want to be.
478
479==============================================================================
4805. Replace mode *Replace* *Replace-mode* *mode-replace*
481
482Enter Replace mode with the "R" command in normal mode.
483
484In Replace mode, one character in the line is deleted for every character you
485type. If there is no character to delete (at the end of the line), the
486typed character is appended (as in Insert mode). Thus the number of
487characters in a line stays the same until you get to the end of the line.
488If a <NL> is typed, a line break is inserted and no character is deleted.
489
490Be careful with <Tab> characters. If you type a normal printing character in
491its place, the number of characters is still the same, but the number of
492columns will become smaller.
493
494If you delete characters in Replace mode (with <BS>, CTRL-W, or CTRL-U), what
495happens is that you delete the changes. The characters that were replaced
496are restored. If you had typed past the existing text, the characters you
497added are deleted. This is effectively a character-at-a-time undo.
498
499If the 'expandtab' option is on, a <Tab> will replace one character with
500several spaces. The result of this is that the number of characters in the
501line increases. Backspacing will delete one space at a time. The original
502character will be put back for only one space that you backspace over (the
503last one). {Vi does not have the 'expandtab' option}
504
505==============================================================================
5066. Virtual Replace mode *vreplace-mode* *Virtual-Replace-mode*
507
508Enter Virtual Replace mode with the "gR" command in normal mode.
509{not available when compiled without the +vreplace feature}
510{Vi does not have Virtual Replace mode}
511
512Virtual Replace mode is similar to Replace mode, but instead of replacing
513actual characters in the file, you are replacing screen real estate, so that
514characters further on in the file never appear to move.
515
516So if you type a <Tab> it may replace several normal characters, and if you
517type a letter on top of a <Tab> it may not replace anything at all, since the
518<Tab> will still line up to the same place as before.
519
520Typing a <NL> still doesn't cause characters later in the file to appear to
521move. The rest of the current line will be replaced by the <NL> (that is,
522they are deleted), and replacing continues on the next line. A new line is
523NOT inserted unless you go past the end of the file.
524
525Interesting effects are seen when using CTRL-T and CTRL-D. The characters
526before the cursor are shifted sideways as normal, but characters later in the
527line still remain still. CTRL-T will hide some of the old line under the
528shifted characters, but CTRL-D will reveal them again.
529
530As with Replace mode, using <BS> etc will bring back the characters that were
531replaced. This still works in conjunction with 'smartindent', CTRL-T and
532CTRL-D, 'expandtab', 'smarttab', 'softtabstop', etc.
533
534In 'list' mode, Virtual Replace mode acts as if it was not in 'list' mode,
535unless "L" is in 'cpoptions'.
536
537Note that the only times characters beyond the cursor should appear to move
538are in 'list' mode, and occasionally when 'wrap' is set (and the line changes
539length to become shorter or wider than the width of the screen), or
540momentarily when typing over a CTRL character. A CTRL character takes up two
541screen spaces. When replacing it with two normal characters, the first will
542be inserted and the second will replace the CTRL character.
543
544This mode is very useful for editing <Tab> separated columns in tables, for
545entering new data while keeping all the columns aligned.
546
547==============================================================================
5487. Insert mode completion *ins-completion*
549
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000550In Insert and Replace mode, there are several commands to complete part of a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551keyword or line that has been typed. This is useful if you are using
552complicated keywords (e.g., function names with capitals and underscores).
553
554These commands are not available when the |+insert_expand| feature was
555disabled at compile time.
556
557Completion can be done for:
558
5591. Whole lines |i_CTRL-X_CTRL-L|
5602. keywords in the current file |i_CTRL-X_CTRL-N|
5613. keywords in 'dictionary' |i_CTRL-X_CTRL-K|
5624. keywords in 'thesaurus', thesaurus-style |i_CTRL-X_CTRL-T|
5635. keywords in the current and included files |i_CTRL-X_CTRL-I|
5646. tags |i_CTRL-X_CTRL-]|
5657. file names |i_CTRL-X_CTRL-F|
5668. definitions or macros |i_CTRL-X_CTRL-D|
5679. Vim command-line |i_CTRL-X_CTRL-V|
Bram Moolenaar4be06f92005-07-29 22:36:03 +000056810. User defined completion |i_CTRL-X_CTRL-U|
56911. Occult completion |i_CTRL-X_CTRL-O|
57012. keywords in 'complete' |i_CTRL-N|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571
572All these (except 2) are done in CTRL-X mode. This is a sub-mode of Insert
573and Replace modes. You enter CTRL-X mode by typing CTRL-X and one of the
574CTRL-X commands. You exit CTRL-X mode by typing a key that is not a valid
575CTRL-X mode command. Valid keys are the CTRL-X command itself, CTRL-N (next),
576and CTRL-P (previous).
577
578Also see the 'infercase' option if you want to adjust the case of the match.
579
580Note: The keys that are valid in CTRL-X mode are not mapped. This allows for
581":map ^F ^X^F" to work (where ^F is CTRL-F and ^X is CTRL-X). The key that
582ends CTRL-X mode (any key that is not a valid CTRL-X mode command) is mapped.
583Also, when doing completion with 'complete' mappings apply as usual.
584
585The following mappings are suggested to make typing the completion commands
586a bit easier (although they will hide other commands): >
587 :inoremap ^] ^X^]
588 :inoremap ^F ^X^F
589 :inoremap ^D ^X^D
590 :inoremap ^L ^X^L
591
592As a special case, typing CTRL-R to perform register insertion (see
593|i_CTRL-R|) will not exit CTRL-X mode. This is primarily to allow the use of
594the '=' register to call some function to determine the next operation. If
595the contents of the register (or result of the '=' register evaluation) are
596not valid CTRL-X mode keys, then CTRL-X mode will be exited as if those keys
597had been typed.
598
599For example, the following will map <Tab> to either actually insert a <Tab> if
600the current line is currently only whitespace, or start/continue a CTRL-N
601completion operation: >
602
603 function! CleverTab()
604 if strpart( getline('.'), 0, col('.')-1 ) =~ '^\s*$'
605 return "\<Tab>"
606 else
607 return "\<C-N>"
608 endfunction
609 inoremap <Tab> <C-R>=CleverTab()<CR>
610
611
612
613Completing whole lines *compl-whole-line*
614
615 *i_CTRL-X_CTRL-L*
616CTRL-X CTRL-L Search backwards for a line that starts with the
617 same characters as in the current line before the
618 cursor. Indent is ignored. The found line is
619 inserted in front of the cursor.
620 The 'complete' option is used to decide in which
621 buffers a match is searched for. But only loaded
622 buffers are used.
623 CTRL-L or
624 CTRL-P Search backwards for next matching line. This line
625 replaces the previous matching line.
626
627 CTRL-N Search forward for next matching line. This line
628 replaces the previous matching line.
629
630 CTRL-X CTRL-L After expanding a line you can additionally get the
631 line next to it by typing CTRL-X CTRL-L again, unless
632 a double CTRL-X is used.
633
634Completing keywords in current file *compl-current*
635
636 *i_CTRL-X_CTRL-P*
637 *i_CTRL-X_CTRL-N*
638CTRL-X CTRL-N Search forwards for words that start with the keyword
639 in front of the cursor. The found keyword is inserted
640 in front of the cursor.
641
642CTRL-X CTRL-P Search backwards for words that start with the keyword
643 in front of the cursor. The found keyword is inserted
644 in front of the cursor.
645
646 CTRL-N Search forward for next matching keyword. This
647 keyword replaces the previous matching keyword.
648
649 CTRL-P Search backwards for next matching keyword. This
650 keyword replaces the previous matching keyword.
651
652 CTRL-X CTRL-N or
653 CTRL-X CTRL-P Further use of CTRL-X CTRL-N or CTRL-X CTRL-P will
654 copy the words following the previous expansion in
655 other contexts unless a double CTRL-X is used.
656
657If there is a keyword in front of the cursor (a name made out of alphabetic
658characters and characters in 'iskeyword'), it is used as the search pattern,
659with "\<" prepended (meaning: start of a word). Otherwise "\<\k\k" is used
660as search pattern (start of any keyword of at least two characters).
661
662In Replace mode, the number of characters that are replaced depends on the
663length of the matched string. This works like typing the characters of the
664matched string in Replace mode.
665
666If there is not a valid keyword character before the cursor, any keyword of
667at least two characters is matched.
668 e.g., to get:
669 printf("(%g, %g, %g)", vector[0], vector[1], vector[2]);
670 just type:
671 printf("(%g, %g, %g)", vector[0], ^P[1], ^P[2]);
672
673Multiple repeats of the same completion are skipped; thus a different match
674will be inserted at each CTRL-N and CTRL-P (unless there is only one
675matching keyword).
676
677Single character matches are never included, as they usually just get in
678the way of what you were really after.
679 e.g., to get:
680 printf("name = %s\n", name);
681 just type:
682 printf("name = %s\n", n^P);
683 or even:
684 printf("name = %s\n", ^P);
685The 'n' in '\n' is skipped.
686
687After expanding a word, you can use CTRL-X CTRL-P or CTRL-X CTRL-N to get the
688word following the expansion in other contexts. These sequences search for
689the text just expanded and further expand by getting an extra word. This is
690useful if you need to repeat a sequence of complicated words. Although CTRL-P
691and CTRL-N look just for strings of at least two characters, CTRL-X CTRL-P and
692CTRL-X CTRL-N can be used to expand words of just one character.
693 e.g., to get:
694 M&eacute;xico
695 you can type:
696 M^N^P^X^P^X^P
697CTRL-N starts the expansion and then CTRL-P takes back the single character
698"M", the next two CTRL-X CTRL-P's get the words "&eacute" and ";xico".
699
700If the previous expansion was split, because it got longer than 'textwidth',
701then just the text in the current line will be used.
702
703If the match found is at the end of a line, then the first word in the next
704line will be inserted and the message "word from next line" displayed, if
705this word is accepted the next CTRL-X CTRL-P or CTRL-X CTRL-N will search
706for those lines starting with this word.
707
708
709Completing keywords in 'dictionary' *compl-dictionary*
710
711 *i_CTRL-X_CTRL-K*
712CTRL-X CTRL-K Search the files given with the 'dictionary' option
713 for words that start with the keyword in front of the
714 cursor. This is like CTRL-N, but only the dictionary
715 files are searched, not the current file. The found
716 keyword is inserted in front of the cursor. This
717 could potentially be pretty slow, since all matches
718 are found before the first match is used. By default,
719 the 'dictionary' option is empty.
720 For suggestions where to find a list of words, see the
721 'dictionary' option.
722
723 CTRL-K or
724 CTRL-N Search forward for next matching keyword. This
725 keyword replaces the previous matching keyword.
726
727 CTRL-P Search backwards for next matching keyword. This
728 keyword replaces the previous matching keyword.
729
730 *i_CTRL-X_CTRL-T*
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000731CTRL-X CTRL-T Works as CTRL-X CTRL-K, but in a special way. It uses
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 the 'thesaurus' option instead of 'dictionary'. If a
733 match is found in the thesaurus file, all the
734 remaining words on the same line are included as
735 matches, even though they don't complete the word.
736 Thus a word can be completely replaced.
737
738 For an example, imagine the 'thesaurus' file has a
739 line like this: >
740 angry furious mad enraged
741< Placing the cursor after the letters "ang" and typing
742 CTRL-X CTRL-T would complete the word "angry";
743 subsequent presses would change the word to "furious",
744 "mad" etc.
745 Other uses include translation between two languages,
746 or grouping API functions by keyword.
747
748 CTRL-T or
749 CTRL-N Search forward for next matching keyword. This
750 keyword replaces the previous matching keyword.
751
752 CTRL-P Search backwards for next matching keyword. This
753 keyword replaces the previous matching keyword.
754
755
756Completing keywords in the current and included files *compl-keyword*
757
758The 'include' option is used to specify a line that contains an include file
759name. The 'path' option is used to search for include files.
760
761 *i_CTRL-X_CTRL-I*
762CTRL-X CTRL-I Search for the first keyword in the current and
763 included files that starts with the same characters
764 as those before the cursor. The matched keyword is
765 inserted in front of the cursor.
766
767 CTRL-N Search forwards for next matching keyword. This
768 keyword replaces the previous matching keyword.
769 Note: CTRL-I is the same as <Tab>, which is likely to
770 be typed after a successful completion, therefore
771 CTRL-I is not used for searching for the next match.
772
773 CTRL-P Search backward for previous matching keyword. This
774 keyword replaces the previous matching keyword.
775
776 CTRL-X CTRL-I Further use of CTRL-X CTRL-I will copy the words
777 following the previous expansion in other contexts
778 unless a double CTRL-X is used.
779
780Completing tags *compl-tag*
781 *i_CTRL-X_CTRL-]*
782CTRL-X CTRL-] Search for the first tag that starts with the same
783 characters as before the cursor. The matching tag is
784 inserted in front of the cursor. Alphabetic
785 characters and characters in 'iskeyword' are used
786 to decide which characters are included in the tag
787 name (same as for a keyword). See also |CTRL-]|.
788 The 'showfulltag' option can be used to add context
789 from around the tag definition.
790 CTRL-] or
791 CTRL-N Search forwards for next matching tag. This tag
792 replaces the previous matching tag.
793
794 CTRL-P Search backward for previous matching tag. This tag
795 replaces the previous matching tag.
796
797
798Completing file names *compl-filename*
799 *i_CTRL-X_CTRL-F*
800CTRL-X CTRL-F Search for the first file name that starts with the
801 same characters as before the cursor. The matching
802 file name is inserted in front of the cursor.
803 Alphabetic characters and characters in 'isfname'
804 are used to decide which characters are included in
805 the file name. Note: the 'path' option is not used
806 here (yet).
807 CTRL-F or
808 CTRL-N Search forwards for next matching file name. This
809 file name replaces the previous matching file name.
810
811 CTRL-P Search backward for previous matching file name.
812 This file name replaces the previous matching file
813 name.
814
815
816Completing definitions or macros *compl-define*
817
818The 'define' option is used to specify a line that contains a definition.
819The 'include' option is used to specify a line that contains an include file
820name. The 'path' option is used to search for include files.
821
822 *i_CTRL-X_CTRL-D*
823CTRL-X CTRL-D Search in the current and included files for the
824 first definition (or macro) name that starts with
825 the same characters as before the cursor. The found
826 definition name is inserted in front of the cursor.
827 CTRL-D or
828 CTRL-N Search forwards for next matching macro name. This
829 macro name replaces the previous matching macro
830 name.
831
832 CTRL-P Search backward for previous matching macro name.
833 This macro name replaces the previous matching macro
834 name.
835
836 CTRL-X CTRL-D Further use of CTRL-X CTRL-D will copy the words
837 following the previous expansion in other contexts
838 unless a double CTRL-X is used.
839
840
841Completing Vim commands *compl-vim*
842
843Completion is context-sensitive. It works like on the Command-line. It
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000844completes an Ex command as well as its arguments. This is useful when writing
845a Vim script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846
847 *i_CTRL-X_CTRL-V*
848CTRL-X CTRL-V Guess what kind of item is in front of the cursor and
849 find the first match for it.
850 Note: When CTRL-V is mapped you can often use CTRL-Q
851 instead |i_CTRL-Q|.
852 CTRL-V or
853 CTRL-N Search forwards for next match. This match replaces
854 the previous one.
855
856 CTRL-P Search backward for previous match. This match
857 replaces the previous one.
858
859 CTRL-X CTRL-V Further use of CTRL-X CTRL-V will do the same as
860 CTRL-V. This allows mapping a key to do Vim command
861 completion, for example: >
862 :imap <Tab> <C-X><C-V>
863
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000864User defined completion *compl-function*
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000865
866Completion is done by a function that can be defined by the user with the
867'completefunc' option. See the option for how the function is called and an
868example.
869
870 *i_CTRL-X_CTRL-U*
871CTRL-X CTRL-U Guess what kind of item is in front of the cursor and
872 find the first match for it.
873 CTRL-U or
874 CTRL-N Use the next match. This match replaces the previous
875 one.
876
877 CTRL-P Use the previous match. This match replaces the
878 previous one.
879
880
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000881Occult completion *compl-occult*
882
883Completion is done by a supernatural being.
884
885 *i_CTRL-X_CTRL-O*
886CTRL-X CTRL-O Guess what kind of item is in front of the cursor and
887 find the first match for it.
888 CTRL-O or
889 CTRL-N Use the next match. This match replaces the previous
890 one.
891
892 CTRL-P Use the previous match. This match replaces the
893 previous one.
894
895
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896Completing keywords from different sources *compl-generic*
897
898 *i_CTRL-N*
899CTRL-N Find next match for words that start with the
900 keyword in front of the cursor, looking in places
901 specified with the 'complete' option. The found
902 keyword is inserted in front of the cursor.
903
904 *i_CTRL-P*
905CTRL-P Find previous match for words that start with the
906 keyword in front of the cursor, looking in places
907 specified with the 'complete' option. The found
908 keyword is inserted in front of the cursor.
909
910 CTRL-N Search forward for next matching keyword. This
911 keyword replaces the previous matching keyword.
912
913 CTRL-P Search backwards for next matching keyword. This
914 keyword replaces the previous matching keyword.
915
916 CTRL-X CTRL-N or
917 CTRL-X CTRL-P Further use of CTRL-X CTRL-N or CTRL-X CTRL-P will
918 copy the words following the previous expansion in
919 other contexts unless a double CTRL-X is used.
920
921==============================================================================
9228. Insert mode commands *inserting*
923
924The following commands can be used to insert new text into the buffer. They
925can all be undone and repeated with the "." command.
926
927 *a*
928a Append text after the cursor [count] times. If the
929 cursor is in the first column of an empty line Insert
930 starts there. But not when 'virtualedit' is set!
931
932 *A*
933A Append text at the end of the line [count] times.
934
935<insert> or *i* *insert* *<Insert>*
936i Insert text before the cursor [count] times.
937 When using CTRL-O in Insert mode |i_CTRL-O| the count
938 is not supported.
939
940 *I*
941I Insert text before the first non-blank in the line
942 [count] times.
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000943 When the 'H' flag is present in 'cpoptions' and the
944 line only contains blanks, insert start just before
945 the last blank.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946
947 *gI*
948gI Insert text in column 1 [count] times. {not in Vi}
949
950 *gi*
951gi Insert text in the same position as where Insert mode
952 was stopped last time in the current buffer.
953 This uses the |'^| mark. It's different from "`^i"
954 when the mark is past the end of the line.
955 The position is corrected for inserted/deleted lines,
956 but NOT for inserted/deleted characters.
957 When the |:keepjumps| command modifier is used the |'^|
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000958 mark won't be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 {not in Vi}
960
961 *o*
962o Begin a new line below the cursor and insert text,
963 repeat [count] times. {Vi: blank [count] screen
964 lines}
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000965 When the '#' flag is in 'cpoptions' the count is
966 ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967
968 *O*
969O Begin a new line above the cursor and insert text,
970 repeat [count] times. {Vi: blank [count] screen
971 lines}
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000972 When the '#' flag is in 'cpoptions' the count is
973 ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974
975These commands are used to start inserting text. You can end insert mode with
976<Esc>. See |mode-ins-repl| for the other special characters in Insert mode.
977The effect of [count] takes place after Insert mode is exited.
978
979When 'autoindent' is on, the indent for a new line is obtained from the
980previous line. When 'smartindent' or 'cindent' is on, the indent for a line
981is automatically adjusted for C programs.
982
983'textwidth' can be set to the maximum width for a line. When a line becomes
984too long when appending characters a line break is automatically inserted.
985
986
987==============================================================================
9889. Ex insert commands *inserting-ex*
989
990 *:a* *:append*
Bram Moolenaardf177f62005-02-22 08:39:57 +0000991:{range}a[ppend][!] Insert several lines of text below the specified
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 line. If the {range} is missing, the text will be
993 inserted after the current line.
Bram Moolenaardf177f62005-02-22 08:39:57 +0000994 Adding [!] toggles 'autoindent' for the time this
995 command is executed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996
997 *:i* *:in* *:insert*
Bram Moolenaardf177f62005-02-22 08:39:57 +0000998:{range}i[nsert][!] Insert several lines of text above the specified
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 line. If the {range} is missing, the text will be
1000 inserted before the current line.
Bram Moolenaardf177f62005-02-22 08:39:57 +00001001 Adding [!] toggles 'autoindent' for the time this
1002 command is executed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003
1004These two commands will keep on asking for lines, until you type a line
1005containing only a ".". Watch out for lines starting with a backslash, see
1006|line-continuation|.
Bram Moolenaardf177f62005-02-22 08:39:57 +00001007When these commands are used with |:global| or |:vglobal| then the lines are
1008obtained from the text following the command. Separate lines with a NL
1009escaped with a backslash: >
1010 :global/abc/insert\
1011 one line\
1012 another line
1013The final "." is not needed then.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014NOTE: ":append" and ":insert" don't work properly in between ":if" and
Bram Moolenaar06fb4352005-01-05 22:10:30 +00001015":endif", ":for" and ":endfor", ":while" and ":endwhile".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016
1017 *:start* *:startinsert*
1018:star[tinsert][!] Start Insert mode just after executing this command.
1019 Works like typing "i" in Normal mode. When the ! is
1020 included it works like "A", append to the line.
1021 Otherwise insertion starts at the cursor position.
1022 Note that when using this command in a function or
1023 script, the insertion only starts after the function
1024 or script is finished.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001025 This command does not work from |:normal|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 {not in Vi}
1027 {not available when compiled without the +ex_extra
1028 feature}
1029
1030 *:stopi* *:stopinsert*
1031:stopi[nsert] Stop Insert mode as soon as possible. Works like
1032 typing <Esc> in Insert mode.
1033 Can be used in an autocommand, example: >
1034 :au BufEnter scratch stopinsert
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001035<
1036 *replacing-ex* *:startreplace*
1037:startr[eplace][!] Start Replace mode just after executing this command.
1038 Works just like typing "R" in Normal mode. When the
1039 ! is included it acts just like "$R" had been typed
1040 (ie. begin replace mode at the end-of-line). Other-
1041 wise replacement begins at the cursor position.
1042 Note that when using this command in a function or
1043 script that the replacement will only start after
1044 the function or script is finished.
1045 {not in Vi}
1046 {not available when compiled without the +ex_extra
1047 feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048
1049==============================================================================
105010. Inserting a file *inserting-file*
1051
1052 *:r* *:re* *:read*
1053:r[ead] [name] Insert the file [name] (default: current file) below
1054 the cursor.
1055
1056:{range}r[ead] [name] Insert the file [name] (default: current file) below
1057 the specified line.
1058
1059 *:r!* *:read!*
1060:r[ead] !{cmd} Execute {cmd} and insert its standard output below
1061 the cursor. A temporary file is used to store the
1062 output of the command which is then read into the
1063 buffer. 'shellredir' is used to save the output of
1064 the command, which can be set to include stderr or
1065 not. {cmd} is executed like with ":!{cmd}", any '!'
1066 is replaced with the previous command |:!|.
1067
1068These commands insert the contents of a file, or the output of a command,
1069into the buffer. They can be undone. They cannot be repeated with the "."
1070command. They work on a line basis, insertion starts below the line in which
1071the cursor is, or below the specified line. To insert text above the first
1072line use the command ":0r {name}".
1073
1074After the ":read" command, the cursor is left on the first non-blank in the
1075first new line. Unless in Ex mode, then the cursor is left on the last new
1076line (sorry, this is Vi compatible).
1077
1078If a file name is given with ":r", it becomes the alternate file. This can be
1079used, for example, when you want to edit that file instead: ":e! #". This can
1080be switched off by removing the 'a' flag from the 'cpoptions' option.
1081
1082 *file-read*
1083The 'fileformat' option sets the <EOL> style for a file:
1084'fileformat' characters name ~
1085 "dos" <CR><NL> or <NL> DOS format
1086 "unix" <NL> Unix format
1087 "mac" <CR> Mac format
1088Previously 'textmode' was used. It is obsolete now.
1089
1090If 'fileformat' is "dos", a <CR> in front of an <NL> is ignored and a CTRL-Z
1091at the end of the file is ignored.
1092
1093If 'fileformat' is "mac", a <NL> in the file is internally represented by a
1094<CR>. This is to avoid confusion with a <NL> which is used to represent a
1095<NUL>. See |CR-used-for-NL|.
1096
1097If the 'fileformats' option is not empty Vim tries to recognize the type of
1098<EOL> (see |file-formats|). However, the 'fileformat' option will not be
1099changed, the detected format is only used while reading the file.
1100A similar thing happens with 'fileencodings'.
1101
1102On non-MS-DOS, Win32, and OS/2 systems the message "[dos format]" is shown if
1103a file is read in DOS format, to remind you that something unusual is done.
1104On Macintosh, MS-DOS, Win32, and OS/2 the message "[unix format]" is shown if
1105a file is read in Unix format.
1106On non-Macintosh systems, the message "[Mac format]" is shown if a file is
1107read in Mac format.
1108
1109An example on how to use ":r !": >
1110 :r !uuencode binfile binfile
1111This command reads "binfile", uuencodes it and reads it into the current
1112buffer. Useful when you are editing e-mail and want to include a binary
1113file.
1114
1115 *read-messages*
1116When reading a file Vim will display a message with information about the read
1117file. In the table is an explanation for some of the items. The others are
1118self explanatory. Using the long or the short version depends on the
1119'shortmess' option.
1120
1121 long short meaning ~
1122 [readonly] {RO} the file is write protected
1123 [fifo/socket] using a stream
1124 [fifo] using a fifo stream
1125 [socket] using a socket stream
1126 [CR missing] reading with "dos" 'fileformat' and a
1127 NL without a preceding CR was found.
1128 [NL found] reading with "mac" 'fileformat' and a
1129 NL was found (could be "unix" format)
1130 [long lines split] at least one line was split in two
1131 [NOT converted] conversion from 'fileencoding' to
1132 'encoding' was desired but not
1133 possible
1134 [converted] conversion from 'fileencoding' to
1135 'encoding' done
1136 [crypted] file was decrypted
1137 [READ ERRORS] not all of the file could be read
1138
1139
1140 vim:tw=78:ts=8:ft=help:norl: