blob: 82f6274345ac66842ec5631dd89bac23a14c615b [file] [log] [blame]
Bram Moolenaar2e693a82019-10-16 22:35:02 +02001*vi_diff.txt* For Vim version 8.1. Last change: 2019 Oct 12
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Differences between Vim and Vi *vi-differences*
8
Bram Moolenaar25c9c682019-05-05 18:13:34 +02009This file lists the differences between Vim and Vi/Ex and gives an overview of
10what is in Vim that is not in Vi.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011
12Vim is mostly POSIX 1003.2-1 compliant. The only command known to be missing
13is ":open". There are probably a lot of small differences (either because Vim
14is missing something or because Posix is beside the mark).
15
Bram Moolenaar6bdcfc02005-02-22 08:28:13 +0000161. Simulated command |simulated-command|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172. Missing options |missing-options|
183. Limits |limits|
194. The most interesting additions |vim-additions|
205. Other vim features |other-features|
Bram Moolenaar6c60f472019-04-28 16:00:35 +0200216. Supported Vi features |vi-features|
227. Command-line arguments |cmdline-arguments|
238. POSIX compliance |posix-compliance|
Bram Moolenaar071d4272004-06-13 20:20:40 +000024
25==============================================================================
Bram Moolenaar6bdcfc02005-02-22 08:28:13 +0000261. Simulated command *simulated-command*
Bram Moolenaar071d4272004-06-13 20:20:40 +000027
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +000028This command is in Vi, but Vim only simulates it:
Bram Moolenaar071d4272004-06-13 20:20:40 +000029
Bram Moolenaar6bdcfc02005-02-22 08:28:13 +000030 *:o* *:op* *:open*
31:[range]o[pen] Works like |:visual|: end Ex mode.
32 {Vi: start editing in open mode}
33
34:[range]o[pen] /pattern/ As above, additionally move the cursor to the
35 column where "pattern" matches in the cursor
36 line.
37
38Vim does not support open mode, since it's not really useful. For those
39situations where ":open" would start open mode Vim will leave Ex mode, which
40allows executing the same commands, but updates the whole screen instead of
41only one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43==============================================================================
442. Missing options *missing-options*
45
46These options are in the Unix Vi, but not in Vim. If you try to set one of
47them you won't get an error message, but the value is not used and cannot be
48printed.
49
50autoprint (ap) boolean (default on) *'autoprint'* *'ap'*
51beautify (bf) boolean (default off) *'beautify'* *'bf'*
52flash (fl) boolean (default ??) *'flash'* *'fl'*
53graphic (gr) boolean (default off) *'graphic'* *'gr'*
54hardtabs (ht) number (default 8) *'hardtabs'* *'ht'*
55 number of spaces that a <Tab> moves on the display
56mesg boolean (default on) *'mesg'*
57novice boolean (default off) *'novice'*
58open boolean (default on) *'open'*
59optimize (op) boolean (default off) *'optimize'* *'op'*
Bram Moolenaar071d4272004-06-13 20:20:40 +000060redraw boolean (default off) *'redraw'*
61slowopen (slow) boolean (default off) *'slowopen'* *'slow'*
62sourceany boolean (default off) *'sourceany'*
Bram Moolenaar071d4272004-06-13 20:20:40 +000063w300 number (default 23) *'w300'*
64w1200 number (default 23) *'w1200'*
65w9600 number (default 23) *'w9600'*
66
Bram Moolenaar2e693a82019-10-16 22:35:02 +020067Vi did not allow for changing the termcap entries, you would have to exit Vi,
68edit the termcap entry and try again. Vim has the |terminal-options|.
69
Bram Moolenaar071d4272004-06-13 20:20:40 +000070==============================================================================
713. Limits *limits*
72
73Vim has only a few limits for the files that can be edited {Vi: can not handle
74<Nul> characters and characters above 128, has limited line length, many other
75limits}.
76 *E340*
77Maximum line length On machines with 16-bit ints (Amiga and MS-DOS real
78 mode): 32767, otherwise 2147483647 characters.
79 Longer lines are split.
80Maximum number of lines 2147483647 lines.
81Maximum file size 2147483647 bytes (2 Gbyte) when a long integer is
82 32 bits. Much more for 64 bit longs. Also limited
83 by available disk space for the |swap-file|.
84 *E75*
85Length of a file path Unix and Win32: 1024 characters, otherwise 256
86 characters (or as much as the system supports).
87Length of an expanded string option
88 Unix and Win32: 1024 characters, otherwise 256
89 characters
90Maximum display width Unix and Win32: 1024 characters, otherwise 255
91 characters
92Maximum lhs of a mapping 50 characters.
Bram Moolenaar4770d092006-01-12 23:22:24 +000093Number of different highlighting types: over 30000
Bram Moolenaar5302d9e2011-09-14 17:55:08 +020094Range of a Number variable: -2147483648 to 2147483647 (might be more on 64
95 bit systems)
Bram Moolenaar4a748032010-09-30 21:47:56 +020096Maximum length of a line in a tags file: 512 bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +000097
98Information for undo and text in registers is kept in memory, thus when making
99(big) changes the amount of (virtual) memory available limits the number of
100undo levels and the text that can be kept in registers. Other things are also
101kept in memory: Command-line history, error messages for Quickfix mode, etc.
102
103Memory usage limits
104-------------------
105
106The option 'maxmem' ('mm') is used to set the maximum memory used for one
107buffer (in kilobytes). 'maxmemtot' is used to set the maximum memory used for
108all buffers (in kilobytes). The defaults depend on the system used. For the
109Amiga and MS-DOS, 'maxmemtot' is set depending on the amount of memory
Bram Moolenaar18144c82006-04-12 21:52:12 +0000110available.
111These are not hard limits, but tell Vim when to move text into a swap file.
112If you don't like Vim to swap to a file, set 'maxmem' and 'maxmemtot' to a
113very large value. The swap file will then only be used for recovery. If you
114don't want a swap file at all, set 'updatecount' to 0, or use the "-n"
115argument when starting Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116
117==============================================================================
1184. The most interesting additions *vim-additions*
119
120Vi compatibility. |'compatible'|
121 Although Vim is 99% Vi compatible, some things in Vi can be
122 considered to be a bug, or at least need improvement. But still, Vim
123 starts in a mode which behaves like the "real" Vi as much as possible.
124 To make Vim behave a little bit better, try resetting the 'compatible'
125 option:
126 :set nocompatible
127 Or start Vim with the "-N" argument:
128 vim -N
Bram Moolenaar18144c82006-04-12 21:52:12 +0000129 Vim starts with 'nocompatible' automatically if you have a .vimrc
130 file. See |startup|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 The 'cpoptions' option can be used to set Vi compatibility on/off for
132 a number of specific items.
133
134Support for different systems.
135 Vim can be used on:
136 - All Unix systems (it works on all systems it was tested on, although
137 the GUI and Perl interface may not work everywhere).
138 - Amiga (500, 1000, 1200, 2000, 3000, 4000, ...).
139 - MS-DOS in real-mode (no additional drivers required).
140 - In protected mode on Windows 3.1 and MS-DOS (DPMI driver required).
141 - Windows 95 and Windows NT, with support for long file names.
142 - OS/2 (needs emx.dll)
143 - Atari MiNT
144 - VMS
145 - BeOS
146 - Macintosh
147 - Risc OS
148 - IBM OS/390
Bram Moolenaar18144c82006-04-12 21:52:12 +0000149 Note that on some systems features need to be disabled to reduce
150 resource usage, esp. on MS-DOS. For some outdated systems you need to
151 use an older Vim version.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200153Multi level persistent undo. |undo|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154 'u' goes backward in time, 'CTRL-R' goes forward again. Set option
155 'undolevels' to the number of changes to be remembered (default 1000).
Bram Moolenaar7cba6c02013-09-05 22:13:31 +0200156 Set 'undolevels' to 0 for a Vi-compatible one level undo. Set it to
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 -1 for no undo at all.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 When all changes in a buffer have been undone, the buffer is not
159 considered changed anymore. You can exit it with :q, without <!>.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000160 When undoing a few changes and then making a new change Vim will
161 create a branch in the undo tree. This means you can go back to any
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000162 state of the text, there is no risk of a change causing text to be
Bram Moolenaar18144c82006-04-12 21:52:12 +0000163 lost forever. |undo-tree|
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200164 The undo information is stored in a file when the 'undofile' option is
165 set. This means you can exit Vim, start Vim on a previously edited
166 file and undo changes that were made before exiting Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167
Bram Moolenaar18144c82006-04-12 21:52:12 +0000168Graphical User Interface (GUI). |gui|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169 Included support for GUI: menu's, mouse, scrollbars, etc. You can
170 define your own menus. Better support for CTRL/SHIFT/ALT keys in
171 combination with special keys and mouse. Supported for various
172 platforms, such as X11 (with Motif and Athena interfaces), GTK, Win32
173 (Windows 95 and later), BeOS, Amiga and Macintosh.
174
175Multiple windows and buffers. |windows.txt|
176 Vim can split the screen into several windows, each editing a
177 different buffer or the same buffer at a different location. Buffers
178 can still be loaded (and changed) but not displayed in a window. This
179 is called a hidden buffer. Many commands and options have been added
180 for this facility.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000181 Vim can also use multiple tab pages, each with one or more windows. A
182 line with tab labels can be used to quickly switch between these pages.
183 |tab-page|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200185Terminal window. |:terminal|
186 Vim can create a window in which a terminal emulator runs. This can
187 be used to execute an arbitrary command, a shell or a debugger.
188
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189Syntax highlighting. |:syntax|
190 Vim can highlight keywords, patterns and other things. This is
Bram Moolenaar18144c82006-04-12 21:52:12 +0000191 defined by a number of |:syntax| commands, and can be made to
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 highlight most languages and file types. A number of files are
193 included for highlighting the most common languages, like C, C++,
194 Java, Pascal, Makefiles, shell scripts, etc. The colors used for
195 highlighting can be defined for ordinary terminals, color terminals
Bram Moolenaar18144c82006-04-12 21:52:12 +0000196 and the GUI with the |:highlight| command. A convenient way to do
197 this is using a |:colorscheme| command.
198 The highlighted text can be exported as HTML. |convert-to-HTML|
199 Other items that can be highlighted are matches with the search string
200 |'hlsearch'|, matching parens |matchparen| and the cursor line and
201 column |'cursorline'| |'cursorcolumn'|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200203Text properties |textprop.txt|
204 Vim supports highlighting text by a plugin. Property types can be
Bram Moolenaar68e65602019-05-26 21:33:31 +0200205 specified with |prop_type_add()| and properties can be placed with
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200206 |prop_add()|.
207
Bram Moolenaar18144c82006-04-12 21:52:12 +0000208Spell checking. |spell|
209 When the 'spell' option is set Vim will highlight spelling mistakes.
Bram Moolenaar9b451252012-08-15 17:43:31 +0200210 About 50 languages are currently supported, selected with the
Bram Moolenaarf2330482008-06-24 20:19:36 +0000211 'spelllang' option. In source code only comments and strings are
Bram Moolenaar18144c82006-04-12 21:52:12 +0000212 checked for spelling.
213
214Folding. |folding|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 A range of lines can be shown as one "folded" line. This allows
216 overviewing a file and moving blocks of text around quickly.
217 Folds can be created manually, from the syntax of the file, by indent,
218 etc.
219
Bram Moolenaar18144c82006-04-12 21:52:12 +0000220Diff mode. |diff|
221 Vim can show two versions of a file with the differences highlighted.
222 Parts of the text that are equal are folded away. Commands can be
223 used to move text from one version to the other.
224
225Plugins. |add-plugin|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 The functionality can be extended by dropping a plugin file in the
227 right directory. That's an easy way to start using Vim scripts
228 written by others. Plugins can be for all kind of files, or
229 specifically for a filetype.
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200230 Packages make this even easier. |packages|
231
232Asynchronous communication and timers. |channel| |job| |timer|
233 Vim can exchange messages with other processes in the background.
234 This makes it possible to have servers do work and send back the
235 results to Vim. |channel|
236 Vim can start a job, communicate with it and stop it. |job|
237 Timers can fire once or repeatedly and invoke a function to do any
238 work. |timer|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239
240Repeat a series of commands. |q|
Bram Moolenaar18144c82006-04-12 21:52:12 +0000241 "q{c}" starts recording typed characters into named register {c}.
242 A subsequent "q" stops recording. The register can then be executed
243 with the "@{c}" command. This is very useful to repeat a complex
244 action.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245
246Flexible insert mode. |ins-special-special|
247 The arrow keys can be used in insert mode to move around in the file.
248 This breaks the insert in two parts as far as undo and redo is
249 concerned.
250
Bram Moolenaar18144c82006-04-12 21:52:12 +0000251 CTRL-O can be used to execute a single Normal mode command. This is
252 almost the same as hitting <Esc>, typing the command and doing |a|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253
254Visual mode. |Visual-mode|
Bram Moolenaar18144c82006-04-12 21:52:12 +0000255 Visual mode can be used to first highlight a piece of text and then
256 give a command to do something with it. This is an (easy to use)
257 alternative to first giving the operator and then moving to the end of
258 the text to be operated upon.
259 |v| and |V| are used to start Visual mode. |v| works on characters
260 and |V| on lines. Move the cursor to extend the Visual area. It is
261 shown highlighted on the screen. By typing "o" the other end of the
262 Visual area can be moved. The Visual area can be affected by an
263 operator:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264 d delete
265 c change
266 y yank
267 > or < insert or delete indent
268 ! filter through external program
269 = filter through indent
Bram Moolenaar18144c82006-04-12 21:52:12 +0000270 : start |:| command for the Visual lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 gq format text to 'textwidth' columns
272 J join lines
273 ~ swap case
274 u make lowercase
275 U make uppercase
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200276 {Vi has no Visual mode, the name "visual" is used for Normal mode, to
277 distinguish it from Ex mode}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278
279Block operators. |visual-block|
Bram Moolenaar18144c82006-04-12 21:52:12 +0000280 With Visual mode a rectangular block of text can be selected. Start
281 Visual mode with CTRL-V. The block can be deleted ("d"), yanked ("y")
282 or its case can be changed ("~", "u" and "U"). A deleted or yanked
283 block can be put into the text with the "p" and "P" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284
Bram Moolenaar18144c82006-04-12 21:52:12 +0000285Help system. |:help|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 Help is displayed in a window. The usual commands can be used to
287 move around, search for a string, etc. Tags can be used to jump
Bram Moolenaar18144c82006-04-12 21:52:12 +0000288 around in the help files, just like hypertext links. The |:help|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 command takes an argument to quickly jump to the info on a subject.
290 <F1> is the quick access to the help system. The name of the help
291 index file can be set with the 'helpfile' option.
292
293Command-line editing and history. |cmdline-editing|
294 You can insert or delete at any place in the command-line using the
295 cursor keys. The right/left cursor keys can be used to move
296 forward/backward one character. The shifted right/left cursor keys
297 can be used to move forward/backward one word. CTRL-B/CTRL-E can be
298 used to go to the begin/end of the command-line.
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200299 {Vi: can only alter the last character in the line}
300 {Vi: when hitting <Esc> the command-line is executed. This is
301 unexpected for most people; therefore it was changed in Vim. But when
302 the <Esc> is part of a mapping, the command-line is executed. If you
303 want the Vi behaviour also when typing <Esc>, use ":cmap ^V<Esc>
304 ^V^M"}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 |cmdline-history|
306 The command-lines are remembered. The up/down cursor keys can be used
307 to recall previous command-lines. The 'history' option can be set to
308 the number of lines that will be remembered. There is a separate
309 history for commands and for search patterns.
310
311Command-line completion. |cmdline-completion|
312 While entering a command-line (on the bottom line of the screen)
313 <Tab> can be typed to complete
314 what example ~
315 - command :e<Tab>
316 - tag :ta scr<Tab>
317 - option :set sc<Tab>
318 - option value :set hf=<Tab>
319 - file name :e ve<Tab>
320 - etc.
321
322 If there are multiple matches, CTRL-N (next) and CTRL-P (previous)
323 will walk through the matches. <Tab> works like CTRL-N, but wraps
324 around to the first match.
325
326 The 'wildchar' option can be set to the character for command-line
327 completion, <Tab> is the default. CTRL-D can be typed after an
328 (incomplete) wildcard; all matches will be listed. CTRL-A will insert
329 all matches. CTRL-L will insert the longest common part of the
330 matches.
331
Bram Moolenaar18144c82006-04-12 21:52:12 +0000332Insert-mode completion. |ins-completion|
333 In Insert mode the CTRL-N and CTRL-P keys can be used to complete a
334 word that appears elsewhere. |i_CTRL-N|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 With CTRL-X another mode is entered, through which completion can be
336 done for:
337 |i_CTRL-X_CTRL-F| file names
338 |i_CTRL-X_CTRL-K| words from 'dictionary' files
339 |i_CTRL-X_CTRL-T| words from 'thesaurus' files
340 |i_CTRL-X_CTRL-I| words from included files
341 |i_CTRL-X_CTRL-L| whole lines
342 |i_CTRL-X_CTRL-]| words from the tags file
343 |i_CTRL-X_CTRL-D| definitions or macros
Bram Moolenaar18144c82006-04-12 21:52:12 +0000344 |i_CTRL-X_CTRL-O| Omni completion: clever completion
345 specifically for a file type
346 etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347
Bram Moolenaar18144c82006-04-12 21:52:12 +0000348Long line support. |'wrap'| |'linebreak'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 If the 'wrap' option is off, long lines will not wrap and only part
350 of them will be shown. When the cursor is moved to a part that is not
351 shown, the screen will scroll horizontally. The minimum number of
Bram Moolenaar18144c82006-04-12 21:52:12 +0000352 columns to scroll can be set with the 'sidescroll' option. The |zh|
353 and |zl| commands can be used to scroll sideways.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 Alternatively, long lines are broken in between words when the
355 'linebreak' option is set. This allows editing a single-line
356 paragraph conveniently (e.g. when the text is later read into a DTP
Bram Moolenaar18144c82006-04-12 21:52:12 +0000357 program). Move the cursor up/down with the |gk| and |gj| commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358
359Text formatting. |formatting|
360 The 'textwidth' option can be used to automatically limit the line
361 length. This supplements the 'wrapmargin' option of Vi, which was not
Bram Moolenaar18144c82006-04-12 21:52:12 +0000362 very useful. The |gq| operator can be used to format a piece of text
363 (for example, |gqap| formats the current paragraph). Commands for
364 text alignment: |:center|, |:left| and |:right|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365
Bram Moolenaar18144c82006-04-12 21:52:12 +0000366Extended search patterns. |pattern|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 There are many extra items to match various text items. Examples:
368 A "\n" can be used in a search pattern to match a line break.
369 "x\{2,4}" matches "x" 2 to 4 times.
370 "\s" matches a white space character.
371
Bram Moolenaar18144c82006-04-12 21:52:12 +0000372Directory, remote and archive browsing. |netrw|
373 Vim can browse the file system. Simply edit a directory. Move around
374 in the list with the usual commands and press <Enter> to go to the
375 directory or file under the cursor.
376 This also works for remote files over ftp, http, ssh, etc.
377 Zip and tar archives can also be browsed. |tar| |zip|
378
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379Edit-compile-edit speedup. |quickfix|
Bram Moolenaar18144c82006-04-12 21:52:12 +0000380 The |:make| command can be used to run the compilation and jump to the
381 first error. A file with compiler error messages is interpreted. Vim
382 jumps to the first error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383
384 Each line in the error file is scanned for the name of a file, line
385 number and error message. The 'errorformat' option can be set to a
386 list of scanf-like strings to handle output from many compilers.
387
Bram Moolenaar18144c82006-04-12 21:52:12 +0000388 The |:cn| command can be used to jump to the next error.
389 |:cl| lists all the error messages. Other commands are available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390 The 'makeef' option has the name of the file with error messages.
391 The 'makeprg' option contains the name of the program to be executed
Bram Moolenaar18144c82006-04-12 21:52:12 +0000392 with the |:make| command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 The 'shellpipe' option contains the string to be used to put the
394 output of the compiler into the errorfile.
395
Bram Moolenaar18144c82006-04-12 21:52:12 +0000396Finding matches in files. |:vimgrep|
397 Vim can search for a pattern in multiple files. This uses the
398 advanced Vim regexp pattern, works on all systems and also works to
399 search in compressed files.
400
401Improved indenting for programs. |'cindent'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402 When the 'cindent' option is on the indent of each line is
403 automatically adjusted. C syntax is mostly recognized. The indent
404 for various styles can be set with 'cinoptions'. The keys to trigger
405 indenting can be set with 'cinkeys'.
406
407 Comments can be automatically formatted. The 'comments' option can be
408 set to the characters that start and end a comment. This works best
409 for C code, but also works for e-mail (">" at start of the line) and
Bram Moolenaar18144c82006-04-12 21:52:12 +0000410 other types of text. The |=| operator can be used to re-indent
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 lines.
412
Bram Moolenaar18144c82006-04-12 21:52:12 +0000413 For many other languages an indent plugin is present to support
414 automatic indenting. |30.3|
415
416Searching for words in included files. |include-search|
417 The |[i| command can be used to search for a match of the word under
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 the cursor in the current and included files. The 'include' option
Bram Moolenaarc236c162008-07-13 17:41:49 +0000419 can be set to a pattern that describes a command to include a file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 (the default is for C programs).
Bram Moolenaar18144c82006-04-12 21:52:12 +0000421 The |[I| command lists all matches, the |[_CTRL-I| command jumps to
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 a match.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000423 The |[d|, |[D| and |[_CTRL-D| commands do the same, but only for
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 lines where the pattern given with the 'define' option matches.
425
Bram Moolenaar18144c82006-04-12 21:52:12 +0000426Automatic commands. |autocommand|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427 Commands can be automatically executed when reading a file, writing a
428 file, jumping to another buffer, etc., depending on the file name.
429 This is useful to set options and mappings for C programs,
430 documentation, plain text, e-mail, etc. This also makes it possible
431 to edit compressed files.
432
Bram Moolenaar18144c82006-04-12 21:52:12 +0000433Scripts and Expressions. |expression|
434 Commands have been added to form up a powerful script language.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 |:if| Conditional execution, which can be used for example
436 to set options depending on the value of $TERM.
437 |:while| Repeat a number of commands.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000438 |:for| Loop over a list.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439 |:echo| Print the result of an expression.
440 |:let| Assign a value to an internal variable, option, etc.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000441 Variable types are Number, String, List and Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 |:execute| Execute a command formed by an expression.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000443 |:try| Catch exceptions.
444 etc., etc. See |eval|.
445 Debugging and profiling are supported. |debug-scripts| |profile|
446 If this is not enough, an interface is provided to |Python|, |Ruby|,
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200447 |Tcl|, |Lua|, |Perl| and |MzScheme|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448
Bram Moolenaar18144c82006-04-12 21:52:12 +0000449Viminfo. |viminfo-file|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 The command-line history, marks and registers can be stored in a file
451 that is read on startup. This can be used to repeat a search command
452 or command-line command after exiting and restarting Vim. It is also
Bram Moolenaar18144c82006-04-12 21:52:12 +0000453 possible to jump right back to where the last edit stopped with |'0|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 The 'viminfo' option can be set to select which items to store in the
455 .viminfo file. This is off by default.
456
Bram Moolenaar18144c82006-04-12 21:52:12 +0000457Printing. |printing|
458 The |:hardcopy| command sends text to the printer. This can include
459 syntax highlighting.
460
461Mouse support. |mouse-using|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 The mouse is supported in the GUI version, in an xterm for Unix, for
Bram Moolenaarf2330482008-06-24 20:19:36 +0000463 BSDs with sysmouse, for Linux with gpm, for MS-DOS, and Win32. It
464 can be used to position the cursor, select the visual area, paste a
465 register, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466
Bram Moolenaar18144c82006-04-12 21:52:12 +0000467Usage of key names. |<>| |key-notation|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 Special keys now all have a name like <Up>, <End>, etc.
469 This name can be used in mappings, to make it easy to edit them.
470
Bram Moolenaar18144c82006-04-12 21:52:12 +0000471Editing binary files. |edit-binary|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 Vim can edit binary files. You can change a few characters in an
473 executable file, without corrupting it. Vim doesn't remove NUL
474 characters (they are represented as <NL> internally).
475 |-b| command-line argument to start editing a binary file
Bram Moolenaar18144c82006-04-12 21:52:12 +0000476 |'binary'| Option set by |-b|. Prevents adding an <EOL> for the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 last line in the file.
478
Bram Moolenaar18144c82006-04-12 21:52:12 +0000479Multi-language support. |multi-lang|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 Files in double-byte or multi-byte encodings can be edited. There is
481 UTF-8 support to be able to edit various languages at the same time,
482 without switching fonts. |UTF-8|
483 Messages and menus are available in different languages.
484
Bram Moolenaar18144c82006-04-12 21:52:12 +0000485Move cursor beyond lines.
486 When the 'virtualedit' option is set the cursor can move all over the
487 screen, also where there is no text. This is useful to edit tables
488 and figures easily.
489
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490==============================================================================
4915. Other vim features *other-features*
492
493A random collection of nice extra features.
494
495
496When Vim is started with "-s scriptfile", the characters read from
497"scriptfile" are treated as if you typed them. If end of file is reached
498before the editor exits, further characters are read from the console.
499
500The "-w" option can be used to record all typed characters in a script file.
501This file can then be used to redo the editing, possibly on another file or
502after changing some commands in the script file.
503
504The "-o" option opens a window for each argument. "-o4" opens four windows.
505
506Vi requires several termcap entries to be able to work full-screen. Vim only
507requires the "cm" entry (cursor motion).
508
509
510In command mode:
511
512When the 'showcmd' option is set, the command characters are shown in the last
513line of the screen. They are removed when the command is finished.
514
515If the 'ruler' option is set, the current cursor position is shown in the
516last line of the screen.
517
518"U" still works after having moved off the last changed line and after "u".
519
520Characters with the 8th bit set are displayed. The characters between '~' and
5210xa0 are displayed as "~?", "~@", "~A", etc., unless they are included in the
522'isprint' option.
523
524"][" goes to the next ending of a C function ('}' in column 1).
525"[]" goes to the previous ending of a C function ('}' in column 1).
526
527"]f", "[f" and "gf" start editing the file whose name is under the cursor.
528CTRL-W f splits the window and starts editing the file whose name is under
529the cursor.
530
531"*" searches forward for the identifier under the cursor, "#" backward.
532"K" runs the program defined by the 'keywordprg' option, with the identifier
533under the cursor as argument.
534
535"%" can be preceded with a count. The cursor jumps to the line that
536percentage down in the file. The normal "%" function to jump to the matching
537brace skips braces inside quotes.
538
539With the CTRL-] command, the cursor may be in the middle of the identifier.
540
541The used tags are remembered. Commands that can be used with the tag stack
542are CTRL-T, ":pop" and ":tag". ":tags" lists the tag stack.
543
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200544Vi uses 'wrapscan' when searching for a tag. When jumping to a tag Vi starts
545searching in line 2 of another file. It does not find a tag in line 1 of
546another file when 'wrapscan' is not set.
547
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548The 'tags' option can be set to a list of tag file names. Thus multiple
549tag files can be used. For file names that start with "./", the "./" is
550replaced with the path of the current file. This makes it possible to use a
551tags file in the same directory as the file being edited.
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200552{Vi: always uses binary search in some versions}
553{Vi does not have the security prevention for commands in tag files}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
555Previously used file names are remembered in the alternate file name list.
556CTRL-^ accepts a count, which is an index in this list.
557":files" command shows the list of alternate file names.
558"#<N>" is replaced with the <N>th alternate file name in the list.
559"#<" is replaced with the current file name without extension.
560
561Search patterns have more features. The <NL> character is seen as part of the
562search pattern and the substitute string of ":s". Vi sees it as the end of
563the command.
564
565Searches can put the cursor on the end of a match and may include a character
566offset.
567
568Count added to "~", ":next", ":Next", "n" and "N".
569
570The command ":next!" with 'autowrite' set does not write the file. In vi the
571file was written, but this is considered to be a bug, because one does not
572expect it and the file is not written with ":rewind!".
573
574In Vi when entering a <CR> in replace mode deletes a character only when 'ai'
575is set (but does not show it until you hit <Esc>). Vim always deletes a
576character (and shows it immediately).
577
578Added :wnext command. Same as ":write" followed by ":next".
579
580The ":w!" command always writes, also when the file is write protected. In Vi
Bram Moolenaar26df0922014-02-23 23:39:13 +0100581you would have to do ":!chmod +w %:S" and ":set noro".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582
583When 'tildeop' has been set, "~" is an operator (must be followed by a
584movement command).
585
586With the "J" (join) command you can reset the 'joinspaces' option to have only
587one space after a period (Vi inserts two spaces).
588
589"cw" can be used to change white space formed by several characters (Vi is
590confusing: "cw" only changes one space, while "dw" deletes all white space).
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200591{Vi: "cw" when on a blank followed by other blanks changes only the first
592blank; this is probably a bug, because "dw" deletes all the blanks}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593
594"o" and "O" accept a count for repeating the insert (Vi clears a part of
595display).
596
597Flags after Ex commands not supported (no plans to include it).
598
599On non-UNIX systems ":cd" command shows current directory instead of going to
600the home directory (there isn't one). ":pwd" prints the current directory on
601all systems.
602
603After a ":cd" command the file names (in the argument list, opened files)
604still point to the same files. In Vi ":cd" is not allowed in a changed file;
605otherwise the meaning of file names change.
606
607":source!" command reads Vi commands from a file.
608
609":mkexrc" command writes current modified options and mappings to a ".exrc"
610file. ":mkvimrc" writes to a ".vimrc" file.
611
612No check for "tail recursion" with mappings. This allows things like
613":map! foo ^]foo".
614
615When a mapping starts with number, vi loses the count typed before it (e.g.
616when using the mapping ":map g 4G" the command "7g" goes to line 4). This is
617considered a vi bug. Vim concatenates the counts (in the example it becomes
618"74G"), as most people would expect.
619
620The :put! command inserts the contents of a register above the current line.
621
622The "p" and "P" commands of vi cannot be repeated with "." when the putted
623text is less than a line. In Vim they can always be repeated.
624
625":noremap" command can be used to enter a mapping that will not be remapped.
626This is useful to exchange the meaning of two keys. ":cmap", ":cunmap" and
627":cnoremap" can be used for mapping in command-line editing only. ":imap",
628":iunmap" and ":inoremap" can be used for mapping in insert mode only.
629Similar commands exist for abbreviations: ":noreabbrev", ":iabbrev"
630":cabbrev", ":iunabbrev", ":cunabbrev", ":inoreabbrev", ":cnoreabbrev".
631
632In Vi the command ":map foo bar" would remove a previous mapping
633":map bug foo". This is considered a bug, so it is not included in Vim.
634":unmap! foo" does remove ":map! bug foo", because unmapping would be very
635difficult otherwise (this is vi compatible).
636
637The ':' register contains the last command-line.
638The '%' register contains the current file name.
639The '.' register contains the last inserted text.
640
641":dis" command shows the contents of the yank registers.
642
643CTRL-O/CTRL-I can be used to jump to older/newer positions. These are the
644same positions as used with the '' command, but may be in another file. The
645":jumps" command lists the older positions.
646
647If the 'shiftround' option is set, an indent is rounded to a multiple of
648'shiftwidth' with ">" and "<" commands.
649
650The 'scrolljump' option can be set to the minimum number of lines to scroll
651when the cursor gets off the screen. Use this when scrolling is slow.
652
653The 'scrolloff' option can be set to the minimum number of lines to keep
654above and below the cursor. This gives some context to where you are
655editing. When set to a large number the cursor line is always in the middle
656of the window.
657
658Uppercase marks can be used to jump between files. The ":marks" command lists
659all currently set marks. The commands "']" and "`]" jump to the end of the
660previous operator or end of the text inserted with the put command. "'[" and
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200661"`[" do jump to the start. {Vi: no uppercase marks}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662
663The 'shelltype' option can be set to reflect the type of shell used on the
664Amiga.
665
666The 'highlight' option can be set for the highlight mode to be used for
667several commands.
668
669The CTRL-A (add) and CTRL-X (subtract) commands are new. The count to the
670command (default 1) is added to/subtracted from the number at or after the
671cursor. That number may be decimal, octal (starts with a '0') or hexadecimal
672(starts with '0x'). Very useful in macros.
673
674With the :set command the prefix "inv" can be used to invert boolean options.
675
676In both Vi and Vim you can create a line break with the ":substitute" command
677by using a CTRL-M. For Vi this means you cannot insert a real CTRL-M in the
678text. With Vim you can put a real CTRL-M in the text by preceding it with a
679CTRL-V.
680
681
682In Insert mode:
683
684If the 'revins' option is set, insert happens backwards. This is for typing
685Hebrew. When inserting normal characters the cursor will not be shifted and
686the text moves rightwards. Backspace, CTRL-W and CTRL-U will also work in
687the opposite direction. CTRL-B toggles the 'revins' option. In replace mode
688'revins' has no effect. Only when enabled at compile time.
689
690The backspace key can be used just like CTRL-D to remove auto-indents.
691
692You can backspace, CTRL-U and CTRL-W over line breaks if the 'backspace' (bs)
693option includes "eol". You can backspace over the start of insert if the
694'backspace' option includes "start".
695
Bram Moolenaar9b451252012-08-15 17:43:31 +0200696When the 'paste' option is set, a few options are reset and mapping in insert
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697mode and abbreviation are disabled. This allows for pasting text in windowing
698systems without unexpected results. When the 'paste' option is reset, the old
699option values are restored.
700
701CTRL-T/CTRL-D always insert/delete an indent in the current line, no matter
702what column the cursor is in.
703
704CTRL-@ (insert previously inserted text) works always (Vi: only when typed as
705first character).
706
707CTRL-A works like CTRL-@ but does not leave insert mode.
708
Bram Moolenaar5be4cee2019-09-27 19:34:08 +0200709CTRL-R {register} can be used to insert the contents of a register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710
711When the 'smartindent' option is set, C programs will be better auto-indented.
712With 'cindent' even more.
713
714CTRL-Y and CTRL-E can be used to copy a character from above/below the
715current cursor position.
716
717After CTRL-V you can enter a three digit decimal number. This byte value is
718inserted in the text as a single character. Useful for international
719characters that are not on your keyboard.
720
721When the 'expandtab' (et) option is set, a <Tab> is expanded to the
722appropriate number of spaces.
723
724The window always reflects the contents of the buffer (Vi does not do this
725when changing text and in some other cases).
726
727If Vim is compiled with DIGRAPHS defined, digraphs are supported. A set of
728normal digraphs is included. They are shown with the ":digraph" command.
729More can be added with ":digraph {char1}{char2} {number}". A digraph is
730entered with "CTRL-K {char1} {char2}" or "{char1} BS {char2}" (only when
731'digraph' option is set).
732
733When repeating an insert, e.g. "10atest <Esc>" vi would only handle wrapmargin
734for the first insert. Vim does it for all.
735
736A count to the "i" or "a" command is used for all the text. Vi uses the count
737only for one line. "3iabc<NL>def<Esc>" would insert "abcabcabc<NL>def" in Vi
738but "abc<NL>defabc<NL>defabc<NL>def" in Vim.
739
740
741In Command-line mode:
742
Bram Moolenaar4499d2e2005-04-15 20:41:38 +0000743<Esc> terminates the command-line without executing it. In vi the command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744line would be executed, which is not what most people expect (hitting <Esc>
745should always get you back to command mode). To avoid problems with some
746obscure macros, an <Esc> in a macro will execute the command. If you want a
747typed <Esc> to execute the command like vi does you can fix this with
748 ":cmap ^V<Esc> ^V<CR>"
749
750General:
751
752The 'ttimeout' option is like 'timeout', but only works for cursor and
753function keys, not for ordinary mapped characters. The 'timeoutlen' option
754gives the number of milliseconds that is waited for. If the 'esckeys' option
755is not set, cursor and function keys that start with <Esc> are not recognized
756in insert mode.
757
758There is an option for each terminal string. Can be used when termcap is not
759supported or to change individual strings.
760
761The 'fileformat' option can be set to select the <EOL>: "dos" <CR><NL>, "unix"
762<NL> or "mac" <CR>.
763When the 'fileformats' option is not empty, Vim tries to detect the type of
764<EOL> automatically. The 'fileformat' option is set accordingly.
765
766On systems that have no job control (older Unix systems and non-Unix systems)
767the CTRL-Z, ":stop" or ":suspend" command starts a new shell.
768
769If Vim is started on the Amiga without an interactive window for output, a
770window is opened (and :sh still works). You can give a device to use for
771editing with the |-d| argument, e.g. "-d con:20/20/600/150".
772
773The 'columns' and 'lines' options are used to set or get the width and height
774of the display.
775
776Option settings are read from the first and last few lines of the file.
777Option 'modelines' determines how many lines are tried (default is 5). Note
778that this is different from the Vi versions that can execute any Ex command
779in a modeline (a major security problem). |trojan-horse|
780
781If the 'insertmode' option is set (e.g. in .exrc), Vim starts in insert mode.
782And it comes back there, when pressing <Esc>.
783
784Undo information is kept in memory. Available memory limits the number and
785size of change that can be undone. This may be a problem with MS-DOS, is
786hardly a problem on the Amiga and almost never with Unix and Win32.
787
788If the 'backup' or 'writebackup' option is set: Before a file is overwritten,
789a backup file (.bak) is made. If the "backup" option is set it is left
790behind.
791
792Vim creates a file ending in ".swp" to store parts of the file that have been
793changed or that do not fit in memory. This file can be used to recover from
794an aborted editing session with "vim -r file". Using the swap file can be
795switched off by setting the 'updatecount' option to 0 or starting Vim with
796the "-n" option. Use the 'directory' option for placing the .swp file
797somewhere else.
798
799Vim is able to work correctly on filesystems with 8.3 file names, also when
800using messydos or crossdos filesystems on the Amiga, or any 8.3 mounted
801filesystem under Unix. See |'shortname'|.
802
803Error messages are shown at least one second (Vi overwrites error messages).
804
805If Vim gives the |hit-enter| prompt, you can hit any key. Characters other
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200806than <CR>, <NL> and <Space> are interpreted as the (start of) a command.
807{Vi: only ":" commands are interpreted}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808
809The contents of the numbered and unnamed registers is remembered when
810changing files.
811
812The "No lines in buffer" message is a normal message instead of an error
813message, since that may cause a mapping to be aborted.
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200814{Vi: error messages may be overwritten with other messages before you have a
815chance to read them}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816
817The AUX: device of the Amiga is supported.
818
819==============================================================================
Bram Moolenaar6c60f472019-04-28 16:00:35 +02008206. Supported Vi features *vi-features*
821
822Vim supports nearly all Vi commands and mostly in the same way. That is when
823the 'compatible' option is set and 'cpoptions' contains all flags. What the
824effect is of resetting 'compatible' and removing flags from 'cpoptions' can be
825found at the help for the specific command.
826
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200827The help files used to mark features that are in Vim but not in Vi with {not
828in Vi}. However, since these remarks cluttered the help files we now do it
829the other way around: Below is listed what Vi already supported. Anything
830else has been added by Vim.
831
Bram Moolenaar6c60f472019-04-28 16:00:35 +0200832
833The following Ex commands are supported by Vi: ~
834
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200835`:abbreviate` enter abbreviation
836`:append` append text
837`:args` print the argument list
838`:cd` change directory; Vi: no "cd -"
839`:change` replace a line or series of lines
840`:chdir` change directory
841`:copy` copy lines
842`:delete` delete lines
843`:edit` edit a file
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200844`:exit` same as `:xit`
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200845`:file` show or set the current file name; Vi: without the column number
846`:global` execute commands for matching lines
847`:insert` insert text
848`:join` join lines; Vi: not :join!
849`:k` set a mark
850`:list` print lines
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200851`:map` show or enter a mapping
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200852`:mark` set a mark
853`:move` move lines
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200854`:Next` go to previous file in the argument list {Vi: no count}
855`:next` go to next file in the argument list {Vi: no count}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200856`:number` print lines with line number
857`:open` start open mode (not implemented in Vim)
858`:pop` jump to older entry in tag stack (only in some versions)
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200859`:preserve` write all text to swap file {Vi: might also exit}
860`:previous` same as `:Next` {Vi: only in some versions}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200861`:print` print lines
862`:put` insert contents of register in the text
863`:quit` quit Vi
864`:read` read file into the text
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200865`:recover` recover a file from a swap file {Vi: recovers in another way
866 and sends mail if there is something to recover}
867`:rewind` go to the first file in the argument list; no ++opt
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200868`:set` set option; but not `:set inv{option}`, `:set option&`,
869 `:set all&`, `:set option+=value`, `:set option^=value`
870 `:set option-=value` `:set option<`
871`:shell` escape to a shell
Bram Moolenaar68e65602019-05-26 21:33:31 +0200872`:source` read Vi or Ex commands from a file
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200873`:stop` suspend the editor or escape to a shell
874`:substitute` find and replace text; Vi: no '&', 'i', 's', 'r' or 'I' flag,
875 confirm prompt only supports 'y' and 'n', no highlighting
876`:suspend` same as ":stop"
877`:t` same as ":copy"
878`:tag` jump to tag
879`:unabbreviate` remove abbreviation
880`:undo` undo last change {Vi: only one level}
881`:unmap` remove mapping
882`:vglobal` execute commands for not matching lines
883`:version` print version number and other info
884`:visual` same as ":edit", but turns off "Ex" mode
885`:wq` write to a file and quit Vi
886`:write` write to a file
887`:xit` write if buffer changed and quit Vi
888`:yank` yank lines into a register
889`:z` print some lines {not in all versions of Vi}
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200890`:!` filter lines or execute an external command
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200891`:"` comment
892`:#` same as ":number"
893`:*` execute contents of a register
894`:&` repeat last ":substitute"
895`:<` shift lines one 'shiftwidth' left
896`:=` print the cursor line number
897`:>` shift lines one 'shiftwidth' right
898`:@` execute contents of a register; but not `:@`; `:@@` only in
899 some versions
Bram Moolenaar6c60f472019-04-28 16:00:35 +0200900
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200901Common for these commands is that Vi doesn't support the ++opt argument on
902`:edit` and other commands that open a file.
903
Bram Moolenaar6c60f472019-04-28 16:00:35 +0200904
905The following Normal mode commands are supported by Vi: ~
906
Bram Moolenaar68e65602019-05-26 21:33:31 +0200907note: See the beginning of |normal-index| for the meaning of WORD, N, Nmove
908and etc in the description text.
909
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200910|CTRL-B| scroll N screens Backwards
911|CTRL-C| interrupt current (search) command
912|CTRL-D| scroll Down N lines (default: half a screen); Vim scrolls
913 'scroll' screen lines, Vi scrolls file lines; makes a
914 difference when lines wrap
915|CTRL-E| scroll N lines upwards (N lines Extra)
916|CTRL-F| scroll N screens Forward
917|CTRL-G| display current file name and position
918|<BS>| same as "h"
919|CTRL-H| same as "h"
920|<NL>| same as "j"
921|CTRL-J| same as "j"
922|CTRL-L| redraw screen
923|<CR>| cursor to the first CHAR N lines lower
924|CTRL-M| same as <CR>
925|CTRL-N| same as "j"
926|CTRL-P| same as "k"
927|CTRL-R| in some Vi versions: same as CTRL-L
928|CTRL-T| jump to N older Tag in tag list
Bram Moolenaar68e65602019-05-26 21:33:31 +0200929|CTRL-U| N lines Upwards (default: half a screen) {Vi used file lines
930 while Vim scrolls 'scroll' screen lines; makes a difference
931 when lines wrap}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200932|CTRL-Y| scroll N lines downwards
933|CTRL-Z| suspend program (or start new shell)
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200934|CTRL-]| :ta to ident under cursor {Vi: identifier after the cursor}
935|CTRL-^| edit alternate file {Vi: no count}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200936|<Space>| same as "l"
937|!| filter Nmove text through the {filter} command
938|!!| filter N lines through the {filter} command
939" use register {a-zA-Z0-9.%#:-"} for next delete, yank or put
940 (uppercase to append) ({.%#:} only work with put)
941|$| cursor to the end of Nth next line
942|%| find the next (curly/square) bracket on this line and go to
943 its match, or go to matching comment bracket, or go to
944 matching preprocessor directive (Vi: no count supported)
945|&| repeat last :s
946|'| jump to mark (Vi: only lowercase marks)
947|(| cursor N sentences backward
948|)| cursor N sentences forward
949|+| same as <CR>
950|,| repeat latest f, t, F or T in opposite direction N times
951|-| cursor to the first CHAR N lines higher
952|.| repeat last change with count replaced with N
953|/| search forward for the Nth occurrence of {pattern}
954|0| cursor to the first char of the line
955|:| start entering an Ex command
956|;| repeat latest f, t, F or T N times
957|<| shift Nmove lines one 'shiftwidth' leftwards
958|<<| shift N lines one 'shiftwidth' leftwards
959|=| filter Nmove lines through "indent"
960|==| filter N lines through "indent"
961|>| shift Nmove lines one 'shiftwidth' rightwards
962|>>| shift N lines one 'shiftwidth' rightwards
963|?| search backward for the Nth previous occurrence of {pattern}
964|@| execute the contents of register {a-z} N times
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200965 {Vi: only named registers}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200966|@@| repeat the previous @{a-z} N times
967|A| append text after the end of the line N times
968|B| cursor N WORDS backward
969|C| change from the cursor position to the end of the line
970|D| delete the characters under the cursor until the end of the
971 line and N-1 more lines [into register x]; synonym for "d$"
972|E| cursor forward to the end of WORD N
973|F| cursor to the Nth occurrence of {char} to the left
974|G| cursor to line N, default last line
975|H| cursor to line N from top of screen
976|I| insert text before the first CHAR on the line N times
977|J| Join N lines; default is 2
978|L| cursor to line N from bottom of screen
979|M| cursor to middle line of screen
980|N| repeat the latest '/' or '?' N times in opposite direction
981|O| begin a new line above the cursor and insert text, repeat N
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200982 times {Vi: blank [count] screen lines}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200983|P| put the text [from register x] before the cursor N times
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200984 {Vi: no count}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200985|Q| switch to "Ex" mode
986|R| enter replace mode: overtype existing characters, repeat the
987 entered text N-1 times
988|S| delete N lines [into register x] and start insert; synonym for
989 "cc".
990|T| cursor till after Nth occurrence of {char} to the left
991|U| undo all latest changes on one line
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200992 {Vi: while not moved off of the last modified line}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200993|W| cursor N WORDS forward
994|X| delete N characters before the cursor [into register x]
995|Y| yank N lines [into register x]; synonym for "yy"
996|ZZ| store current file if modified, and exit
997|[[| cursor N sections backward
998|]]| cursor N sections forward
999|^| cursor to the first CHAR of the line
1000|_| cursor to the first CHAR N - 1 lines lower
1001|`| cursor to the mark {a-zA-Z0-9}
1002|a| append text after the cursor N times
1003|b| cursor N words backward
1004|c| delete Nmove text [into register x] and start insert
1005|cc| delete N lines [into register x] and start insert
1006|d| delete Nmove text [into register x]
1007|dd| delete N lines [into register x]
1008|e| cursor forward to the end of word N
1009|f| cursor to Nth occurrence of {char} to the right
1010|h| cursor N chars to the left
1011|i| insert text before the cursor N times
1012|j| cursor N lines downward
1013|k| cursor N lines upward
1014|l| cursor N chars to the right
1015|m| set mark {A-Za-z} at cursor position
1016|n| repeat the latest '/' or '?' N times
1017|o| begin a new line below the cursor and insert text
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001018 {Vi: blank [count] screen lines}
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001019|p| put the text [from register x] after the cursor N times
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001020 {Vi: no count}
1021|r| replace N chars with {char} {Vi: CTRL-V <CR> still replaces
1022 with a line break, cannot replace something with a <CR>}
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001023|s| (substitute) delete N characters [into register x] and start
1024 insert
1025|t| cursor till before Nth occurrence of {char} to the right
1026|u| undo changes {Vi: only one level}
1027|w| cursor N words forward
1028|x| delete N characters under and after the cursor [into register
1029 x]
1030|y| yank Nmove text [into register x]
1031|yy| yank N lines [into register x]
1032|z<CR>| current line to the top
1033|z-| current line to the bottom
1034|z+| cursor on line N
1035|z^| cursor on line N
1036|{| cursor N paragraphs backward
1037| cursor to column N
1038|}| cursor N paragraphs forward
1039|~| switch case of N characters under the cursor; Vim: depends on
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001040 'tildeop' {Vi: no count, no 'tildeop'}
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001041|<Del>| same as "x"
1042
1043
1044The following commands are supported in Insert mode by Vi: ~
1045
1046CTRL-@ insert previously inserted text and stop insert
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001047 {Vi: only when typed as first char, only up to 128 chars}
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001048CTRL-C quit insert mode, without checking for abbreviation, unless
1049 'insertmode' set.
1050CTRL-D delete one shiftwidth of indent in the current line
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001051 {Vi: CTRL-D works only when used after autoindent}
1052<BS> delete character before the cursor {Vi: does not delete
1053 autoindents, does not cross lines, does not delete past start
1054 position of insert}
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001055CTRL-H same as <BS>
1056<Tab> insert a <Tab> character
1057CTRL-I same as <Tab>
1058<NL> same as <CR>
1059CTRL-J same as <CR>
1060<CR> begin new line
1061CTRL-M same as <CR>
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001062CTRL-T insert one shiftwidth of indent in current line {Vi: only when
1063 in indent}
1064CTRL-V {char} insert next non-digit literally {Vi: no decimal byte entry}
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001065CTRL-W delete word before the cursor
Bram Moolenaar68e65602019-05-26 21:33:31 +02001066CTRL-Z when 'insertmode' set: suspend Vi
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001067<Esc> end insert mode (unless 'insertmode' set)
1068CTRL-[ same as <Esc>
10690 CTRL-D delete all indent in the current line
1070^ CTRL-D delete all indent in the current line, restore it in the next
1071 line
1072<Del> delete character under the cursor
Bram Moolenaar6c60f472019-04-28 16:00:35 +02001073
1074
1075The following options are supported by Vi: ~
1076
1077'autoindent' 'ai' take indent for new line from previous line
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001078 {Vi does this slightly differently: After the
1079 indent is deleted when typing <Esc> or <CR>, the
1080 cursor position when moving up or down is after
1081 the deleted indent; Vi puts the cursor somewhere
1082 in the deleted indent}.
Bram Moolenaar6c60f472019-04-28 16:00:35 +02001083'autowrite' 'aw' automatically write file if changed
1084'directory' 'dir' list of directory names for the swap file
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001085 {Vi: directory to put temp file in, defaults to
1086 "/tmp"}
Bram Moolenaar6c60f472019-04-28 16:00:35 +02001087'edcompatible' 'ed' toggle flags of ":substitute" command
1088'errorbells' 'eb' ring the bell for error messages
1089'ignorecase' 'ic' ignore case in search patterns
1090'lines' number of lines in the display
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001091'lisp' automatic indenting for Lisp {Vi: Does it a little
1092 bit differently}
Bram Moolenaar6c60f472019-04-28 16:00:35 +02001093'list' show <Tab> and <EOL>
1094'magic' changes special characters in search patterns
1095'modeline' 'ml' recognize 'modelines' at start or end of file
1096 {called modelines in some Vi versions}
1097'number' 'nu' print the line number in front of each line
1098'paragraphs' 'para' nroff macros that separate paragraphs
1099'prompt' 'prompt' enable prompt in Ex mode
1100'readonly' 'ro' disallow writing the buffer {Vim sets 'readonly'
1101 when editing a file with `:view`}
1102'remap' allow mappings to work recursively
1103'report' threshold for reporting nr. of lines changed
1104'scroll' 'scr' lines to scroll with CTRL-U and CTRL-D
1105'sections' 'sect' nroff macros that separate sections
1106'shell' 'sh' name of shell to use for external commands
1107'shiftwidth' 'sw' number of spaces to use for (auto)indent step
1108'showmatch' 'sm' briefly jump to matching bracket if insert one
1109'showmode' 'smd' message on status line to show current mode
1110'tabstop' 'ts' number of spaces that <Tab> in file uses
1111'taglength' 'tl' number of significant characters for a tag
1112'tags' 'tag' list of file names used by the tag command
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001113 {Vi: default is "tags /usr/lib/tags"}
Bram Moolenaar6c60f472019-04-28 16:00:35 +02001114'tagstack' 'tgst' push tags onto the tag stack {not in all versions
1115 of Vi}
1116'term' name of the terminal
1117'terse' shorten some messages
1118'timeout' 'to' time out on mappings and key codes
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001119'timeoutlen' 'tm' time for 'timeout' {only in some Vi versions}
Bram Moolenaar6c60f472019-04-28 16:00:35 +02001120'ttytype' 'tty' alias for 'term'
1121'verbose' 'vbs' give informative messages {only in some Vi
1122 versions as a boolean option}
1123'warn' warn for shell command when buffer was changed
1124'window' 'wi' nr of lines to scroll for CTRL-F and CTRL-B
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001125 {Vi also uses the option to specify the number of
1126 displayed lines}
Bram Moolenaar6c60f472019-04-28 16:00:35 +02001127'wrapmargin' 'wm' chars from the right where wrapping starts
Bram Moolenaara6c27c42019-05-09 19:16:22 +02001128 {Vi: works differently and less usefully}
Bram Moolenaar6c60f472019-04-28 16:00:35 +02001129'wrapscan' 'ws' searches wrap around the end of the file
1130'writeany' 'wa' write to file with no need for "!" override
1131
1132Also see |missing-options|.
1133
1134==============================================================================
11357. Command-line arguments *cmdline-arguments*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136
1137Different versions of Vi have different command-line arguments. This can be
1138confusing. To help you, this section gives an overview of the differences.
1139
1140Five variants of Vi will be considered here:
1141 Elvis Elvis version 2.1b
1142 Nvi Nvi version 1.79
1143 Posix Posix 1003.2
1144 Vi Vi version 3.7 (for Sun 4.1.x)
1145 Vile Vile version 7.4 (incomplete)
1146 Vim Vim version 5.2
1147
1148Only Vim is able to accept options in between and after the file names.
1149
1150+{command} Elvis, Nvi, Posix, Vi, Vim: Same as "-c {command}".
1151
1152- Nvi, Posix, Vi: Run Ex in batch mode.
1153 Vim: Read file from stdin (use -s for batch mode).
1154
1155-- Vim: End of options, only file names are following.
1156
1157--cmd {command} Vim: execute {command} before sourcing vimrc files.
1158
1159--echo-wid Vim: GTK+ echoes the Window ID on stdout
1160
1161--help Vim: show help message and exit.
1162
1163--literal Vim: take file names literally, don't expand wildcards.
1164
1165--nofork Vim: same as |-f|
1166
1167--noplugin[s] Vim: Skip loading plugins.
1168
1169--remote Vim: edit the files in another Vim server
1170
1171--remote-expr {expr} Vim: evaluate {expr} in another Vim server
1172
1173--remote-send {keys} Vim: send {keys} to a Vim server and exit
1174
1175--remote-silent {file} Vim: edit the files in another Vim server if possible
1176
1177--remote-wait Vim: edit the files in another Vim server and wait for it
1178
1179--remote-wait-silent Vim: like --remote-wait, no complaints if not possible
1180
1181--role {role} Vim: GTK+ 2: set role of main window
1182
1183--serverlist Vim: Output a list of Vim servers and exit
1184
1185--servername {name} Vim: Specify Vim server name
1186
1187--socketid {id} Vim: GTK window socket to run Vim in
1188
Bram Moolenaar78e17622007-08-30 10:26:19 +00001189--windowid {id} Vim: Win32 window ID to run Vim in
1190
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191--version Vim: show version message and exit.
1192
1193-? Vile: print usage summary and exit.
1194
1195-a Elvis: Load all specified file names into a window (use -o for
1196 Vim).
1197
1198-A Vim: Start in Arabic mode (when compiled with Arabic).
1199
1200-b {blksize} Elvis: Use {blksize} blocksize for the session file.
1201-b Vim: set 'binary' mode.
1202
1203-C Vim: Compatible mode.
1204
1205-c {command} Elvis, Nvi, Posix, Vim: run {command} as an Ex command after
1206 loading the edit buffer.
1207 Vim: allow up to 10 "-c" arguments
1208
1209-d {device} Vim: Use {device} for I/O (Amiga only). {only when compiled
1210 without the |+diff| feature}
1211-d Vim: start with 'diff' set. |vimdiff|
1212
1213-dev {device} Vim: Use {device} for I/O (Amiga only).
1214
1215-D Vim: debug mode.
1216
1217-e Elvis, Nvi, Vim: Start in Ex mode, as if the executable is
1218 called "ex".
1219
1220-E Vim: Start in improved Ex mode |gQ|, like "exim".
1221
1222-f Vim: Run GUI in foreground (Amiga: don't open new window).
1223-f {session} Elvis: Use {session} as the session file.
1224
1225-F Vim: Start in Farsi mode (when compiled with Farsi).
1226 Nvi: Fast start, don't read the entire file when editing
1227 starts.
1228
1229-G {gui} Elvis: Use the {gui} as user interface.
1230
1231-g Vim: Start GUI.
1232-g N Vile: start editing at line N
1233
1234-h Vim: Give help message.
1235 Vile: edit the help file
1236
1237-H Vim: start Hebrew mode (when compiled with it).
1238
1239-i Elvis: Start each window in Insert mode.
1240-i {viminfo} Vim: Use {viminfo} for viminfo file.
1241
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001242-L Vim: Same as "-r" {only in some versions of Vi: "List
1243 recoverable edit sessions"}.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244
1245-l Nvi, Vi, Vim: Set 'lisp' and 'showmatch' options.
1246
1247-m Vim: Modifications not allowed to be written, resets 'write'
1248 option.
1249
1250-M Vim: Modifications not allowed, resets 'modifiable' and the
1251 'write' option.
1252
1253-N Vim: No-compatible mode.
1254
1255-n Vim: No swap file used.
1256
1257-nb[args] Vim: open a NetBeans interface connection
1258
1259-O[N] Vim: Like -o, but use vertically split windows.
1260
1261-o[N] Vim: Open [N] windows, or one for each file.
1262
Bram Moolenaar18144c82006-04-12 21:52:12 +00001263-p[N] Vim: Open [N] tab pages, or one for each file.
1264
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265-P {parent-title} Win32 Vim: open Vim inside a parent application window
1266
1267-q {name} Vim: Use {name} for quickfix error file.
1268-q{name} Vim: Idem.
1269
1270-R Elvis, Nvi, Posix, Vile, Vim: Set the 'readonly' option.
1271
1272-r Elvis, Nvi, Posix, Vi, Vim: Recovery mode.
1273
1274-S Nvi: Set 'secure' option.
1275-S {script} Vim: source script after starting up.
1276
1277-s Nvi, Posix, Vim: Same as "-" (silent mode), when in Ex mode.
1278 Elvis: Sets the 'safer' option.
1279-s {scriptin} Vim: Read from script file {scriptin}; only when not in Ex
1280 mode.
1281-s {pattern} Vile: search for {pattern}
1282
1283-t {tag} Elvis, Nvi, Posix, Vi, Vim: Edit the file containing {tag}.
1284-t{tag} Vim: Idem.
1285
1286-T {term} Vim: Set terminal name to {term}.
1287
1288-u {vimrc} Vim: Read initializations from {vimrc} file.
1289
1290-U {gvimrc} Vim: Read GUI initializations from {gvimrc} file.
1291
1292-v Nvi, Posix, Vi, Vim: Begin in Normal mode (visual mode, in Vi
1293 terms).
1294 Vile: View mode, no changes possible.
1295
1296-V Elvis, Vim: Verbose mode.
1297-V{nr} Vim: Verbose mode with specified level.
1298
1299-w {size} Elvis, Posix, Nvi, Vi, Vim: Set value of 'window' to {size}.
1300-w{size} Nvi, Vi: Same as "-w {size}".
1301-w {name} Vim: Write to script file {name} (must start with non-digit).
1302
1303-W {name} Vim: Append to script file {name}.
1304
1305-x Vi, Vim: Ask for encryption key. See |encryption|.
1306
1307-X Vim: Don't connect to the X server.
1308
1309-y Vim: Start in easy mode, like |evim|.
1310
1311-Z Vim: restricted mode
1312
1313@{cmdfile} Vile: use {cmdfile} as startup file.
1314
Bram Moolenaarf97ca8f2005-02-07 21:49:25 +00001315==============================================================================
Bram Moolenaar6c60f472019-04-28 16:00:35 +020013168. POSIX compliance *posix* *posix-compliance*
Bram Moolenaarf97ca8f2005-02-07 21:49:25 +00001317
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +00001318In 2005 the POSIX test suite was run to check the compatibility of Vim. Most
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001319of the test was executed properly. There are the few things where Vim
Bram Moolenaar6bdcfc02005-02-22 08:28:13 +00001320is not POSIX compliant, even when run in Vi compatibility mode.
Bram Moolenaar38a55632016-02-15 22:07:32 +01001321 *$VIM_POSIX*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001322Set the $VIM_POSIX environment variable to have 'cpoptions' include the POSIX
1323flags when Vim starts up. This makes Vim run as POSIX as it can. That's
Bram Moolenaar6bdcfc02005-02-22 08:28:13 +00001324a bit different from being Vi compatible.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001325
1326This is where Vim does not behave as POSIX specifies and why:
1327
Bram Moolenaarf97ca8f2005-02-07 21:49:25 +00001328 *posix-screen-size*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001329 The $COLUMNS and $LINES environment variables are ignored by Vim if
1330 the size can be obtained from the terminal in a more reliable way.
1331 Add the '|' flag to 'cpoptions' to have $COLUMNS and $LINES overrule
1332 sizes obtained in another way.
Bram Moolenaarf97ca8f2005-02-07 21:49:25 +00001333
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001334 The "{" and "}" commands don't stop at a "{" in the original Vi, but
1335 POSIX specifies it does. Add the '{' flag to 'cpoptions' if you want
1336 it the POSIX way.
1337
1338 The "D", "o" and "O" commands accept a count. Also when repeated.
1339 Add the '#' flag to 'cpoptions' if you want to ignore the count.
Bram Moolenaarf97ca8f2005-02-07 21:49:25 +00001340
Bram Moolenaar6bdcfc02005-02-22 08:28:13 +00001341 The ":cd" command fails if the current buffer is modified when the '.'
1342 flag is present in 'cpoptions'.
1343
1344 There is no ATTENTION message, the "A" flag is added to 'shortmess'.
1345
1346These are remarks about running the POSIX test suite:
1347- vi test 33 sometimes fails for unknown reasons
1348- vi test 250 fails; behavior will be changed in a new revision
1349 http://www.opengroup.org/austin/mailarchives/ag-review/msg01710.html
Bram Moolenaar483c5d82010-10-20 18:45:33 +02001350 (link no longer works, perhaps it's now:
1351 https://www.opengroup.org/sophocles/show_mail.tpl?CALLER=show_archive.tpl&source=L&listname=austin-review-l&id=1711)
Bram Moolenaar6bdcfc02005-02-22 08:28:13 +00001352- vi test 310 fails; exit code non-zero when any error occurred?
1353- ex test 24 fails because test is wrong. Changed between SUSv2 and SUSv3.
1354- ex tests 47, 48, 49, 72, 73 fail because .exrc file isn't read in silent
1355 mode and $EXINIT isn't used.
1356- ex tests 76, 78 fail because echo is used instead of printf. (fixed)
1357 Also: problem with \s not changed to space.
1358- ex test 355 fails because 'window' isn't used for "30z".
1359- ex test 368 fails because shell command isn't echoed in silent mode.
1360- ex test 394 fails because "=" command output isn't visible in silent mode.
1361- ex test 411 fails because test file is wrong, contains stray ':'.
1362- ex test 475 and 476 fail because reprint output isn't visible in silent mode.
1363- ex test 480 and 481 fail because the tags file has spaces instead of a tab.
1364- ex test 502 fails because .exrc isn't read in silent mode.
1365- ex test 509 fails because .exrc isn't read in silent mode. and exit code is
1366 1 instead of 2.
1367- ex test 534 fails because .exrc isn't read in silent mode.
1368
Bram Moolenaarf97ca8f2005-02-07 21:49:25 +00001369
Bram Moolenaard473c8c2018-08-11 18:00:22 +02001370 vim:tw=78:ts=8:noet:ft=help:norl: