blob: c76557913e97130fba96825f208d0429acbb9b17 [file] [log] [blame]
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001*starting.txt* For Vim version 8.1. Last change: 2019 May 05
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Starting Vim *starting*
8
91. Vim arguments |vim-arguments|
102. Vim on the Amiga |starting-amiga|
113. Running eVim |evim-keys|
124. Initialization |initialization|
135. $VIM and $VIMRUNTIME |$VIM|
146. Suspending |suspend|
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100157. Exiting |exiting|
168. Saving settings |save-settings|
179. Views and Sessions |views-sessions|
1810. The viminfo file |viminfo-file|
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
20==============================================================================
211. Vim arguments *vim-arguments*
22
23Most often, Vim is started to edit a single file with the command
24
25 vim filename *-vim*
26
27More generally, Vim is started with:
28
29 vim [option | filename] ..
30
31Option arguments and file name arguments can be mixed, and any number of them
32can be given. However, watch out for options that take an argument.
33
34For compatibility with various Vi versions, see |cmdline-arguments|.
35
36Exactly one out of the following five items may be used to choose how to
37start editing:
38
39 *-file* *---*
40filename One or more file names. The first one will be the current
41 file and read into the buffer. The cursor will be positioned
42 on the first line of the buffer.
43 To avoid a file name starting with a '-' being interpreted as
44 an option, precede the arglist with "--", e.g.: >
45 vim -- -filename
46< All arguments after the "--" will be interpreted as file names,
47 no other options or "+command" argument can follow.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +010048 For behavior of quotes on MS-Windows, see |win32-quotes|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000049
50 *--*
51- This argument can mean two things, depending on whether Ex
52 mode is to be used.
53
54 Starting in Normal mode: >
55 vim -
56 ex -v -
57< Start editing a new buffer, which is filled with text
58 that is read from stdin. The commands that would normally be
59 read from stdin will now be read from stderr. Example: >
60 find . -name "*.c" -print | vim -
Bram Moolenaara2a80162017-11-21 23:09:50 +010061< The buffer will not be marked as modified, so that it's easy
62 to exit. Be careful to mark it as modified if you don't want
63 to accidentally lose it. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000064 ls | view -
65<
66 Starting in Ex mode: >
67 ex -
68 vim -e -
69 exim -
70 vim -E
71< Start editing in silent mode. See |-s-ex|.
72
73 *-t* *-tag*
74-t {tag} A tag. "tag" is looked up in the tags file, the associated
75 file becomes the current file, and the associated command is
76 executed. Mostly this is used for C programs, in which case
77 "tag" often is a function name. The effect is that the file
78 containing that function becomes the current file and the
79 cursor is positioned on the start of the function (see
80 |tags|).
81
82 *-q* *-qf*
83-q [errorfile] QuickFix mode. The file with the name [errorfile] is read
84 and the first error is displayed. See |quickfix|.
85 If [errorfile] is not given, the 'errorfile' option is used
86 for the file name. See 'errorfile' for the default value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000087
88(nothing) Without one of the four items above, Vim will start editing a
89 new buffer. It's empty and doesn't have a file name.
90
91
92The startup mode can be changed by using another name instead of "vim", which
93is equal to giving options:
94ex vim -e Start in Ex mode (see |Ex-mode|). *ex*
95exim vim -E Start in improved Ex mode (see |Ex-mode|). *exim*
96 (normally not installed)
97view vim -R Start in read-only mode (see |-R|). *view*
98gvim vim -g Start the GUI (see |gui|). *gvim*
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +020099gex vim -eg Start the GUI in Ex mode. *gex*
100gview vim -Rg Start the GUI in read-only mode. *gview*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101rvim vim -Z Like "vim", but in restricted mode (see |-Z|) *rvim*
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200102rview vim -RZ Like "view", but in restricted mode. *rview*
103rgvim vim -gZ Like "gvim", but in restricted mode. *rgvim*
104rgview vim -RgZ Like "gview", but in restricted mode. *rgview*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105evim vim -y Easy Vim: set 'insertmode' (see |-y|) *evim*
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200106eview vim -yR Like "evim" in read-only mode *eview*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107vimdiff vim -d Start in diff mode |diff-mode|
108gvimdiff vim -gd Start in diff mode |diff-mode|
109
110Additional characters may follow, they are ignored. For example, you can have
111"gvim-5" to start the GUI. You must have an executable by that name then, of
112course.
113
114On Unix, you would normally have one executable called Vim, and links from the
115different startup-names to that executable. If your system does not support
116links and you do not want to have several copies of the executable, you could
117use an alias instead. For example: >
118 alias view vim -R
119 alias gvim vim -g
120<
121 *startup-options*
122The option arguments may be given in any order. Single-letter options can be
123combined after one dash. There can be no option arguments after the "--"
124argument.
125
126On VMS all option arguments are assumed to be lowercase, unless preceded with
127a slash. Thus "-R" means recovery and "-/R" readonly.
128
Bram Moolenaar85eee132018-05-06 17:57:30 +0200129--help *-h* *--help* *-?*
130-?
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200131-h Give usage (help) message and exit.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 See |info-message| about capturing the text.
133
134 *--version*
135--version Print version information and exit. Same output as for
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200136 |:version| command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 See |info-message| about capturing the text.
138
139 *--noplugin*
140--noplugin Skip loading plugins. Resets the 'loadplugins' option.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200141
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 Note that the |-u| argument may also disable loading plugins:
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200143 argument load: vimrc files plugins defaults.vim ~
144 (nothing) yes yes yes
145 -u NONE no no no
146 -u DEFAULTS no no yes
147 -u NORC no yes no
148 --noplugin yes no yes
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000150--startuptime {fname} *--startuptime*
Bram Moolenaar3f269672009-11-03 11:11:11 +0000151 During startup write timing messages to the file {fname}.
152 This can be used to find out where time is spent while loading
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000153 your .vimrc, plugins and opening the first file.
Bram Moolenaar3f269672009-11-03 11:11:11 +0000154 When {fname} already exists new messages are appended.
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000155 (Only available when compiled with the |+startuptime|
156 feature).
Bram Moolenaar3f269672009-11-03 11:11:11 +0000157
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 *--literal*
159--literal Take file names literally, don't expand wildcards. Not needed
160 for Unix, because Vim always takes file names literally (the
161 shell expands wildcards).
162 Applies to all the names, also the ones that come before this
163 argument.
164
165 *-+*
166+[num] The cursor will be positioned on line "num" for the first
167 file being edited. If "num" is missing, the cursor will be
168 positioned on the last line.
169
170 *-+/*
171+/{pat} The cursor will be positioned on the first line containing
172 "pat" in the first file being edited (see |pattern| for the
Bram Moolenaar946e27a2014-06-25 18:50:27 +0200173 available search patterns). The search starts at the cursor
174 position, which can be the first line or the cursor position
175 last used from |viminfo|. To force a search from the first
176 line use "+1 +/pat".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
178+{command} *-+c* *-c*
179-c {command} {command} will be executed after the first file has been
180 read (and after autocommands and modelines for that file have
181 been processed). "command" is interpreted as an Ex command.
182 If the "command" contains spaces, it must be enclosed in
183 double quotes (this depends on the shell that is used).
184 Example: >
185 vim "+set si" main.c
186 vim "+find stdio.h"
187 vim -c "set ff=dos" -c wq mine.mak
188<
189 Note: You can use up to 10 "+" or "-c" arguments in a Vim
190 command. They are executed in the order given. A "-S"
191 argument counts as a "-c" argument as well.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192
193--cmd {command} *--cmd*
194 {command} will be executed before processing any vimrc file.
195 Otherwise it acts like -c {command}. You can use up to 10 of
196 these commands, independently from "-c" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197
198 *-S*
199-S {file} The {file} will be sourced after the first file has been read.
200 This is an easy way to do the equivalent of: >
201 -c "source {file}"
202< It can be mixed with "-c" arguments and repeated like "-c".
203 The limit of 10 "-c" arguments applies here as well.
204 {file} cannot start with a "-".
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200205
206 Do not use this for running a script to do some work and exit
207 Vim, you won't see error messages. Use |-u| instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208
209-S Works like "-S Session.vim". Only when used as the last
210 argument or when another "-" option follows.
211
212 *-r*
213-r Recovery mode. Without a file name argument, a list of
214 existing swap files is given. With a file name, a swap file
215 is read to recover a crashed editing session. See
216 |crash-recovery|.
217
218 *-L*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200219-L Same as -r.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
221 *-R*
222-R Readonly mode. The 'readonly' option will be set for all the
223 files being edited. You can still edit the buffer, but will
224 be prevented from accidentally overwriting a file. If you
225 forgot that you are in View mode and did make some changes,
226 you can overwrite a file by adding an exclamation mark to
227 the Ex command, as in ":w!". The 'readonly' option can be
228 reset with ":set noro" (see the options chapter, |options|).
229 Subsequent edits will not be done in readonly mode. Calling
230 the executable "view" has the same effect as the -R argument.
231 The 'updatecount' option will be set to 10000, meaning that
232 the swap file will not be updated automatically very often.
Bram Moolenaar369b6f52017-01-17 12:22:32 +0100233 See |-M| for disallowing modifications.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234
235 *-m*
236-m Modifications not allowed to be written. The 'write' option
237 will be reset, so that writing files is disabled. However,
238 the 'write' option can be set to enable writing again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239
240 *-M*
241-M Modifications not allowed. The 'modifiable' option will be
242 reset, so that changes are not allowed. The 'write' option
243 will be reset, so that writing files is disabled. However,
244 the 'modifiable' and 'write' options can be set to enable
245 changes and writing.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
Bram Moolenaar8c62a082019-02-08 14:34:10 +0100247 *-Z* *restricted-mode* *E145* *E981*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248-Z Restricted mode. All commands that make use of an external
249 shell are disabled. This includes suspending with CTRL-Z,
Bram Moolenaar8c62a082019-02-08 14:34:10 +0100250 ":sh", filtering, the system() function, backtick expansion
251 and libcall().
252 Also disallowed are delete(), rename(), mkdir(), job_start(),
253 etc.
254 Interfaces, such as Python, Ruby and Lua, are also disabled,
255 since they could be used to execute shell commands. Perl uses
256 the Safe module.
257 Note that the user may still find a loophole to execute a
258 shell command, it has only been made difficult.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259
260 *-g*
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200261-g Start Vim in GUI mode. See |gui|. For the opposite see |-v|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262
263 *-v*
264-v Start Ex in Vi mode. Only makes a difference when the
265 executable is called "ex" or "gvim". For gvim the GUI is not
266 started if possible.
267
268 *-e*
269-e Start Vim in Ex mode |Q|. Only makes a difference when the
270 executable is not called "ex".
271
272 *-E*
273-E Start Vim in improved Ex mode |gQ|. Only makes a difference
274 when the executable is not called "exim".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275
276 *-s-ex*
277-s Silent or batch mode. Only when Vim was started as "ex" or
278 when preceded with the "-e" argument. Otherwise see |-s|,
279 which does take an argument while this use of "-s" doesn't.
280 To be used when Vim is used to execute Ex commands from a file
281 instead of a terminal. Switches off most prompts and
282 informative messages. Also warnings and error messages.
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000283 The output of these commands is displayed (to stdout):
284 :print
285 :list
286 :number
287 :set to display option values.
288 When 'verbose' is non-zero messages are printed (for
289 debugging, to stderr).
290 'term' and $TERM are not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 If Vim appears to be stuck try typing "qa!<Enter>". You don't
292 get a prompt thus you can't see Vim is waiting for you to type
293 something.
294 Initializations are skipped (except the ones given with the
295 "-u" argument).
296 Example: >
297 vim -e -s < thefilter thefile
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200298< For the opposite, to see errors from the script, execute the
299 file with the |-u| flag: >
300 vim -u thefilter thefile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301<
302 *-b*
303-b Binary mode. File I/O will only recognize <NL> to separate
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000304 lines. The 'expandtab' option will be reset. The 'textwidth'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 option is set to 0. 'modeline' is reset. The 'binary' option
306 is set. This is done after reading the vimrc/exrc files but
307 before reading any file in the arglist. See also
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200308 |edit-binary|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
310 *-l*
311-l Lisp mode. Sets the 'lisp' and 'showmatch' options on.
312
313 *-A*
314-A Arabic mode. Sets the 'arabic' option on. (Only when
315 compiled with the |+arabic| features (which include
316 |+rightleft|), otherwise Vim gives an error message
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200317 and exits.)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318
319 *-F*
Bram Moolenaar14184a32019-02-16 15:10:30 +0100320-F This was used for Farsi mode, which has been removed.
321 See |farsi.txt|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322
323 *-H*
324-H Hebrew mode. Sets the 'hkmap' and 'rightleft' options on.
325 (Only when compiled with the |+rightleft| feature, otherwise
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200326 Vim gives an error message and exits.)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327
328 *-V* *verbose*
329-V[N] Verbose. Sets the 'verbose' option to [N] (default: 10).
330 Messages will be given for each file that is ":source"d and
331 for reading or writing a viminfo file. Can be used to find
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200332 out what is happening upon startup and exit.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000333 Example: >
334 vim -V8 foobar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000336-V[N]{filename}
337 Like -V and set 'verbosefile' to {filename}. The result is
338 that messages are not displayed but written to the file
339 {filename}. {filename} must not start with a digit.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000340 Example: >
341 vim -V20vimlog foobar
342<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 *-D*
344-D Debugging. Go to debugging mode when executing the first
345 command from a script. |debug-mode|
346 {not available when compiled without the |+eval| feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347
348 *-C*
349-C Compatible mode. Sets the 'compatible' option. You can use
350 this to get 'compatible', even though a .vimrc file exists.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100351 Keep in mind that the command ":set nocompatible" in some
352 plugin or startup script overrules this, so you may end up
Bram Moolenaar6dfc28b2010-02-11 14:19:15 +0100353 with 'nocompatible' anyway. To find out, use: >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100354 :verbose set compatible?
355< Several plugins won't work with 'compatible' set. You may
356 want to set it after startup this way: >
357 vim "+set cp" filename
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200358< Also see |compatible-default|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359
360 *-N*
361-N Not compatible mode. Resets the 'compatible' option. You can
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100362 use this to get 'nocompatible', when there is no .vimrc file
363 or when using "-u NONE".
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200364 Also see |compatible-default|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365
366 *-y* *easy*
367-y Easy mode. Implied for |evim| and |eview|. Starts with
368 'insertmode' set and behaves like a click-and-type editor.
369 This sources the script $VIMRUNTIME/evim.vim. Mappings are
370 set up to work like most click-and-type editors, see
371 |evim-keys|. The GUI is started when available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372
373 *-n*
374-n No swap file will be used. Recovery after a crash will be
375 impossible. Handy if you want to view or edit a file on a
376 very slow medium (e.g., a floppy).
377 Can also be done with ":set updatecount=0". You can switch it
378 on again by setting the 'updatecount' option to some value,
379 e.g., ":set uc=100".
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100380 NOTE: Don't combine -n with -b, making -nb, because that has a
381 different meaning: |-nb|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382 'updatecount' is set to 0 AFTER executing commands from a
383 vimrc file, but before the GUI initializations. Thus it
384 overrides a setting for 'updatecount' in a vimrc file, but not
385 in a gvimrc file. See |startup|.
386 When you want to reduce accesses to the disk (e.g., for a
387 laptop), don't use "-n", but set 'updatetime' and
388 'updatecount' to very big numbers, and type ":preserve" when
389 you want to save your work. This way you keep the possibility
390 for crash recovery.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391
392 *-o*
393-o[N] Open N windows, split horizontally. If [N] is not given,
394 one window is opened for every file given as argument. If
395 there is not enough room, only the first few files get a
396 window. If there are more windows than arguments, the last
397 few windows will be editing an empty file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398
399 *-O*
400-O[N] Open N windows, split vertically. Otherwise it's like -o.
401 If both the -o and the -O option are given, the last one on
402 the command line determines how the windows will be split.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000404 *-p*
405-p[N] Open N tab pages. If [N] is not given, one tab page is opened
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000406 for every file given as argument. The maximum is set with
407 'tabpagemax' pages (default 10). If there are more tab pages
408 than arguments, the last few tab pages will be editing an
Bram Moolenaarfa1d1402006-03-25 21:59:56 +0000409 empty file. Also see |tabpage|.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000410
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 *-T*
412-T {terminal} Set the terminal type to "terminal". This influences the
413 codes that Vim will send to your terminal. This is normally
414 not needed, because Vim will be able to find out what type
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200415 of terminal you are using. (See |terminal-info|.)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416
Bram Moolenaardae8d212016-02-27 22:40:16 +0100417 *--not-a-term*
Bram Moolenaar49c39ff2016-02-25 21:21:52 +0100418--not-a-term Tells Vim that the user knows that the input and/or output is
419 not connected to a terminal. This will avoid the warning and
Bram Moolenaara2a80162017-11-21 23:09:50 +0100420 the two second delay that would happen.
421 Also avoids the "Reading from stdin..." message.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200422 Also avoids the "N files to edit" message.
Bram Moolenaar49c39ff2016-02-25 21:21:52 +0100423
Bram Moolenaar2cab0e12016-11-24 15:09:07 +0100424 *--ttyfail*
425--ttyfail When the stdin or stdout is not a terminal (tty) then exit
426 right away.
427
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 *-d*
429-d Start in diff mode, like |vimdiff|.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200430 {not available when compiled without the |+diff| feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431
432-d {device} Only on the Amiga and when not compiled with the |+diff|
433 feature. Works like "-dev".
434 *-dev*
435-dev {device} Only on the Amiga: The {device} is opened to be used for
436 editing.
437 Normally you would use this to set the window position and
438 size: "-d con:x/y/width/height", e.g.,
439 "-d con:30/10/600/150". But you can also use it to start
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200440 editing on another device, e.g., AUX:.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 *-f*
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200442-f GUI: Do not disconnect from the program that started Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 'f' stands for "foreground". If omitted, the GUI forks a new
444 process and exits the current one. "-f" should be used when
445 gvim is started by a program that will wait for the edit
446 session to finish (e.g., mail or readnews). If you want gvim
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000447 never to fork, include 'f' in 'guioptions' in your |gvimrc|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 Careful: You can use "-gf" to start the GUI in the foreground,
449 but "-fg" is used to specify the foreground color. |gui-fork|
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200450
451 Amiga: Do not restart Vim to open a new window. This
452 option should be used when Vim is started by a program that
453 will wait for the edit session to finish (e.g., mail or
454 readnews). See |amiga-window|.
Bram Moolenaare6ae6222013-05-21 21:01:10 +0200455
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200456 MS-Windows: This option is not supported. However, when
457 running Vim with an installed vim.bat or gvim.bat file it
458 works.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200460
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 *--nofork*
462--nofork GUI: Do not fork. Same as |-f|.
463 *-u* *E282*
464-u {vimrc} The file {vimrc} is read for initializations. Most other
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200465 initializations are skipped; see |initialization|.
466
467 This can be used to start Vim in a special mode, with special
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 mappings and settings. A shell alias can be used to make
469 this easy to use. For example: >
470 alias vimc vim -u ~/.c_vimrc !*
471< Also consider using autocommands; see |autocommand|.
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200472
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 When {vimrc} is equal to "NONE" (all uppercase), all
474 initializations from files and environment variables are
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000475 skipped, including reading the |gvimrc| file when the GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 starts. Loading plugins is also skipped.
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200477
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 When {vimrc} is equal to "NORC" (all uppercase), this has the
479 same effect as "NONE", but loading plugins is not skipped.
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200480
481 When {vimrc} is equal to "DEFAULTS" (all uppercase), this has
482 the same effect as "NONE", but the |defaults.vim| script is
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200483 loaded, which will also set 'nocompatible'. Also see
484 |--clean|.
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200485
486 Using the "-u" argument with another argument than DEFAULTS
487 has the side effect that the 'compatible' option will be on by
488 default. This can have unexpected effects. See
489 |'compatible'|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490
491 *-U* *E230*
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000492-U {gvimrc} The file {gvimrc} is read for initializations when the GUI
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000493 starts. Other GUI initializations are skipped. When {gvimrc}
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000494 is equal to "NONE", no file is read for GUI initializations at
495 all. |gui-init|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 Exception: Reading the system-wide menu file is always done.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497
498 *-i*
499-i {viminfo} The file "viminfo" is used instead of the default viminfo
500 file. If the name "NONE" is used (all uppercase), no viminfo
501 file is read or written, even if 'viminfo' is set or when
502 ":rv" or ":wv" are used. See also |viminfo-file|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200504 *--clean*
Bram Moolenaara9604e62018-07-21 05:56:22 +0200505--clean Similar to "-u DEFAULTS -U NONE -i NONE":
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200506 - initializations from files and environment variables is
507 skipped
Bram Moolenaarf0d58ef2018-11-16 16:13:44 +0100508 - 'runtimepath' and 'packpath' are set to exclude home
Bram Moolenaara9604e62018-07-21 05:56:22 +0200509 directory entries (does not happen with -u DEFAULTS).
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200510 - the |defaults.vim| script is loaded, which implies
511 'nocompatible': use Vim defaults
Bram Moolenaar62dd4522018-03-14 21:20:02 +0100512 - no |gvimrc| script is loaded
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200513 - no viminfo file is read or written
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200514
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 *-x*
516-x Use encryption to read/write files. Will prompt for a key,
517 which is then stored in the 'key' option. All writes will
518 then use this key to encrypt the text. The '-x' argument is
519 not needed when reading a file, because there is a check if
520 the file that is being read has been encrypted, and Vim asks
521 for a key automatically. |encryption|
522
523 *-X*
524-X Do not try connecting to the X server to get the current
525 window title and copy/paste using the X clipboard. This
526 avoids a long startup time when running Vim in a terminal
527 emulator and the connection to the X server is slow.
Bram Moolenaar3f269672009-11-03 11:11:11 +0000528 See |--startuptime| to find out if affects you.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 Only makes a difference on Unix or VMS, when compiled with the
530 |+X11| feature. Otherwise it's ignored.
531 To disable the connection only for specific terminals, see the
532 'clipboard' option.
533 When the X11 Session Management Protocol (XSMP) handler has
534 been built in, the -X option also disables that connection as
535 it, too, may have undesirable delays.
536 When the connection is desired later anyway (e.g., for
537 client-server messages), call the |serverlist()| function.
538 This does not enable the XSMP handler though.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539
540 *-s*
541-s {scriptin} The script file "scriptin" is read. The characters in the
542 file are interpreted as if you had typed them. The same can
543 be done with the command ":source! {scriptin}". If the end
544 of the file is reached before the editor exits, further
545 characters are read from the keyboard. Only works when not
546 started in Ex mode, see |-s-ex|. See also |complex-repeat|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000548 *-w_nr*
549-w {number}
550-w{number} Set the 'window' option to {number}.
551
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 *-w*
553-w {scriptout} All the characters that you type are recorded in the file
554 "scriptout", until you exit Vim. This is useful if you want
555 to create a script file to be used with "vim -s" or
556 ":source!". When the "scriptout" file already exists, new
557 characters are appended. See also |complex-repeat|.
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000558 {scriptout} cannot start with a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559
560 *-W*
561-W {scriptout} Like -w, but do not append, overwrite an existing file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563--remote [+{cmd}] {file} ...
564 Open the {file} in another Vim that functions as a server.
565 Any non-file arguments must come before this.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200566 See |--remote|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567
568--remote-silent [+{cmd}] {file} ...
569 Like --remote, but don't complain if there is no server.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200570 See |--remote-silent|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571
572--remote-wait [+{cmd}] {file} ...
573 Like --remote, but wait for the server to finish editing the
574 file(s).
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200575 See |--remote-wait|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576
577--remote-wait-silent [+{cmd}] {file} ...
578 Like --remote-wait, but don't complain if there is no server.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200579 See |--remote-wait-silent|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580
581--servername {name}
582 Specify the name of the Vim server to send to or to become.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200583 See |--servername|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584
585--remote-send {keys}
586 Send {keys} to a Vim server and exit.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200587 See |--remote-send|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588
589--remote-expr {expr}
590 Evaluate {expr} in another Vim that functions as a server.
591 The result is printed on stdout.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200592 See |--remote-expr|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593
594--serverlist Output a list of Vim server names and exit. See
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200595 |--serverlist|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596
597--socketid {id} *--socketid*
598 GTK+ GUI Vim only. Make gvim try to use GtkPlug mechanism, so
599 that it runs inside another window. See |gui-gtk-socketid|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200600 for details.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601
Bram Moolenaar78e17622007-08-30 10:26:19 +0000602--windowid {id} *--windowid*
603 Win32 GUI Vim only. Make gvim try to use the window {id} as a
604 parent, so that it runs inside that window. See
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200605 |gui-w32-windowid| for details.
Bram Moolenaar78e17622007-08-30 10:26:19 +0000606
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607--echo-wid *--echo-wid*
608 GTK+ GUI Vim only. Make gvim echo the Window ID on stdout,
609 which can be used to run gvim in a kpart widget. The format
610 of the output is: >
611 WID: 12345\n
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612
613--role {role} *--role*
614 GTK+ 2 GUI only. Set the role of the main window to {role}.
615 The window role can be used by a window manager to uniquely
616 identify a window, in order to restore window placement and
617 such. The --role argument is passed automatically when
618 restoring the session on login. See |gui-gnome-session|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619
620-P {parent-title} *-P* *MDI* *E671* *E672*
621 Win32 only: Specify the title of the parent application. When
622 possible, Vim will run in an MDI window inside the
623 application.
624 {parent-title} must appear in the window title of the parent
625 application. Make sure that it is specific enough.
626 Note that the implementation is still primitive. It won't
627 work with all applications and the menu doesn't work.
628
629-nb *-nb*
630-nb={fname}
631-nb:{hostname}:{addr}:{password}
632 Attempt connecting to Netbeans and become an editor server for
633 it. The second form specifies a file to read connection info
634 from. The third form specifies the hostname, address and
635 password for connecting to Netbeans. |netbeans-run|
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100636 {only available when compiled with the |+netbeans_intg|
637 feature; if not then -nb will make Vim exit}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638
639If the executable is called "view", Vim will start in Readonly mode. This is
640useful if you can make a hard or symbolic link from "view" to "vim".
641Starting in Readonly mode can also be done with "vim -R".
642
643If the executable is called "ex", Vim will start in "Ex" mode. This means it
644will accept only ":" commands. But when the "-v" argument is given, Vim will
645start in Normal mode anyway.
646
647Additional arguments are available on unix like systems when compiled with
648X11 GUI support. See |gui-resources|.
649
650==============================================================================
6512. Vim on the Amiga *starting-amiga*
652
653Starting Vim from the Workbench *workbench*
654-------------------------------
655
656Vim can be started from the Workbench by clicking on its icon twice. It will
657then start with an empty buffer.
658
659Vim can be started to edit one or more files by using a "Project" icon. The
660"Default Tool" of the icon must be the full pathname of the Vim executable.
661The name of the ".info" file must be the same as the name of the text file.
662By clicking on this icon twice, Vim will be started with the file name as
663current file name, which will be read into the buffer (if it exists). You can
664edit multiple files by pressing the shift key while clicking on icons, and
665clicking twice on the last one. The "Default Tool" for all these icons must
666be the same.
667
668It is not possible to give arguments to Vim, other than file names, from the
669workbench.
670
671Vim window *amiga-window*
672----------
673
674Vim will run in the CLI window where it was started. If Vim was started with
675the "run" or "runback" command, or if Vim was started from the workbench, it
676will open a window of its own.
677
678Technical detail:
679 To open the new window a little trick is used. As soon as Vim
680 recognizes that it does not run in a normal CLI window, it will
681 create a script file in "t:". This script file contains the same
682 command as the one Vim was started with, and an "endcli" command.
683 This script file is then executed with a "newcli" command (the "c:run"
684 and "c:newcli" commands are required for this to work). The script
685 file will hang around until reboot, or until you delete it. This
686 method is required to get the ":sh" and ":!" commands to work
687 correctly. But when Vim was started with the -f option (foreground
688 mode), this method is not used. The reason for this is that
689 when a program starts Vim with the -f option it will wait for Vim to
690 exit. With the script trick, the calling program does not know when
691 Vim exits. The -f option can be used when Vim is started by a mail
692 program which also waits for the edit session to finish. As a
693 consequence, the ":sh" and ":!" commands are not available when the
694 -f option is used.
695
696Vim will automatically recognize the window size and react to window
697resizing. Under Amiga DOS 1.3, it is advised to use the fastfonts program,
698"FF", to speed up display redrawing.
699
700==============================================================================
7013. Running eVim *evim-keys*
702
703EVim runs Vim as click-and-type editor. This is very unlike the original Vi
704idea. But it helps for people that don't use Vim often enough to learn the
705commands. Hopefully they will find out that learning to use Normal mode
706commands will make their editing much more effective.
707
708In Evim these options are changed from their default value:
709
710 :set nocompatible Use Vim improvements
711 :set insertmode Remain in Insert mode most of the time
712 :set hidden Keep invisible buffers loaded
713 :set backup Keep backup files (not for VMS)
714 :set backspace=2 Backspace over everything
715 :set autoindent auto-indent new lines
716 :set history=50 keep 50 lines of Ex commands
717 :set ruler show the cursor position
718 :set incsearch show matches halfway typing a pattern
719 :set mouse=a use the mouse in all modes
720 :set hlsearch highlight all matches for a search pattern
721 :set whichwrap+=<,>,[,] <Left> and <Right> wrap around line breaks
722 :set guioptions-=a non-Unix only: don't do auto-select
723
724Key mappings:
725 <Down> moves by screen lines rather than file lines
726 <Up> idem
727 Q does "gq", formatting, instead of Ex mode
728 <BS> in Visual mode: deletes the selection
729 CTRL-X in Visual mode: Cut to clipboard
730 <S-Del> idem
731 CTRL-C in Visual mode: Copy to clipboard
732 <C-Insert> idem
733 CTRL-V Pastes from the clipboard (in any mode)
734 <S-Insert> idem
735 CTRL-Q do what CTRL-V used to do
736 CTRL-Z undo
737 CTRL-Y redo
738 <M-Space> system menu
739 CTRL-A select all
740 <C-Tab> next window, CTRL-W w
741 <C-F4> close window, CTRL-W c
742
743Additionally:
744- ":behave mswin" is used |:behave|
745- syntax highlighting is enabled
746- filetype detection is enabled, filetype plugins and indenting is enabled
747- in a text file 'textwidth' is set to 78
748
749One hint: If you want to go to Normal mode to be able to type a sequence of
750commands, use CTRL-L. |i_CTRL-L|
751
752==============================================================================
7534. Initialization *initialization* *startup*
754
755This section is about the non-GUI version of Vim. See |gui-fork| for
756additional initialization when starting the GUI.
757
758At startup, Vim checks environment variables and files and sets values
759accordingly. Vim proceeds in this order:
760
7611. Set the 'shell' and 'term' option *SHELL* *COMSPEC* *TERM*
762 The environment variable SHELL, if it exists, is used to set the
763 'shell' option. On MS-DOS and Win32, the COMSPEC variable is used
764 if SHELL is not set.
765 The environment variable TERM, if it exists, is used to set the 'term'
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000766 option. However, 'term' will change later when starting the GUI (step
767 8 below).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768
7692. Process the arguments
770 The options and file names from the command that start Vim are
771 inspected. Buffers are created for all files (but not loaded yet).
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000772 The |-V| argument can be used to display or log what happens next,
773 useful for debugging the initializations.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774
7753. Execute Ex commands, from environment variables and/or files
776 An environment variable is read as one Ex command line, where multiple
777 commands must be separated with '|' or "<NL>".
778 *vimrc* *exrc*
779 A file that contains initialization commands is called a "vimrc" file.
780 Each line in a vimrc file is executed as an Ex command line. It is
781 sometimes also referred to as "exrc" file. They are the same type of
782 file, but "exrc" is what Vi always used, "vimrc" is a Vim specific
783 name. Also see |vimrc-intro|.
784
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200785 Places for your personal initializations:
786 Unix $HOME/.vimrc or $HOME/.vim/vimrc
787 OS/2 $HOME/.vimrc, $HOME/vimfiles/vimrc
788 or $VIM/.vimrc (or _vimrc)
789 MS-Windows $HOME/_vimrc, $HOME/vimfiles/vimrc
790 or $VIM/_vimrc
791 Amiga s:.vimrc, home:.vimrc, home:vimfiles:vimrc
792 or $VIM/.vimrc
793
794 The files are searched in the order specified above and only the first
795 one that is found is read.
796
797 RECOMMENDATION: Put all your Vim configuration stuff in the
798 $HOME/.vim/ directory ($HOME/vimfiles/ for MS-Windows). That makes it
799 easy to copy it to another system.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800
801 If Vim was started with "-u filename", the file "filename" is used.
Bram Moolenaare2db6952013-07-24 19:53:36 +0200802 All following initializations until 4. are skipped. $MYVIMRC is not
803 set.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 "vim -u NORC" can be used to skip these initializations without
805 reading a file. "vim -u NONE" also skips loading plugins. |-u|
806
807 If Vim was started in Ex mode with the "-s" argument, all following
808 initializations until 4. are skipped. Only the "-u" option is
809 interpreted.
810 *evim.vim*
811 a. If vim was started as |evim| or |eview| or with the |-y| argument, the
812 script $VIMRUNTIME/evim.vim will be loaded.
813 *system-vimrc*
814 b. For Unix, MS-DOS, MS-Windows, OS/2, VMS, Macintosh, RISC-OS and Amiga
815 the system vimrc file is read for initializations. The path of this
816 file is shown with the ":version" command. Mostly it's "$VIM/vimrc".
817 Note that this file is ALWAYS read in 'compatible' mode, since the
818 automatic resetting of 'compatible' is only done later. Add a ":set
819 nocp" command if you like.
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000820 For the Macintosh the $VIMRUNTIME/macmap.vim is read.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100822 *VIMINIT* *.vimrc* *_vimrc* *EXINIT* *.exrc* *_exrc* *$MYVIMRC*
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +0200823 c. Five places are searched for initializations. The first that exists
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000824 is used, the others are ignored. The $MYVIMRC environment variable is
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100825 set to the file that was first found, unless $MYVIMRC was already set
826 and when using VIMINIT.
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +0200827 I The environment variable VIMINIT (see also |compatible-default|) (*)
828 The value of $VIMINIT is used as an Ex command line.
829 II The user vimrc file(s):
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200830 "$HOME/.vimrc" (for Unix and OS/2) (*)
831 "$HOME/.vim/vimrc" (for Unix and OS/2) (*)
832 "s:.vimrc" (for Amiga) (*)
833 "home:.vimrc" (for Amiga) (*)
834 "home:vimfiles:vimrc" (for Amiga) (*)
835 "$VIM/.vimrc" (for OS/2 and Amiga) (*)
836 "$HOME/_vimrc" (for MS-DOS and Win32) (*)
837 "$HOME/vimfiles/vimrc" (for MS-DOS and Win32) (*)
838 "$VIM/_vimrc" (for MS-DOS and Win32) (*)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 Note: For Unix, OS/2 and Amiga, when ".vimrc" does not exist,
840 "_vimrc" is also tried, in case an MS-DOS compatible file
841 system is used. For MS-DOS and Win32 ".vimrc" is checked
842 after "_vimrc", in case long file names are used.
843 Note: For MS-DOS and Win32, "$HOME" is checked first. If no
844 "_vimrc" or ".vimrc" is found there, "$VIM" is tried.
845 See |$VIM| for when $VIM is not set.
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +0200846 III The environment variable EXINIT.
847 The value of $EXINIT is used as an Ex command line.
848 IV The user exrc file(s). Same as for the user vimrc file, but with
849 "vimrc" replaced by "exrc". But only one of ".exrc" and "_exrc" is
850 used, depending on the system. And without the (*)!
851 V The default vimrc file, $VIMRUNTIME/defaults.vim. This sets up
852 options values and has "syntax on" and "filetype on" commands,
853 which is what most new users will want. See |defaults.vim|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854
Bram Moolenaar36f44c22016-08-28 18:17:20 +0200855 d. If the 'exrc' option is on (which is NOT the default), the current
Bram Moolenaar5c5474b2005-04-19 21:40:26 +0000856 directory is searched for three files. The first that exists is used,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 the others are ignored.
858 - The file ".vimrc" (for Unix, Amiga and OS/2) (*)
859 "_vimrc" (for MS-DOS and Win32) (*)
860 - The file "_vimrc" (for Unix, Amiga and OS/2) (*)
861 ".vimrc" (for MS-DOS and Win32) (*)
862 - The file ".exrc" (for Unix, Amiga and OS/2)
863 "_exrc" (for MS-DOS and Win32)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864
865 (*) Using this file or environment variable will cause 'compatible' to be
866 off by default. See |compatible-default|.
867
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100868 Note: When using the |mzscheme| interface, it is initialized after loading
Bram Moolenaar01164a62017-11-02 22:58:42 +0100869 the vimrc file. Changing 'mzschemedll' later has no effect.
870
Bram Moolenaar071d4272004-06-13 20:20:40 +00008714. Load the plugin scripts. *load-plugins*
872 This does the same as the command: >
Bram Moolenaar1c7715d2005-10-03 22:02:18 +0000873 :runtime! plugin/**/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874< The result is that all directories in the 'runtimepath' option will be
875 searched for the "plugin" sub-directory and all files ending in ".vim"
Bram Moolenaar1c7715d2005-10-03 22:02:18 +0000876 will be sourced (in alphabetical order per directory), also in
877 subdirectories.
Bram Moolenaar66459b72016-08-06 19:01:55 +0200878 However, directories in 'runtimepath' ending in "after" are skipped
879 here and only loaded after packages, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 Loading plugins won't be done when:
881 - The 'loadplugins' option was reset in a vimrc file.
882 - The |--noplugin| command line argument is used.
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200883 - The |--clean| command line argument is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 - The "-u NONE" command line argument is used |-u|.
885 - When Vim was compiled without the |+eval| feature.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000886 Note that using "-c 'set noloadplugins'" doesn't work, because the
887 commands from the command line have not been executed yet. You can
Bram Moolenaar66459b72016-08-06 19:01:55 +0200888 use "--cmd 'set noloadplugins'" or "--cmd 'set loadplugins'" |--cmd|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889
Bram Moolenaar03413f42016-04-12 21:07:15 +0200890 Packages are loaded. These are plugins, as above, but found in the
891 "start" directory of each entry in 'packpath'. Every plugin directory
892 found is added in 'runtimepath' and then the plugins are sourced. See
893 |packages|.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100894
Bram Moolenaar66459b72016-08-06 19:01:55 +0200895 The plugins scripts are loaded, as above, but now only the directories
896 ending in "after" are used. Note that 'runtimepath' will have changed
897 if packages have been found, but that should not add a directory
898 ending in "after".
899
Bram Moolenaar071d4272004-06-13 20:20:40 +00009005. Set 'shellpipe' and 'shellredir'
901 The 'shellpipe' and 'shellredir' options are set according to the
902 value of the 'shell' option, unless they have been set before.
903 This means that Vim will figure out the values of 'shellpipe' and
904 'shellredir' for you, unless you have set them yourself.
905
9066. Set 'updatecount' to zero, if "-n" command argument used
907
9087. Set binary options
909 If the "-b" flag was given to Vim, the options for binary editing will
910 be set now. See |-b|.
911
9128. Perform GUI initializations
913 Only when starting "gvim", the GUI initializations will be done. See
914 |gui-init|.
915
9169. Read the viminfo file
917 If the 'viminfo' option is not empty, the viminfo file is read. See
918 |viminfo-file|.
919
92010. Read the quickfix file
921 If the "-q" flag was given to Vim, the quickfix file is read. If this
922 fails, Vim exits.
923
92411. Open all windows
925 When the |-o| flag was given, windows will be opened (but not
926 displayed yet).
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000927 When the |-p| flag was given, tab pages will be created (but not
928 displayed yet).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 When switching screens, it happens now. Redrawing starts.
930 If the "-q" flag was given to Vim, the first error is jumped to.
931 Buffers for all windows will be loaded.
932
93312. Execute startup commands
934 If a "-t" flag was given to Vim, the tag is jumped to.
935 The commands given with the |-c| and |+cmd| arguments are executed.
936 If the 'insertmode' option is set, Insert mode is entered.
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100937 The starting flag is reset, has("vim_starting") will now return zero.
938 The |v:vim_did_enter| variable is set to 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 The |VimEnter| autocommands are executed.
940
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +0200941The $MYVIMRC or $MYGVIMRC file will be set to the first found vimrc and/or
942gvimrc file.
943
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200944
945Some hints on using initializations ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946
947Standard setup:
948Create a vimrc file to set the default settings and mappings for all your edit
949sessions. Put it in a place so that it will be found by 3b:
950 ~/.vimrc (Unix and OS/2)
951 s:.vimrc (Amiga)
952 $VIM\_vimrc (MS-DOS and Win32)
953Note that creating a vimrc file will cause the 'compatible' option to be off
954by default. See |compatible-default|.
955
956Local setup:
957Put all commands that you need for editing a specific directory only into a
958vimrc file and place it in that directory under the name ".vimrc" ("_vimrc"
959for MS-DOS and Win32). NOTE: To make Vim look for these special files you
960have to turn on the option 'exrc'. See |trojan-horse| too.
961
962System setup:
963This only applies if you are managing a Unix system with several users and
964want to set the defaults for all users. Create a vimrc file with commands
965for default settings and mappings and put it in the place that is given with
966the ":version" command.
967
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200968
969Saving the current state of Vim to a file ~
970
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971Whenever you have changed values of options or when you have created a
972mapping, then you may want to save them in a vimrc file for later use. See
973|save-settings| about saving the current state of settings to a file.
974
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200975
976Avoiding setup problems for Vi users ~
977
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978Vi uses the variable EXINIT and the file "~/.exrc". So if you do not want to
979interfere with Vi, then use the variable VIMINIT and the file "vimrc" instead.
980
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200981
982Amiga environment variables ~
983
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984On the Amiga, two types of environment variables exist. The ones set with the
985DOS 1.3 (or later) setenv command are recognized. See the AmigaDos 1.3
986manual. The environment variables set with the old Manx Set command (before
987version 5.0) are not recognized.
988
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200989
990MS-DOS line separators ~
991
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992On MS-DOS-like systems (MS-DOS itself, Win32, and OS/2), Vim assumes that all
993the vimrc files have <CR> <NL> pairs as line separators. This will give
994problems if you have a file with only <NL>s and have a line like
995":map xx yy^M". The trailing ^M will be ignored.
996
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200997
998Vi compatible default value ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 *compatible-default*
1000When Vim starts, the 'compatible' option is on. This will be used when Vim
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001001starts its initializations. But as soon as:
1002- a user vimrc file is found, or
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +01001003- a vimrc file in the current directory is found, or
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001004- the "VIMINIT" environment variable is set, or
1005- the "-N" command line argument is given, or
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001006- the "--clean" command line argument is given, or
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001007- the |defaults.vim| script is loaded, or
Bram Moolenaar72540672018-02-09 22:00:53 +01001008- a gvimrc file was found,
1009then the option will be set to 'nocompatible'.
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001010
1011Note that this does NOT happen when a system-wide vimrc file was found.
1012
1013This has the side effect of setting or resetting other options (see
1014'compatible'). But only the options that have not been set or reset will be
1015changed. This has the same effect like the value of 'compatible' had this
1016value when starting Vim.
1017
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001018'compatible' is NOT reset, and |defaults.vim| is not loaded:
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001019- when Vim was started with the |-u| command line argument, especially with
1020 "-u NONE", or
1021- when started with the |-C| command line argument, or
1022- when the name of the executable ends in "ex". (This has been done to make
1023 Vim behave like "ex", when it is started as "ex")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024
1025But there is a side effect of setting or resetting 'compatible' at the moment
1026a .vimrc file is found: Mappings are interpreted the moment they are
1027encountered. This makes a difference when using things like "<CR>". If the
1028mappings depend on a certain value of 'compatible', set or reset it before
1029giving the mapping.
1030
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001031
1032Defaults without a .vimrc file ~
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001033 *defaults.vim*
1034If Vim is started normally and no user vimrc file is found, the
Bram Moolenaar40962ec2018-01-28 22:47:25 +01001035$VIMRUNTIME/defaults.vim script is loaded. This will set 'compatible' off,
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001036switch on syntax highlighting and a few more things. See the script for
1037details. NOTE: this is done since Vim 8.0, not in Vim 7.4. (it was added in
1038patch 7.4.2111 to be exact).
1039
1040This should work well for new Vim users. If you create your own .vimrc, it is
Bram Moolenaar01164a62017-11-02 22:58:42 +01001041recommended to add these lines somewhere near the top: >
Bram Moolenaar7e1479b2016-09-11 15:07:27 +02001042 unlet! skip_defaults_vim
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001043 source $VIMRUNTIME/defaults.vim
1044Then Vim works like before you had a .vimrc. Copying $VIMRUNTIME/vimrc_example
1045is way to do this. Alternatively, you can copy defaults.vim to your .vimrc
Bram Moolenaar7e1479b2016-09-11 15:07:27 +02001046and modify it (but then you won't get updates when it changes).
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001047
1048If you don't like some of the defaults, you can still source defaults.vim and
1049revert individual settings. See the defaults.vim file for hints on how to
1050revert each item.
Bram Moolenaar7e1479b2016-09-11 15:07:27 +02001051 *skip_defaults_vim*
Bram Moolenaar64d8e252016-09-06 22:12:34 +02001052If you use a system-wide vimrc and don't want defaults.vim to change settings,
Bram Moolenaar7e1479b2016-09-11 15:07:27 +02001053set the "skip_defaults_vim" variable. If this was set and you want to load
1054defaults.vim from your .vimrc, first unlet skip_defaults_vim, as in the
1055example above.
Bram Moolenaar64d8e252016-09-06 22:12:34 +02001056
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001058Avoiding trojan horses ~
1059 *trojan-horse*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060While reading the "vimrc" or the "exrc" file in the current directory, some
1061commands can be disabled for security reasons by setting the 'secure' option.
1062This is always done when executing the command from a tags file. Otherwise it
1063would be possible that you accidentally use a vimrc or tags file that somebody
1064else created and contains nasty commands. The disabled commands are the ones
1065that start a shell, the ones that write to a file, and ":autocmd". The ":map"
1066commands are echoed, so you can see which keys are being mapped.
1067 If you want Vim to execute all commands in a local vimrc file, you
1068can reset the 'secure' option in the EXINIT or VIMINIT environment variable or
1069in the global "exrc" or "vimrc" file. This is not possible in "vimrc" or
1070"exrc" in the current directory, for obvious reasons.
1071 On Unix systems, this only happens if you are not the owner of the
1072vimrc file. Warning: If you unpack an archive that contains a vimrc or exrc
1073file, it will be owned by you. You won't have the security protection. Check
1074the vimrc file before you start Vim in that directory, or reset the 'exrc'
1075option. Some Unix systems allow a user to do "chown" on a file. This makes
1076it possible for another user to create a nasty vimrc and make you the owner.
1077Be careful!
1078 When using tag search commands, executing the search command (the last
1079part of the line in the tags file) is always done in secure mode. This works
1080just like executing a command from a vimrc/exrc in the current directory.
1081
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001082
1083If Vim startup is slow ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 *slow-start*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001085If Vim takes a long time to start up, use the |--startuptime| argument to find
1086out what happens. There are a few common causes:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087- If the Unix version was compiled with the GUI and/or X11 (check the output
1088 of ":version" for "+GUI" and "+X11"), it may need to load shared libraries
1089 and connect to the X11 server. Try compiling a version with GUI and X11
1090 disabled. This also should make the executable smaller.
1091 Use the |-X| command line argument to avoid connecting to the X server when
1092 running in a terminal.
1093- If you have "viminfo" enabled, the loading of the viminfo file may take a
1094 while. You can find out if this is the problem by disabling viminfo for a
1095 moment (use the Vim argument "-i NONE", |-i|). Try reducing the number of
1096 lines stored in a register with ":set viminfo='20,<50,s10". |viminfo-file|.
1097
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001098
1099Intro message ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 *:intro*
1101When Vim starts without a file name, an introductory message is displayed (for
1102those who don't know what Vim is). It is removed as soon as the display is
1103redrawn in any way. To see the message again, use the ":intro" command (if
1104there is not enough room, you will see only part of it).
1105 To avoid the intro message on startup, add the 'I' flag to 'shortmess'.
1106
1107 *info-message*
1108The |--help| and |--version| arguments cause Vim to print a message and then
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001109exit. Normally the message is sent to stdout, thus can be redirected to a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110file with: >
1111
1112 vim --help >file
1113
1114From inside Vim: >
1115
1116 :read !vim --help
1117
1118When using gvim, it detects that it might have been started from the desktop,
1119without a terminal to show messages on. This is detected when both stdout and
1120stderr are not a tty. This breaks the ":read" command, as used in the example
1121above. To make it work again, set 'shellredir' to ">" instead of the default
1122">&": >
1123
1124 :set shellredir=>
1125 :read !gvim --help
1126
1127This still won't work for systems where gvim does not use stdout at all
1128though.
1129
1130==============================================================================
11315. $VIM and $VIMRUNTIME
1132 *$VIM*
1133The environment variable "$VIM" is used to locate various user files for Vim,
1134such as the user startup script ".vimrc". This depends on the system, see
1135|startup|.
1136
1137To avoid the need for every user to set the $VIM environment variable, Vim
1138will try to get the value for $VIM in this order:
11391. The value defined by the $VIM environment variable. You can use this to
1140 make Vim look in a specific directory for its support files. Example: >
1141 setenv VIM /home/paul/vim
11422. The path from 'helpfile' is used, unless it contains some environment
1143 variable too (the default is "$VIMRUNTIME/doc/help.txt": chicken-egg
1144 problem). The file name ("help.txt" or any other) is removed. Then
1145 trailing directory names are removed, in this order: "doc", "runtime" and
1146 "vim{version}" (e.g., "vim54").
11473. For MSDOS, Win32 and OS/2 Vim tries to use the directory name of the
1148 executable. If it ends in "/src", this is removed. This is useful if you
1149 unpacked the .zip file in some directory, and adjusted the search path to
1150 find the vim executable. Trailing directory names are removed, in this
1151 order: "runtime" and "vim{version}" (e.g., "vim54").
11524. For Unix the compile-time defined installation directory is used (see the
1153 output of ":version").
1154
1155Once Vim has done this once, it will set the $VIM environment variable. To
1156change it later, use a ":let" command like this: >
1157 :let $VIM = "/home/paul/vim/"
1158<
1159 *$VIMRUNTIME*
1160The environment variable "$VIMRUNTIME" is used to locate various support
1161files, such as the on-line documentation and files used for syntax
1162highlighting. For example, the main help file is normally
1163"$VIMRUNTIME/doc/help.txt".
1164You don't normally set $VIMRUNTIME yourself, but let Vim figure it out. This
1165is the order used to find the value of $VIMRUNTIME:
11661. If the environment variable $VIMRUNTIME is set, it is used. You can use
1167 this when the runtime files are in an unusual location.
11682. If "$VIM/vim{version}" exists, it is used. {version} is the version
1169 number of Vim, without any '-' or '.'. For example: "$VIM/vim54". This is
1170 the normal value for $VIMRUNTIME.
11713. If "$VIM/runtime" exists, it is used.
11724. The value of $VIM is used. This is for backwards compatibility with older
1173 versions.
11745. When the 'helpfile' option is set and doesn't contain a '$', its value is
1175 used, with "doc/help.txt" removed from the end.
1176
1177For Unix, when there is a compiled-in default for $VIMRUNTIME (check the
1178output of ":version"), steps 2, 3 and 4 are skipped, and the compiled-in
1179default is used after step 5. This means that the compiled-in default
1180overrules the value of $VIM. This is useful if $VIM is "/etc" and the runtime
1181files are in "/usr/share/vim/vim54".
1182
1183Once Vim has done this once, it will set the $VIMRUNTIME environment variable.
1184To change it later, use a ":let" command like this: >
1185 :let $VIMRUNTIME = "/home/piet/vim/vim54"
1186
Bram Moolenaared203462004-06-16 11:19:22 +00001187In case you need the value of $VIMRUNTIME in a shell (e.g., for a script that
1188greps in the help files) you might be able to use this: >
1189
1190 VIMRUNTIME=`vim -e -T dumb --cmd 'exe "set t_cm=\<C-M>"|echo $VIMRUNTIME|quit' | tr -d '\015' `
1191
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192==============================================================================
11936. Suspending *suspend*
1194
1195 *iconize* *iconise* *CTRL-Z* *v_CTRL-Z*
1196CTRL-Z Suspend Vim, like ":stop".
1197 Works in Normal and in Visual mode. In Insert and
1198 Command-line mode, the CTRL-Z is inserted as a normal
1199 character. In Visual mode Vim goes back to Normal
1200 mode.
Bram Moolenaar0d660222005-01-07 21:51:51 +00001201 Note: if CTRL-Z undoes a change see |mswin.vim|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202
1203
1204:sus[pend][!] or *:sus* *:suspend* *:st* *:stop*
1205:st[op][!] Suspend Vim.
1206 If the '!' is not given and 'autowrite' is set, every
1207 buffer with changes and a file name is written out.
1208 If the '!' is given or 'autowrite' is not set, changed
1209 buffers are not written, don't forget to bring Vim
1210 back to the foreground later!
1211
1212In the GUI, suspending is implemented as iconising gvim. In Windows 95/NT,
1213gvim is minimized.
1214
1215On many Unix systems, it is possible to suspend Vim with CTRL-Z. This is only
1216possible in Normal and Visual mode (see next chapter, |vim-modes|). Vim will
1217continue if you make it the foreground job again. On other systems, CTRL-Z
1218will start a new shell. This is the same as the ":sh" command. Vim will
1219continue if you exit from the shell.
1220
1221In X-windows the selection is disowned when Vim suspends. this means you
1222can't paste it in another application (since Vim is going to sleep an attempt
1223to get the selection would make the program hang).
1224
1225==============================================================================
Bram Moolenaare0fa3742016-02-20 15:47:01 +010012267. Exiting *exiting*
1227
1228There are several ways to exit Vim:
1229- Close the last window with `:quit`. Only when there are no changes.
1230- Close the last window with `:quit!`. Also when there are changes.
1231- Close all windows with `:qall`. Only when there are no changes.
1232- Close all windows with `:qall!`. Also when there are changes.
1233- Use `:cquit`. Also when there are changes.
1234
1235When using `:cquit` or when there was an error message Vim exits with exit
Bram Moolenaar369b6f52017-01-17 12:22:32 +01001236code 1. Errors can be avoided by using `:silent!` or with `:catch`.
Bram Moolenaare0fa3742016-02-20 15:47:01 +01001237
1238==============================================================================
12398. Saving settings *save-settings*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240
1241Mostly you will edit your vimrc files manually. This gives you the greatest
1242flexibility. There are a few commands to generate a vimrc file automatically.
1243You can use these files as they are, or copy/paste lines to include in another
1244vimrc file.
1245
1246 *:mk* *:mkexrc*
1247:mk[exrc] [file] Write current key mappings and changed options to
1248 [file] (default ".exrc" in the current directory),
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001249 unless it already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250
1251:mk[exrc]! [file] Always write current key mappings and changed
1252 options to [file] (default ".exrc" in the current
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001253 directory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254
1255 *:mkv* *:mkvimrc*
1256:mkv[imrc][!] [file] Like ":mkexrc", but the default is ".vimrc" in the
1257 current directory. The ":version" command is also
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001258 written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
1260These commands will write ":map" and ":set" commands to a file, in such a way
1261that when these commands are executed, the current key mappings and options
1262will be set to the same values. The options 'columns', 'endofline',
1263'fileformat', 'key', 'lines', 'modified', 'scroll', 'term', 'textmode',
1264'ttyfast' and 'ttymouse' are not included, because these are terminal or file
1265dependent. Note that the options 'binary', 'paste' and 'readonly' are
1266included, this might not always be what you want.
1267
1268When special keys are used in mappings, The 'cpoptions' option will be
1269temporarily set to its Vim default, to avoid the mappings to be
1270misinterpreted. This makes the file incompatible with Vi, but makes sure it
1271can be used with different terminals.
1272
1273Only global mappings are stored, not mappings local to a buffer.
1274
1275A common method is to use a default ".vimrc" file, make some modifications
1276with ":map" and ":set" commands and write the modified file. First read the
1277default ".vimrc" in with a command like ":source ~piet/.vimrc.Cprogs", change
1278the settings and then save them in the current directory with ":mkvimrc!". If
1279you want to make this file your default .vimrc, move it to your home directory
1280(on Unix), s: (Amiga) or $VIM directory (MS-DOS). You could also use
1281autocommands |autocommand| and/or modelines |modeline|.
1282
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001283 *vimrc-option-example*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284If you only want to add a single option setting to your vimrc, you can use
1285these steps:
12861. Edit your vimrc file with Vim.
12872. Play with the option until it's right. E.g., try out different values for
1288 'guifont'.
12893. Append a line to set the value of the option, using the expression register
1290 '=' to enter the value. E.g., for the 'guifont' option: >
1291 o:set guifont=<C-R>=&guifont<CR><Esc>
1292< [<C-R> is a CTRL-R, <CR> is a return, <Esc> is the escape key]
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001293 You need to escape special characters, esp. spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294
1295Note that when you create a .vimrc file, this can influence the 'compatible'
1296option, which has several side effects. See |'compatible'|.
1297":mkvimrc", ":mkexrc" and ":mksession" write the command to set or reset the
1298'compatible' option to the output file first, because of these side effects.
1299
1300==============================================================================
Bram Moolenaare0fa3742016-02-20 15:47:01 +010013019. Views and Sessions *views-sessions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302
1303This is introduced in sections |21.4| and |21.5| of the user manual.
1304
1305 *View* *view-file*
1306A View is a collection of settings that apply to one window. You can save a
1307View and when you restore it later, the text is displayed in the same way.
1308The options and mappings in this window will also be restored, so that you can
1309continue editing like when the View was saved.
1310
1311 *Session* *session-file*
1312A Session keeps the Views for all windows, plus the global settings. You can
1313save a Session and when you restore it later the window layout looks the same.
1314You can use a Session to quickly switch between different projects,
1315automatically loading the files you were last working on in that project.
1316
1317Views and Sessions are a nice addition to viminfo-files, which are used to
1318remember information for all Views and Sessions together |viminfo-file|.
1319
1320You can quickly start editing with a previously saved View or Session with the
1321|-S| argument: >
1322 vim -S Session.vim
1323<
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001324All this is {not available when compiled without the |+mksession| feature}.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325
1326 *:mks* *:mksession*
1327:mks[ession][!] [file] Write a Vim script that restores the current editing
1328 session.
1329 When [!] is included an existing file is overwritten.
1330 When [file] is omitted "Session.vim" is used.
1331
1332The output of ":mksession" is like ":mkvimrc", but additional commands are
1333added to the file. Which ones depends on the 'sessionoptions' option. The
1334resulting file, when executed with a ":source" command:
13351. Restores global mappings and options, if 'sessionoptions' contains
1336 "options". Script-local mappings will not be written.
13372. Restores global variables that start with an uppercase letter and contain
1338 at least one lowercase letter, if 'sessionoptions' contains "globals".
13393. Unloads all currently loaded buffers.
13404. Restores the current directory if 'sessionoptions' contains "curdir", or
1341 sets the current directory to where the Session file is if 'sessionoptions'
1342 contains "sesdir".
13435. Restores GUI Vim window position, if 'sessionoptions' contains "winpos".
13446. Restores screen size, if 'sessionoptions' contains "resize".
13457. Reloads the buffer list, with the last cursor positions. If
1346 'sessionoptions' contains "buffers" then all buffers are restored,
1347 including hidden and unloaded buffers. Otherwise only buffers in windows
1348 are restored.
13498. Restores all windows with the same layout. If 'sessionoptions' contains
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001350 "help", help windows are restored. If 'sessionoptions' contains "blank",
1351 windows editing a buffer without a name will be restored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 If 'sessionoptions' contains "winsize" and no (help/blank) windows were
1353 left out, the window sizes are restored (relative to the screen size).
1354 Otherwise, the windows are just given sensible sizes.
13559. Restores the Views for all the windows, as with |:mkview|. But
1356 'sessionoptions' is used instead of 'viewoptions'.
135710. If a file exists with the same name as the Session file, but ending in
1358 "x.vim" (for eXtra), executes that as well. You can use *x.vim files to
1359 specify additional settings and actions associated with a given Session,
1360 such as creating menu items in the GUI version.
1361
1362After restoring the Session, the full filename of your current Session is
1363available in the internal variable "v:this_session" |this_session-variable|.
1364An example mapping: >
1365 :nmap <F2> :wa<Bar>exe "mksession! " . v:this_session<CR>:so ~/sessions/
1366This saves the current Session, and starts off the command to load another.
1367
Bram Moolenaar4a85b412006-04-23 22:40:29 +00001368A session includes all tab pages, unless "tabpages" was removed from
1369'sessionoptions'. |tab-page|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00001370
Bram Moolenaar9372a112005-12-06 19:59:18 +00001371The |SessionLoadPost| autocmd event is triggered after a session file is
1372loaded/sourced.
1373 *SessionLoad-variable*
1374While the session file is loading the SessionLoad global variable is set to 1.
1375Plugins can use this to postpone some work until the SessionLoadPost event is
1376triggered.
1377
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 *:mkvie* *:mkview*
1379:mkvie[w][!] [file] Write a Vim script that restores the contents of the
1380 current window.
1381 When [!] is included an existing file is overwritten.
1382 When [file] is omitted or is a number from 1 to 9, a
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001383 name is generated and 'viewdir' prepended. When the
Bram Moolenaar7e38ea22014-04-05 22:55:53 +02001384 last path part of 'viewdir' does not exist, this
1385 directory is created. E.g., when 'viewdir' is
1386 "$VIM/vimfiles/view" then "view" is created in
1387 "$VIM/vimfiles".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 An existing file is always overwritten then. Use
1389 |:loadview| to load this view again.
1390 When [file] is the name of a file ('viewdir' is not
1391 used), a command to edit the file is added to the
1392 generated file.
1393
1394The output of ":mkview" contains these items:
13951. The argument list used in the window. When the global argument list is
1396 used it is reset to the global list.
1397 The index in the argument list is also restored.
13982. The file being edited in the window. If there is no file, the window is
1399 made empty.
14003. Restore mappings, abbreviations and options local to the window if
1401 'viewoptions' contains "options" or "localoptions". For the options it
1402 restores only values that are local to the current buffer and values local
1403 to the window.
1404 When storing the view as part of a session and "options" is in
1405 'sessionoptions', global values for local options will be stored too.
14064. Restore folds when using manual folding and 'viewoptions' contains
1407 "folds". Restore manually opened and closed folds.
14085. The scroll position and the cursor position in the file. Doesn't work very
1409 well when there are closed folds.
14106. The local current directory, if it is different from the global current
Bram Moolenaar7f2e9d72017-11-11 20:58:53 +01001411 directory and 'viewoptions' contains "curdir".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412
1413Note that Views and Sessions are not perfect:
1414- They don't restore everything. For example, defined functions, autocommands
1415 and ":syntax on" are not included. Things like register contents and
1416 command line history are in viminfo, not in Sessions or Views.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001417- Global option values are only set when they differ from the default value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 When the current value is not the default value, loading a Session will not
1419 set it back to the default value. Local options will be set back to the
1420 default value though.
1421- Existing mappings will be overwritten without warning. An existing mapping
1422 may cause an error for ambiguity.
1423- When storing manual folds and when storing manually opened/closed folds,
1424 changes in the file between saving and loading the view will mess it up.
1425- The Vim script is not very efficient. But still faster than typing the
1426 commands yourself!
1427
1428 *:lo* *:loadview*
1429:lo[adview] [nr] Load the view for the current file. When [nr] is
1430 omitted, the view stored with ":mkview" is loaded.
1431 When [nr] is specified, the view stored with ":mkview
1432 [nr]" is loaded.
1433
1434The combination of ":mkview" and ":loadview" can be used to store up to ten
1435different views of a file. These are remembered in the directory specified
1436with the 'viewdir' option. The views are stored using the file name. If a
1437file is renamed or accessed through a (symbolic) link the view will not be
1438found.
1439
1440You might want to clean up your 'viewdir' directory now and then.
1441
1442To automatically save and restore views for *.c files: >
1443 au BufWinLeave *.c mkview
1444 au BufWinEnter *.c silent loadview
1445
1446==============================================================================
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100144710. The viminfo file *viminfo* *viminfo-file* *E136*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 *E575* *E576* *E577*
1449If you exit Vim and later start it again, you would normally lose a lot of
1450information. The viminfo file can be used to remember that information, which
1451enables you to continue where you left off.
1452
1453This is introduced in section |21.3| of the user manual.
1454
1455The viminfo file is used to store:
1456- The command line history.
1457- The search string history.
1458- The input-line history.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001459- Contents of non-empty registers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460- Marks for several files.
1461- File marks, pointing to locations in files.
1462- Last search/substitute pattern (for 'n' and '&').
1463- The buffer list.
1464- Global variables.
1465
1466The viminfo file is not supported when the |+viminfo| feature has been
1467disabled at compile time.
1468
1469You could also use a Session file. The difference is that the viminfo file
1470does not depend on what you are working on. There normally is only one
1471viminfo file. Session files are used to save the state of a specific editing
1472Session. You could have several Session files, one for each project you are
1473working on. Viminfo and Session files together can be used to effectively
1474enter Vim and directly start working in your desired setup. |session-file|
1475
1476 *viminfo-read*
1477When Vim is started and the 'viminfo' option is non-empty, the contents of
1478the viminfo file are read and the info can be used in the appropriate places.
Bram Moolenaard812df62008-11-09 12:46:09 +00001479The |v:oldfiles| variable is filled. The marks are not read in at startup
1480(but file marks are). See |initialization| for how to set the 'viminfo'
1481option upon startup.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482
1483 *viminfo-write*
1484When Vim exits and 'viminfo' is non-empty, the info is stored in the viminfo
1485file (it's actually merged with the existing one, if one exists). The
1486'viminfo' option is a string containing information about what info should be
1487stored, and contains limits on how much should be stored (see 'viminfo').
1488
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001489Merging happens in two ways. Most items that have been changed or set in the
1490current Vim session are stored, and what was not changed is filled from what
1491is currently in the viminfo file. For example:
1492- Vim session A reads the viminfo, which contains variable START.
1493- Vim session B does the same
1494- Vim session A sets the variables AAA and BOTH and exits
1495- Vim session B sets the variables BBB and BOTH and exits
1496Now the viminfo will have:
1497 START - it was in the viminfo and wasn't changed in session A or B
1498 AAA - value from session A, session B kept it
1499 BBB - value from session B
1500 BOTH - value from session B, value from session A is lost
1501
Bram Moolenaar063b9d12016-07-09 20:21:48 +02001502 *viminfo-timestamp*
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001503For some items a timestamp is used to keep the last changed version. Here it
1504doesn't matter in which sequence Vim sessions exit, the newest item(s) are
1505always kept. This is used for:
1506- The command line history.
1507- The search string history.
1508- The input-line history.
1509- Contents of non-empty registers.
1510- The jump list
1511- File marks
Bram Moolenaara02a5512016-06-17 12:48:11 +02001512The timestamp feature was added before Vim 8.0. Older versions of Vim,
1513starting with 7.4.1131, will keep the items with timestamp, but not use them.
1514Thus when using both an older and a newer version of Vim the most recent data
1515will be kept.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001516
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517Notes for Unix:
1518- The file protection for the viminfo file will be set to prevent other users
1519 from being able to read it, because it may contain any text or commands that
1520 you have worked with.
1521- If you want to share the viminfo file with other users (e.g. when you "su"
1522 to another user), you can make the file writable for the group or everybody.
Bram Moolenaar7f2e9d72017-11-11 20:58:53 +01001523 Vim will preserve this when replacing the viminfo file. Be careful, don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 allow just anybody to read and write your viminfo file!
1525- Vim will not overwrite a viminfo file that is not writable by the current
1526 "real" user. This helps for when you did "su" to become root, but your
1527 $HOME is still set to a normal user's home directory. Otherwise Vim would
1528 create a viminfo file owned by root that nobody else can read.
Bram Moolenaar69c2f172007-05-12 14:57:31 +00001529- The viminfo file cannot be a symbolic link. This is to avoid security
1530 issues.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531
1532Marks are stored for each file separately. When a file is read and 'viminfo'
1533is non-empty, the marks for that file are read from the viminfo file. NOTE:
1534The marks are only written when exiting Vim, which is fine because marks are
1535remembered for all the files you have opened in the current editing session,
1536unless ":bdel" is used. If you want to save the marks for a file that you are
1537about to abandon with ":bdel", use ":wv". The '[' and ']' marks are not
1538stored, but the '"' mark is. The '"' mark is very useful for jumping to the
1539cursor position when the file was last exited. No marks are saved for files
1540that start with any string given with the "r" flag in 'viminfo'. This can be
1541used to avoid saving marks for files on removable media (for MS-DOS you would
1542use "ra:,rb:", for Amiga "rdf0:,rdf1:,rdf2:").
Bram Moolenaard812df62008-11-09 12:46:09 +00001543The |v:oldfiles| variable is filled with the file names that the viminfo file
1544has marks for.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545
1546 *viminfo-file-marks*
1547Uppercase marks ('A to 'Z) are stored when writing the viminfo file. The
1548numbered marks ('0 to '9) are a bit special. When the viminfo file is written
1549(when exiting or with the ":wviminfo" command), '0 is set to the current cursor
1550position and file. The old '0 is moved to '1, '1 to '2, etc. This
1551resembles what happens with the "1 to "9 delete registers. If the current
1552cursor position is already present in '0 to '9, it is moved to '0, to avoid
1553having the same position twice. The result is that with "'0", you can jump
1554back to the file and line where you exited Vim. To do that right away, try
1555using this command: >
1556
1557 vim -c "normal '0"
1558
Bram Moolenaar864207d2008-06-24 22:14:38 +00001559In a csh compatible shell you could make an alias for it: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560
1561 alias lvim vim -c '"'normal "'"0'"'
1562
Bram Moolenaar864207d2008-06-24 22:14:38 +00001563For a bash-like shell: >
1564
1565 alias lvim='vim -c "normal '\''0"'
1566
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567Use the "r" flag in 'viminfo' to specify for which files no marks should be
1568remembered.
1569
1570
1571VIMINFO FILE NAME *viminfo-file-name*
1572
1573- The default name of the viminfo file is "$HOME/.viminfo" for Unix and OS/2,
1574 "s:.viminfo" for Amiga, "$HOME\_viminfo" for MS-DOS and Win32. For the last
1575 two, when $HOME is not set, "$VIM\_viminfo" is used. When $VIM is also not
1576 set, "c:\_viminfo" is used. For OS/2 "$VIM/.viminfo" is used when $HOME is
1577 not set and $VIM is set.
1578- The 'n' flag in the 'viminfo' option can be used to specify another viminfo
1579 file name |'viminfo'|.
1580- The "-i" Vim argument can be used to set another file name, |-i|. When the
1581 file name given is "NONE" (all uppercase), no viminfo file is ever read or
1582 written. Also not for the commands below!
Bram Moolenaarb477af22018-07-15 20:20:18 +02001583- The 'viminfofile' option can be used like the "-i" argument. In fact, the
1584 value form the "-i" argument is stored in the 'viminfofile' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585- For the commands below, another file name can be given, overriding the
1586 default and the name given with 'viminfo' or "-i" (unless it's NONE).
1587
1588
1589CHARACTER ENCODING *viminfo-encoding*
1590
1591The text in the viminfo file is encoded as specified with the 'encoding'
1592option. Normally you will always work with the same 'encoding' value, and
1593this works just fine. However, if you read the viminfo file with another
1594value for 'encoding' than what it was written with, some of the text
1595(non-ASCII characters) may be invalid. If this is unacceptable, add the 'c'
1596flag to the 'viminfo' option: >
1597 :set viminfo+=c
1598Vim will then attempt to convert the text in the viminfo file from the
1599'encoding' value it was written with to the current 'encoding' value. This
1600requires Vim to be compiled with the |+iconv| feature. Filenames are not
1601converted.
1602
1603
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001604MANUALLY READING AND WRITING *viminfo-read-write*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605
1606Two commands can be used to read and write the viminfo file manually. This
1607can be used to exchange registers between two running Vim programs: First
1608type ":wv" in one and then ":rv" in the other. Note that if the register
1609already contained something, then ":rv!" would be required. Also note
1610however that this means everything will be overwritten with information from
1611the first Vim, including the command line history, etc.
1612
1613The viminfo file itself can be edited by hand too, although we suggest you
1614start with an existing one to get the format right. It is reasonably
1615self-explanatory once you're in there. This can be useful in order to
1616create a second file, say "~/.my_viminfo" which could contain certain
1617settings that you always want when you first start Vim. For example, you
1618can preload registers with particular data, or put certain commands in the
1619command line history. A line in your .vimrc file like >
1620 :rviminfo! ~/.my_viminfo
1621can be used to load this information. You could even have different viminfos
1622for different types of files (e.g., C code) and load them based on the file
1623name, using the ":autocmd" command (see |:autocmd|).
1624
1625 *viminfo-errors*
1626When Vim detects an error while reading a viminfo file, it will not overwrite
1627that file. If there are more than 10 errors, Vim stops reading the viminfo
1628file. This was done to avoid accidentally destroying a file when the file
1629name of the viminfo file is wrong. This could happen when accidentally typing
1630"vim -i file" when you wanted "vim -R file" (yes, somebody accidentally did
1631that!). If you want to overwrite a viminfo file with an error in it, you will
1632either have to fix the error, or delete the file (while Vim is running, so
1633most of the information will be restored).
1634
1635 *:rv* *:rviminfo* *E195*
1636:rv[iminfo][!] [file] Read from viminfo file [file] (default: see above).
1637 If [!] is given, then any information that is
Bram Moolenaard812df62008-11-09 12:46:09 +00001638 already set (registers, marks, |v:oldfiles|, etc.)
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001639 will be overwritten
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001641 *:wv* *:wviminfo* *E137* *E138* *E574* *E886* *E929*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642:wv[iminfo][!] [file] Write to viminfo file [file] (default: see above).
1643 The information in the file is first read in to make
1644 a merge between old and new info. When [!] is used,
1645 the old information is not read first, only the
1646 internal info is written. If 'viminfo' is empty, marks
1647 for up to 100 files will be written.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001648 When you get error "E929: Too many viminfo temp files"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 check that no old temp files were left behind (e.g.
1650 ~/.viminf*) and that you can write in the directory of
1651 the .viminfo file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652
Bram Moolenaard812df62008-11-09 12:46:09 +00001653 *:ol* *:oldfiles*
1654:ol[dfiles] List the files that have marks stored in the viminfo
1655 file. This list is read on startup and only changes
Bram Moolenaare11d61a2016-08-20 18:36:54 +02001656 afterwards with `:rviminfo!`. Also see |v:oldfiles|.
Bram Moolenaard812df62008-11-09 12:46:09 +00001657 The number can be used with |c_#<|.
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001658 The output can be filtered with |:filter|, e.g.: >
Bram Moolenaar818078d2016-08-27 21:58:42 +02001659 filter /\.vim/ oldfiles
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001660< The filtering happens on the file name.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001661 {only when compiled with the |+eval| feature}
Bram Moolenaard812df62008-11-09 12:46:09 +00001662
1663:bro[wse] ol[dfiles][!]
1664 List file names as with |:oldfiles|, and then prompt
1665 for a number. When the number is valid that file from
1666 the list is edited.
1667 If you get the |press-enter| prompt you can press "q"
1668 and still get the prompt to enter a file number.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001669 Use ! to abandon a modified buffer. |abandon|
Bram Moolenaard812df62008-11-09 12:46:09 +00001670 {not when compiled with tiny or small features}
1671
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001672 vim:tw=78:ts=8:noet:ft=help:norl: