blob: 42fa8ba4e1bc06278a5d766dd1f232643b46a16b [file] [log] [blame]
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001*editing.txt* For Vim version 7.0aa. Last change: 2004 Aug 29
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Editing files *edit-files*
8
91. Introduction |edit-intro|
102. Editing a file |edit-a-file|
113. Dialogs |edit-dialogs|
124. The current directory |current-directory|
135. The argument list |argument-list|
146. Writing |writing|
157. Writing and quitting |write-quit|
168. Editing binary files |edit-binary|
179. Encryption |encryption|
1810. Timestamps |timestamps|
19
20==============================================================================
211. Introduction *edit-intro*
22
23Editing a file with Vim means:
24
251. reading the file into the internal buffer
262. changing the buffer with editor commands
273. writing the buffer into a file
28
29 *current-file*
30As long as you don't write the buffer, the original file remains unchanged.
31If you start editing a file (read a file into the buffer), the file name is
Bram Moolenaard4755bb2004-09-02 19:12:26 +000032remembered as the "current file name". This is also known as the name of the
33current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000034
35 *alternate-file*
36If there already was a current file name, then that one becomes the alternate
Bram Moolenaard4755bb2004-09-02 19:12:26 +000037file name. It can later be used with "#" on the command line |:_#|. However,
38the alternate file name is not changed when |:keepalt| is used.
39
40 *:keepalt* *:keepa*
41:keepalt {cmd} Execute {cmd} while keeping the current alternate file
42 name. Note that commands invoked indirectly (e.g.,
43 with a function) may still set the alternate file
44 name. {not in Vi}
45
46All file names are remembered in the file list. When you enter a file name,
47for editing (e.g., with ":e filename") or writing (e.g., with (:w file name"),
48the file name is added to the list. You can use this list to remember which
49files you edited and to quickly switch from one file to another with the
50CTRL-^ command (e.g., to copy text). First type the number of the file and
51then hit CTRL-^. {Vi: only one alternate file name}
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53CTRL-G or *CTRL-G* *:f* *:fi* *:file*
54:f[ile] Prints the current file name (as typed), the
55 cursor position (unless the 'ruler' option is set),
56 and the file status (readonly, modified, read errors,
57 new file)). See the 'shortmess' option about how tho
58 make this message shorter. {Vi does not include
59 column number}
60
Bram Moolenaar325b7a22004-07-05 15:58:32 +000061:f[ile]! like |:file|, but don't truncate the name even when
62 'shortmess' indicates this.
63
Bram Moolenaar071d4272004-06-13 20:20:40 +000064{count}CTRL-G Like CTRL-G, but prints the current file name with
65 full path. If the count is higher than 1 the current
66 buffer number is also given. {not in Vi}
67
68 *g_CTRL-G* *word-count* *byte-count*
69g CTRL-G Prints the current position of the cursor in four
70 ways: Column, Line, Word and Byte. If there are
71 characters in the line that take more than one
72 position on the screen (<Tab> or special character),
73 both the "real" column and the screen column are
74 shown, separated with a dash. See also 'ruler'
75 option. {not in Vi}
76
77 *v_g_CTRL-G*
78{Visual}g CTRL-G Similar to "g CTRL-G", but Word, Line, and Byte counts
79 for the visually selected region are displayed. In
80 Blockwise mode, Column count is also shown. (For
81 {Visual} see |Visual-mode|.)
82 {not in VI}
83
84 *:file_f*
Bram Moolenaar325b7a22004-07-05 15:58:32 +000085:f[ile][!] {name} Sets the current file name to {name}. The optional !
86 avoids truncating the message, as with |:file|.
87
88:0f[ile][!] Remove the name of the current buffer. The optional !
89 avoids truncating the message, as with |:file|. {not
90 in Vi}
Bram Moolenaar071d4272004-06-13 20:20:40 +000091
92:buffers
93:files
94:ls List all the currently known file names. See
95 'windows.txt' |:files| |:buffers| |:ls|. {not in
96 Vi}
97
98Vim will remember the full path name of a file name that you enter. In most
99cases when the file name is displayed only the name you typed is shown, but
100the full path name is being used if you used the ":cd" command |:cd|.
101
102 *home-replace*
103If the environment variable $HOME is set, and the file name starts with that
104string, it is often displayed with HOME replaced with "~". This was done to
105keep file names short. When reading or writing files the full name is still
106used, the "~" is only used when displaying file names. When replacing the
107file name would result in just "~", "~/" is used instead (to avoid confusion
108with 'backupext' set to "~").
109
110When writing the buffer, the default is to use the current file name. Thus
111when you give the "ZZ" or ":wq" command, the original file will be
112overwritten. If you do not want this, the buffer can be written into another
113file by giving a file name argument to the ":write" command. For example: >
114
115 vim testfile
116 [change the buffer with editor commands]
117 :w newfile
118 :q
119
120This will create a file "newfile", that is a modified copy of "testfile".
121The file "testfile" will remain unchanged. Anyway, if the 'backup' option is
122set, Vim renames or copies the original file before it will be overwritten.
123You can use this file if you discover that you need the original file. See
124also the 'patchmode' option. The name of the backup file is normally the same
125as the original file with 'backupext' appended. The default "~" is a bit
126strange to avoid accidentally overwriting existing files. If you prefer ".bak"
127change the 'backupext' option. Extra dots are replaced with '_' on MS-DOS
128machines, when Vim has detected that an MS-DOS-like filesystem is being used
129(e.g., messydos or crossdos) or when the 'shortname' option is on. The
130backup file can be placed in another directory by setting 'backupdir'.
131
132 *auto-shortname*
133Technical: On the Amiga you can use 30 characters for a file name. But on an
134 MS-DOS-compatible filesystem only 8 plus 3 characters are
135 available. Vim tries to detect the type of filesystem when it is
136 creating the .swp file. If an MS-DOS-like filesystem is suspected,
137 a flag is set that has the same effect as setting the 'shortname'
138 option. This flag will be reset as soon as you start editing a
139 new file. The flag will be used when making the file name for the
140 ".swp" and ".~" files for the current file. But when you are
141 editing a file in a normal filesystem and write to an MS-DOS-like
142 filesystem the flag will not have been set. In that case the
143 creation of the ".~" file may fail and you will get an error
144 message. Use the 'shortname' option in this case.
145
146When you started editing without giving a file name, "No File" is displayed in
147messages. If the ":write" command is used with a file name argument, the file
148name for the current file is set to that file name. This only happens when
149the 'F' flag is included in 'cpoptions' (by default it is included). This is
150useful when entering text in an empty buffer and then writing it to a file.
151If 'cpoptions' contains the 'f' flag (by default it is NOT included) the file
152name is set for the ":read file" command. This is useful when starting Vim
153without an argument and then doing ":read file" to start editing a file.
154 *not-edited*
155Because the file name was set without really starting to edit that file, you
156are protected from overwriting that file. This is done by setting the
157"notedited" flag. You can see if this flag is set with the CTRL-G or ":file"
158command. It will include "[Not edited]" when the "notedited" flag is set.
159When writing the buffer to the current file name (with ":w!"), the "notedited"
160flag is reset.
161
162 *abandon*
163Vim remembers whether you have changed the buffer. You are protected from
164losing the changes you made. If you try to quit without writing, or want to
165start editing another file, Vim will refuse this. In order to overrule this
166protection, add a '!' to the command. The changes will then be lost. For
167example: ":q" will not work if the buffer was changed, but ":q!" will. To see
168whether the buffer was changed use the "CTRL-G" command. The message includes
169the string "[Modified]" if the buffer has been changed.
170
171If you want to automatically save the changes without asking, switch on the
172'autowriteall' option. 'autowrite' is the associated Vi-compatible option
173that does not work for all commands.
174
175If you want to keep the changed buffer without saving it, switch on the
176'hidden' option. See |hidden-buffer|.
177
178==============================================================================
1792. Editing a file *edit-a-file*
180
181 *:e* *:edit*
182:e[dit] [++opt] [+cmd] Edit the current file. This is useful to re-edit the
183 current file, when it has been changed outside of Vim.
184 This fails when changes have been made to the current
185 buffer and 'autowriteall' isn't set or the file can't
186 be written.
187 Also see |++opt| and |+cmd|.
188 {Vi: no ++opt}
189
190 *:edit!*
191:e[dit]! [++opt] [+cmd]
192 Edit the current file always. Discard any changes to
193 the current buffer. This is useful if you want to
194 start all over again.
195 Also see |++opt| and |+cmd|.
196 {Vi: no ++opt}
197
198 *:edit_f*
199:e[dit] [++opt] [+cmd] {file}
200 Edit {file}.
201 This fails when changes have been made to the current
202 buffer, unless 'hidden' is set or 'autowriteall' is
203 set and the file can be written.
204 Also see |++opt| and |+cmd|.
205 {Vi: no ++opt}
206
207 *:edit!_f*
208:e[dit]! [++opt] [+cmd] {file}
209 Edit {file} always. Discard any changes to the
210 current buffer.
211 Also see |++opt| and |+cmd|.
212 {Vi: no ++opt}
213
214:e[dit] [++opt] [+cmd] #[count]
215 Edit the [count]th alternate file name (as shown by
216 :files). This command does the same as
217 [count] CTRL-^. But ":e #" doesn't work if the
218 alternate buffer doesn't have a file name, while
219 CTRL-^ still works then.
220 Also see |++opt| and |+cmd|.
221 {Vi: no ++opt}
222
223 *:ene* *:enew*
224:ene[w] Edit a new, unnamed buffer. This fails when changes
225 have been made to the current buffer, unless 'hidden'
226 is set or 'autowriteall' is set and the file can be
227 written.
228 If 'fileformats' is not empty, the first format given
229 will be used for the new buffer. If 'fileformats' is
230 empty, the 'fileformat' of the current buffer is used.
231 {not in Vi}
232
233 *:ene!* *:enew!*
234:ene[w]! Edit a new, unnamed buffer. Discard any changes to
235 the current buffer.
236 Set 'fileformat' like |:enew|.
237 {not in Vi}
238
239 *:fin* *:find*
240:fin[d][!] [++opt] [+cmd] {file}
241 Find {file} in 'path' and then |:edit| it.
242 {not in Vi} {not available when the |+file_in_path|
243 feature was disabled at compile time}
244
245:{count}fin[d][!] [++opt] [+cmd] {file}
246 Just like ":find", but use the {count} match in
247 'path'. Thus ":2find file" will find the second
248 "file" found in 'path'. When there are fewer matches
249 for the file in 'path' than asked for, you get an
250 error message.
251
252 *:ex*
253:ex [++opt] [+cmd] [file]
254 Same as |:edit|.
255
256 *:vi* *:visual*
257:vi[sual][!] [++opt] [+cmd] [file]
258 When entered in Ex mode: Leave |Ex-mode|, go back to
259 Normal mode. Otherwise same as |:edit|.
260
261 *:vie* *:view*
262:vie[w] [++opt] [+cmd] file
263 When entered in Ex mode: Leave Ex mode, go back to
264 Normal mode. Otherwise same as |:edit|, but set
265 'readonly' option for this buffer. {not in Vi}
266
267 *CTRL-^* *CTRL-6*
268[count]CTRL-^ Edit [count]th alternate file (equivalent to ":e
269 #[count]"). Without count this gets you to the
270 previously edited file. This is a quick way to toggle
271 between two (or more) files.
272 If the 'autowrite' or 'autowriteall' option is on and
273 the buffer was changed, write it.
274 Mostly the ^ character is positioned on the 6 key,
275 pressing CTRL and 6 then gets you what we call CTRL-^.
276 But on some non-US keyboards CTRL-^ is produced in
277 another way.
278
279[count]]f *]f* *[f*
280[count][f Same as "gf". Deprecated.
281
282 *gf* *E446* *E447*
283[count]gf Edit the file whose name is under or after the cursor.
284 Mnemonic: "goto file".
285 Uses the 'isfname' option to find out which characters
286 are supposed to be in a file name. Trailing
287 punctuation characters ".,:;!" are ignored.
288 Uses the 'path' option as a list of directory names
289 to look for the file. Also looks for the file
290 relative to the current file.
291 Uses the 'suffixesadd' option to check for file names
292 with a suffix added.
293 If the file can't be found, 'includeexpr' is used to
294 modify the name and another attempt is done.
295 If a [count] is given, the count'th file that is found
296 in the 'path' is edited.
297 This command fails if Vim refuses to |abandon| the
298 current file.
299 If you do want to edit a new file, use: >
300 :e <cfile>
301< To make gf always work like that: >
302 :map gf :e <cfile><CR>
303< If the name is a hypertext link, that looks like
304 "type://machine/path", you need the |netrw| plugin.
305 For Unix the '~' character is expanded, like in
306 "~user/file". Environment variables are expanded too
307 |expand-env|.
308 {not in Vi}
309 {not available when the |+file_in_path| feature was
310 disabled at compile time}
311
312 *v_gf*
313{Visual}[count]gf Same as "gf", but the highlighted text is used as the
314 name of the file to edit. 'isfname' is ignored.
315 Leading blanks are skipped, otherwise all blanks and
316 special characters are included in the file name.
317 (For {Visual} see |Visual-mode|.)
318 {not in VI}
319
320These commands are used to start editing a single file. This means that the
321file is read into the buffer and the current file name is set. The file that
322is opened depends on the current directory, see |:cd|.
323
324See |read-messages| for an explanation of the message that is given after the
325file has been read.
326
327You can use the ":e!" command if you messed up the buffer and want to start
328all over again. The ":e" command is only useful if you have changed the
329current file name.
330
331 *:filename* *{file}*
332Note for systems other than Unix and MS-DOS: When using a command that
333accepts a single file name (like ":edit file") spaces in the file name are
334allowed, but trailing spaces are ignored. This is useful on systems that
335allow file names with embedded spaces (like the Amiga). Example: The command
336":e Long File Name " will edit the file "Long File Name". When using a
337command that accepts more than one file name (like ":next file1 file2")
338embedded spaces must be escaped with a backslash.
339
340Wildcards in {file} are expanded. Which wildcards are supported depends on
341the system. These are the common ones:
342 * matches anything, including nothing
343 ? matches one character
344 [abc] match 'a', 'b' or 'c'
345To avoid the special meaning of the wildcards prepend a backslash. However,
346on MS-Windows the backslash is a path separator and "path\[abc]" is still seen
347as a wildcard when "[" is in the 'isfname' option. A simple way to avoid this
348is to use "path\[[]abc]". Then the file "path[abc]" literally.
349
350 *backtick-expansion* *`-expansion*
351On Unix you can also use backticks in the file name, for example: >
352 :e `find . -name ver\\*.c -print`
353The backslashes before the star are required to prevent "ver*.c" to be
354expanded by the shell before executing the find program.
355This also works for most other systems, with the restriction that the
356backticks must be around the whole item. It is not possible to have text
357directly before the first or just after the last backtick.
358
Bram Moolenaared203462004-06-16 11:19:22 +0000359 *`=*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360You can have the backticks expanded as a Vim expression, instead of
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000361an external command, by using the syntax `={expr}` e.g.: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 :let foo='bar'
363 :e `=foo . ".c" `
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000364This will edit "bar.c". The expression can contain just about anything, thus
365this can also be used to avoid the special meaning of '"', '|', '%' and '#'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366
367 *++opt* *[++opt]*
368The [++opt] argument can be used to force the value of 'fileformat' or
369'fileencoding' to a value for one command. The form is: >
370 ++{optname}={value}
371
372Where {optname} is one of: *++ff* *++enc* *++bin* *++nobin*
373 ff or fileformat overrides 'fileformat'
374 enc or encoding overrides 'fileencoding'
375 bin or binary sets 'binary'
376 nobin or nobinary resets 'binary'
377
378{value} cannot contain white space. It can be any valid value for these
379options. Examples: >
380 :e ++ff=unix
381This edits the same file again with 'fileformat' set to "unix". >
382
383 :w ++enc=latin1 newfile
384This writes the current buffer to "newfile" in latin1 format.
385
386Note that when reading, the 'fileformat' and 'fileencoding' options will be
387set to the used format. When writing this doesn't happen, thus a next write
388will use the old value of the option. Same for the 'binary' option.
389
390There may be several ++opt arguments, separated by white space. They must all
391appear before any |+cmd| argument.
392
393 *+cmd* *[+cmd]*
394The [+cmd] argument can be used to position the cursor in the newly opened
395file, or execute any other command:
396 + Start at the last line.
397 +{num} Start at line {num}.
398 +/{pat} Start at first line containing {pat}.
399 +{command} Execute {command} after opening the new file.
400 {command} is any Ex command.
401To include a white space in the {pat} or {command}, precede it with a
402backslash. Double the number of backslashes. >
403 :edit +/The\ book file
404 :edit +/dir\ dirname\\ file
405 :edit +set\ dir=c:\\\\temp file
406Note that in the last example the number of backslashes is halved twice: Once
407for the "+cmd" argument and once for the ":set" command.
408
409 *file-formats*
410The 'fileformat' option sets the <EOL> style for a file:
411'fileformat' characters name ~
412 "dos" <CR><NL> or <NL> DOS format *DOS-format*
413 "unix" <NL> Unix format *Unix-format*
414 "mac" <CR> Mac format *Mac-format*
415Previously 'textmode' was used. It is obsolete now.
416
417When reading a file, the mentioned characters are interpreted as the <EOL>.
418In DOS format (default for MS-DOS, OS/2 and Win32), <CR><NL> and <NL> are both
419interpreted as the <EOL>. Note that when writing the file in DOS format,
420<CR> characters will be added for each single <NL>. Also see |file-read|.
421
422When writing a file, the mentioned characters are used for <EOL>. For DOS
423format <CR><NL> is used. Also see |DOS-format-write|.
424
425You can read a file in DOS format and write it in Unix format. This will
426replace all <CR><NL> pairs by <NL> (assuming 'fileformats' includes "dos"): >
427 :e file
428 :set fileformat=unix
429 :w
430If you read a file in Unix format and write with DOS format, all <NL>
431characters will be replaced with <CR><NL> (assuming 'fileformats' includes
432"unix"): >
433 :e file
434 :set fileformat=dos
435 :w
436
437If you start editing a new file and the 'fileformats' option is not empty
438(which is the default), Vim will try to detect whether the lines in the file
439are separated by the specified formats. When set to "unix,dos", Vim will
440check for lines with a single <NL> (as used on Unix and Amiga) or by a <CR>
441<NL> pair (MS-DOS). Only when ALL lines end in <CR><NL>, 'fileformat' is set
442to "dos", otherwise it is set to "unix". When 'fileformats' includes "mac",
443and no <NL> characters are found in the file, 'fileformat' is set to "mac".
444
445If the 'fileformat' option is set to "dos" on non-MS-DOS systems the message
446"[dos format]" is shown to remind you that something unusual is happening. On
447MS-DOS systems you get the message "[unix format]" if 'fileformat' is set to
448"unix". On all systems but the Macintosh you get the message "[mac format]"
449if 'fileformat' is set to "mac".
450
451If the 'fileformats' option is empty and DOS format is used, but while reading
452a file some lines did not end in <CR><NL>, "[CR missing]" will be included in
453the file message.
454If the 'fileformats' option is empty and Mac format is used, but while reading
455a file a <NL> was found, "[NL missing]" will be included in the file message.
456
457If the new file does not exist, the 'fileformat' of the current buffer is used
458when 'fileformats' is empty. Otherwise the first format from 'fileformats' is
459used for the new file.
460
461Before editing binary, executable or Vim script files you should set the
462'binary' option. A simple way to do this is by starting Vim with the "-b"
463option. This will avoid the use of 'fileformat'. Without this you risk that
464single <NL> characters are unexpectedly replaced with <CR><NL>.
465
466You can encrypt files that are written by setting the 'key' option. This
467provides some security against others reading your files. |encryption|
468
469
470File Searching *file-searching*
471
472{not available when compiled without the |+path_extra| feature}
473
474The file searching is currently used for the 'path', 'cdpath' and 'tags'
475options. There are three different types of searching:
476
4771) Downward search:
478 Downward search uses the wildcards '*', '**' and possibly others
479 supported by your operating system. '*' and '**' are handled inside Vim, so
480 they work on all operating systems.
481
482 The usage of '*' is quite simple: It matches 0 or more characters.
483
484 '**' is more sophisticated:
485 - It ONLY matches directories.
486 - It matches up to 30 directories deep, so you can use it to search an
487 entire directory tree
488 - The maximum number of levels matched can be given by appending a number
489 to '**'.
490 Thus '/usr/**2' can match: >
491 /usr
492 /usr/include
493 /usr/include/sys
494 /usr/include/g++
495 /usr/lib
496 /usr/lib/X11
497 ....
498< It does NOT match '/usr/include/g++/std' as this would be three
499 levels.
500 The allowed number range is 0 ('**0' is removed) to 255.
501 If the given number is smaller than 0 it defaults to 30, if it's
502 bigger than 255 it defaults to 255.
503 - '**' can only be at the end of the path or be followed by a path
504 separator or by a number and a path separator.
505
506 You can combine '*' and '**' in any order: >
507 /usr/**/sys/*
508 /usr/*/sys/**
509 /usr/**2/sys/*
510
5112) Upward search:
512 Here you can give a directory and then search the directory tree upward for
513 a file. You could give stop-directories to limit the upward search. The
514 stop-directories are appended to the path (for the 'path' option) or to
515 the filename (for the 'tags' option) with a ';'. If you want several
516 stop-directories separate them with ';'. If you want no stop-directory
517 ("search upward till the root directory) just use ';'. >
518 /usr/include/sys;/usr
519< will search in: >
520 /usr/include/sys
521 /usr/include
522 /usr
523<
524 If you use a relative path the upward search is started in Vim's current
525 directory or in the directory of the current file (if the relative path
526 starts with './' and 'd' is not included in 'cpoptions').
527
528 If Vim's current path is /u/user_x/work/release and you do >
529 :set path=include;/u/user_x
530< and then search for a file with |gf| the file is searched in: >
531 /u/user_x/work/release/include
532 /u/user_x/work/include
533 /u/user_x/include
534
5353) Combined up/downward search
536 If Vim's current path is /u/user_x/work/release and you do >
537 set path=**;/u/user_x
538< and then search for a file with |gf| the file is searched in: >
539 /u/user_x/work/release/**
540 /u/user_x/work/**
541 /u/user_x/**
542<
543 BE CAREFUL! This might consume a lot of time, as the search of
544 '/u/user_x/**' includes '/u/user_x/work/**' and
545 '/u/user_x/work/release/**'. So '/u/user_x/work/release/**' is searched
546 three and '/u/user_x/work/**' is searched two times.
547
548 In the above example you might want to set path to: >
549 :set path=**,/u/user_x/**
550< This searches: >
551 /u/user_x/work/release/**
552 /u/user_x/**
553< This searches the same directories, but in a different order.
554
555==============================================================================
5563. Dialogs *edit-dialogs*
557
558 *:confirm* *:conf*
559:conf[irm] {command} Execute {command}, and use a dialog when an
560 operation has to be confirmed. Can be used on the
561 ":q", ":qa" and ":w" commands (the latter to over-ride
562 a read-only setting).
563
564Examples: >
565 :confirm w foo
566< Will ask for confirmation when "foo" already exists. >
567 :confirm q
568< Will ask for confirmation when there are changes. >
569 :confirm qa
570< If any modified, unsaved buffers exist, you will be prompted to save
571 or abandon each one. There are also choices to "save all" or "abandon
572 all".
573
574If you want to always use ":confirm", set the 'confirm' option.
575
576 *:browse* *:bro* *E338* *E614* *E615* *E616* *E578*
577:bro[wse] {command} Open a file selection dialog for an argument to
578 {command}. At present this works for |:e|, |:w|,
579 |:r|, |:saveas|, |:sp|, |:mkexrc|, |:mkvimrc| and
580 |:mksession|.
581 {only in Win32, Athena, Motif, GTK and Mac GUI}
582 When ":browse" is not possible you get an error
583 message. If the |+browse| feature is missing or the
584 {command} doesn't support browsing, the {command} is
585 executed without a dialog.
586 ":browse set" works like |:options|.
587
588The syntax is best shown via some examples: >
589 :browse e $vim/foo
590< Open the browser in the $vim/foo directory, and edit the
591 file chosen. >
592 :browse e
593< Open the browser in the directory specified with 'browsedir',
594 and edit the file chosen. >
595 :browse w
596< Open the browser in the directory of the current buffer,
597 with the current buffer filename as default, and save the
598 buffer under the filename chosen. >
599 :browse w C:/bar
600< Open the browser in the C:/bar directory, with the current
601 buffer filename as default, and save the buffer under the
602 filename chosen.
603Also see the |'browsedir'| option.
604For versions of Vim where browsing is not supported, the command is executed
605unmodified.
606
607 *browsefilter*
608For MS Windows, you can modify the filters that are used in the browse dialog.
609By setting the g:browsefilter or b:browsefilter variables, you can change the
610filters globally or locally to the buffer. The variable is set to a string in
611the format "{filter label}\t{pattern};{pattern}\n" where {filter label} is the
612text that appears in the "Files of Type" comboBox, and {pattern} is the
613pattern which filters the filenames. Several patterns can be given, separated
614by ';'.
615
616For Motif the same format is used, but only the very first pattern is actually
617used (Motif only offers one pattern, but you can edit it).
618
619For example, to have only Vim files in the dialog, you could use the following
620command: >
621
622 let g:browsefilter="Vim Scripts\t*.vim\nVim Startup Files\t*vimrc\n"
623
624You can override the filter setting on a per-buffer basis by setting the
625b:browsefilter variable. You would most likely set b:browsefilter in a
626filetype plugin, so that the browse dialog would contain entries related to
627the type of file you are currently editing. Disadvantage: This makes it
628difficult to start editing a file of a different type. To overcome this, you
629may want to add "All Files\t*.*\n" as the final filter, so that the user can
630still access any desired file.
631
632==============================================================================
6334. The current directory *current-directory*
634
635You may use the |:cd| and |:lcd| commands to change to another directory, so
636you will not have to type that directory name in front of the file names. It
637also makes a difference for executing external commands, e.g. ":!ls".
638
639 *:cd* *E472*
640:cd On non-Unix systems: Print the current directory
641 name. On Unix systems: Change the current directory
642 to the home directory. Use |:pwd| to print the
643 current directory on all systems.
644
645:cd {path} Change the current directory to {path}.
646 If {path} is relative, it is searched for in the
647 directories listed in |'cdpath'|.
648 Does not change the meaning of an already opened file,
649 because its full path name is remembered. Files from
650 the |arglist| may change though!
651 On MS-DOS this also changes the active drive.
652 To change to the directory of the current file: >
653 :cd %:h
654<
655 *:cd-* *E186*
656:cd - Change to the previous current directory (before the
657 previous ":cd {path}" command). {not in Vi}
658
659 *:chd* *:chdir*
660:chd[ir] [path] Same as |:cd|.
661
662 *:lc* *:lcd*
663:lc[d] {path} Like |:cd|, but only set the current directory for the
664 current window. The current directory for other
665 windows is not changed. {not in Vi}
666
667 *:lch* *:lchdir*
668:lch[dir] Same as |:lcd|. {not in Vi}
669
670 *:pw* *:pwd* *E187*
671:pw[d] Print the current directory name. {Vi: no pwd}
672 Also see |getcwd()|.
673
674So long as no |:lcd| command has been used, all windows share the same current
675directory. Using a command to jump to another window doesn't change anything
676for the current directory.
677When a |:lcd| command has been used for a window, the specified directory
678becomes the current directory for that window. Windows where the |:lcd|
679command has not been used stick to the global current directory. When jumping
680to another window the current directory will become the last specified local
681current directory. If none was specified, the global current directory is
682used.
683When a |:cd| command is used, the current window will lose his local current
684directory and will use the global current directory from now on.
685
686After using |:cd| the full path name will be used for reading and writing
687files. On some networked file systems this may cause problems. The result of
688using the full path name is that the file names currently in use will remain
689referring to the same file. Example: If you have a file a:test and a
690directory a:vim the commands ":e test" ":cd vim" ":w" will overwrite the file
691a:test and not write a:vim/test. But if you do ":w test" the file a:vim/test
692will be written, because you gave a new file name and did not refer to a
693filename before the ":cd".
694
695==============================================================================
6965. The argument list *argument-list* *arglist*
697
698If you give more than one file name when starting Vim, this list is remembered
699as the argument list. You can jump to each file in this list.
700
701Do not confuse this with the buffer list, which you can see with the
702|:buffers| command. The argument list was already present in Vi, the buffer
703list is new in Vim. A file name in the argument list will also be present in
704the buffer list (unless it was deleted with ":bdel").
705
706This subject is introduced in section |07.2| of the user manual.
707
708There is one global argument list, which is used for all windows by default.
709It is possible to create a new argument list local to a window, see
710|:arglocal|.
711
712You can use the argument list with the following commands, and with the
713expression functions |argc()| and |argv()|. These all work on the argument
714list of the current window.
715
716 *:ar* *:args*
717:ar[gs] Print the argument list, with the current file in
718 square brackets.
719
720:ar[gs] [++opt] [+cmd] {arglist} *:args_f*
721 Define {arglist} as the new argument list and edit
722 the first one. This fails when changes have been made
723 and Vim does not want to |abandon| the current buffer.
724 Also see |++opt| and |+cmd|.
725 {Vi: no ++opt}
726
727:ar[gs]! [++opt] [+cmd] {arglist} *:args_f!*
728 Define {arglist} as the new argument list and edit
729 the first one. Discard any changes to the current
730 buffer.
731 Also see |++opt| and |+cmd|.
732 {Vi: no ++opt}
733
734:[count]arge[dit][!] [++opt] [+cmd] {name} *:arge* *:argedit*
735 Add {name} to the argument list and edit it.
736 When {name} already exists in the argument list, this
737 entry is edited.
738 This is like using |:argadd| and then |:edit|.
739 Note that only one file name is allowed, and spaces
740 inside the file name are allowed, like with |:edit|.
741 [count] is used like with |:argadd|.
742 [!] is required if the current file cannot be
743 |abandon|ed.
744 Also see |++opt| and |+cmd|.
745 {not in Vi}
746
747:[count]arga[dd] {name} .. *:arga* *:argadd* *E479*
748 Add the {name}s to the argument list.
749 If [count] is omitted, the {name}s are added just
750 after the current entry in the argument list.
751 Otherwise they are added after the [count]'th file.
752 If the argument list is "a b c", and "b" is the
753 current argument, then these commands result in:
754 command new argument list ~
755 :argadd x a b x c
756 :0argadd x x a b c
757 :1argadd x a x b c
758 :99argadd x a b c x
759 There is no check for duplicates, it is possible to
760 add a file to the argument list twice.
761 The currently edited file is not changed.
762 {not in Vi} {not available when compiled without the
763 |+listcmds| feature}
764 Note: you can also use this method: >
765 :args ## x
766< This will add the "x" item and sort the new list.
767
768:argd[elete] {pattern} .. *:argd* *:argdelete* *E480*
769 Delete files from the argument list that match the
770 {pattern}s. {pattern} is used like a file pattern,
771 see |file-pattern|. "%" can be used to delete the
772 current entry.
773 This command keeps the currently edited file, also
774 when it's deleted from the argument list.
775 {not in Vi} {not available when compiled without the
776 |+listcmds| feature}
777
778:{range}argd[elete] Delete the {range} files from the argument list.
779 When the last number in the range is too high, up to
780 the last argument is deleted. Example: >
781 :10,1000argdel
782< Deletes arguments 10 and further, keeping 1-9.
783 {not in Vi} {not available when compiled without the
784 |+listcmds| feature}
785
786 *:argu* *:argument*
787:[count]argu[ment] [count] [++opt] [+cmd]
788 Edit file [count] in the argument list. When [count]
789 is omitted the current entry is used. This fails
790 when changes have been made and Vim does not want to
791 |abandon| the current buffer.
792 Also see |++opt| and |+cmd|.
793 {not in Vi} {not available when compiled without the
794 |+listcmds| feature}
795
796:[count]argu[ment]! [count] [++opt] [+cmd]
797 Edit file [count] in the argument list, discard any
798 changes to the current buffer. When [count] is
799 omitted the current entry is used.
800 Also see |++opt| and |+cmd|.
801 {not in Vi} {not available when compiled without the
802 |+listcmds| feature}
803
804:[count]n[ext] [++opt] [+cmd] *:n* *:ne* *:next* *E165* *E163*
805 Edit [count] next file. This fails when changes have
806 been made and Vim does not want to |abandon| the
807 current buffer. Also see |++opt| and |+cmd|. {Vi: no
808 count or ++opt}.
809
810:[count]n[ext]! [++opt] [+cmd]
811 Edit [count] next file, discard any changes to the
812 buffer. Also see |++opt| and |+cmd|. {Vi: no count
813 or ++opt}.
814
815:n[ext] [++opt] [+cmd] {arglist} *:next_f*
816 Same as |:args_f|.
817
818:n[ext]! [++opt] [+cmd] {arglist}
819 Same as |:args_f!|.
820
821:[count]N[ext] [count] [++opt] [+cmd] *:Next* *:N* *E164*
822 Edit [count] previous file in argument list. This
823 fails when changes have been made and Vim does not
824 want to |abandon| the current buffer.
825 Also see |++opt| and |+cmd|. {Vi: no count or ++opt}.
826
827:[count]N[ext]! [count] [++opt] [+cmd]
828 Edit [count] previous file in argument list. Discard
829 any changes to the buffer. Also see |++opt| and
830 |+cmd|. {Vi: no count or ++opt}.
831
832:[count]prev[ious] [count] [++opt] [+cmd] *:prev* *:previous*
833 Same as :Next. Also see |++opt| and |+cmd|. {Vi:
834 only in some versions}
835
836 *:rew* *:rewind*
837:rew[ind] [++opt] [+cmd]
838 Start editing the first file in the argument list.
839 This fails when changes have been made and Vim does
840 not want to |abandon| the current buffer.
841 Also see |++opt| and |+cmd|. {Vi: no ++opt}
842
843:rew[ind]! [++opt] [+cmd]
844 Start editing the first file in the argument list.
845 Discard any changes to the buffer. Also see |++opt|
846 and |+cmd|. {Vi: no ++opt}
847
848 *:fir* *:first*
849:fir[st][!] [++opt] [+cmd]
850 Other name for ":rewind". {not in Vi}
851
852 *:la* *:last*
853:la[st] [++opt] [+cmd]
854 Start editing the last file in the argument list.
855 This fails when changes have been made and Vim does
856 not want to |abandon| the current buffer.
857 Also see |++opt| and |+cmd|. {not in Vi}
858
859:la[st]! [++opt] [+cmd]
860 Start editing the last file in the argument list.
861 Discard any changes to the buffer. Also see |++opt|
862 and |+cmd|. {not in Vi}
863
864 *:wn* *:wnext*
865:[count]wn[ext] [++opt] [+cmd]
866 Write current file and start editing the [count]
867 next file. Also see |++opt| and |+cmd|. {not in Vi}
868
869:[count]wn[ext] [++opt] [+cmd] {file}
870 Write current file to {file} and start editing the
871 [count] next file, unless {file} already exists and
872 the 'writeany' option is off. Also see |++opt| and
873 |+cmd|. {not in Vi}
874
875:[count]wn[ext]! [++opt] [+cmd] {file}
876 Write current file to {file} and start editing the
877 [count] next file. Also see |++opt| and |+cmd|. {not
878 in Vi}
879
880:[count]wN[ext][!] [++opt] [+cmd] [file] *:wN* *:wNext*
881:[count]wp[revous][!] [++opt] [+cmd] [file] *:wp* *:wprevious*
882 Same as :wnext, but go to previous file instead of
883 next. {not in Vi}
884
885The [count] in the commands above defaults to one. For some commands it is
886possible to use two counts. The last one (rightmost one) is used.
887
888If no [+cmd] argument is present, the cursor is positioned at the last known
889cursor position for the file. If 'startofline' is set, the cursor will be
890positioned at the first non-blank in the line, otherwise the last know column
891is used. If there is no last known cursor position the cursor will be in the
892first line (the last line in Ex mode).
893
894The wildcards in the argument list are expanded and the file names are sorted.
895Thus you can use the command "vim *.c" to edit all the C files. From within
896Vim the command ":n *.c" does the same. On Unix you can also use backticks,
897for example: >
898 :n `find . -name \\*.c -print`
899The backslashes before the star are required to prevent "*.c" to be expanded
900by the shell before executing the find program.
901
902 *arglist-position*
903When there is an argument list you can see which file you are editing in the
904title of the window (if there is one and 'title' is on) and with the file
905message you get with the "CTRL-G" command. You will see something like
906 (file 4 of 11)
907If 'shortmess' contains 'f' it will be
908 (4 of 11)
909If you are not really editing the file at the current position in the argument
910list it will be
911 (file (4) of 11)
912This means that you are position 4 in the argument list, but not editing the
913fourth file in the argument list. This happens when you do ":e file".
914
915
916LOCAL ARGUMENT LIST
917
918{not in Vi}
919{not available when compiled without the |+windows| or |+listcmds| feature}
920
921 *:arglocal*
922:argl[ocal] Make a local copy of the global argument list.
923 Doesn't start editing another file.
924
925:argl[ocal][!] [++opt] [+cmd] {arglist}
926 Define a new argument list, which is local to the
927 current window. Works like |:args_f| otherwise.
928
929 *:argglobal*
930:argg[lobal] Use the global argument list for the current window.
931 Doesn't start editing another file.
932
933:argg[lobal][!] [++opt] [+cmd] {arglist}
934 Use the global argument list for the current window.
935 Define a new global argument list like |:args_f|.
936 All windows using the global argument list will see
937 this new list.
938
939There can be several argument lists. They can be shared between windows.
940When they are shared, changing the argument list in one window will also
941change it in the other window.
942
943When a window is split the new window inherits the argument list from the
944current window. The two windows then share this list, until one of them uses
945|:arglocal| or |:argglobal| to use another argument list.
946
947
948USING THE ARGUMENT LIST
949
950 *:argdo*
951:argdo[!] {cmd} Execute {cmd} for each file in the argument list.
952 It works like doing this: >
953 :rewind
954 :{cmd}
955 :next
956 :{cmd}
957 etc.
958< When the current file can't be |abandon|ed and the [!]
959 is not present, the command fails.
960 When an error is detected on one file, further files
961 in the argument list will not be visited.
962 The last file in the argument list (or where an error
963 occurred) becomes the current file.
964 {cmd} can contain '|' to concatenate several commands.
965 {cmd} must not change the argument list.
966 Note: While this command is executing, the Syntax
967 autocommand event is disabled by adding it to
968 'eventignore'. This considerably speeds up editing
969 each file.
970 {not in Vi} {not available when compiled without the
971 |+listcmds| feature}
972 Also see |:windo| and |:bufdo|.
973
974Example: >
975 :args *.c
976 :argdo set ff=unix | update
977This sets the 'fileformat' option to "unix" and writes the file if is now
978changed. This is done for all *.c files.
979
980Example: >
981 :args *.[ch]
982 :argdo %s/\<my_foo\>/My_Foo/ge | update
983This changes the word "my_foo" to "My_Foo" in all *.c and *.h files. The "e"
984flag is used for the ":substitute" command to avoid an error for files where
985"my_foo" isn't used. ":update" writes the file only if changes were made.
986
987==============================================================================
9886. Writing *writing* *save-file*
989
990Note: When the 'write' option is off, you are not able to write any file.
991
992 *:w* *:write*
993 *E502* *E503* *E504* *E505*
994 *E512* *E514* *E667*
995:w[rite] Write the whole buffer to the current file. This is
996 the normal way to save changes to a file. It fails
997 when the 'readonly' option is set or when there is
998 another reason why the file can't be written.
999
1000:w[rite]! Like ":write", but forcefully write when 'readonly' is
1001 set or there is another reason why writing was
1002 refused.
1003 Note: This may change the permission and ownership of
1004 the file and break (symbolic) links. Add the 'W' flag
1005 to 'cpoptions' to avoid this.
1006
1007:[range]w[rite][!] Write the specified lines to the current file. This
1008 is unusual, because the file will not contain all
1009 lines in the buffer.
1010
1011 *:w_f* *:write_f*
1012:[range]w[rite] {file} Write the specified lines to {file}, unless it
1013 already exists and the 'writeany' option is off.
1014
1015 *:w!*
1016:[range]w[rite]! {file} Write the specified lines to {file}. Overwrite an
1017 existing file.
1018
1019 *:w_a* *:write_a* *E494*
1020:[range]w[rite][!] >> Append the specified lines to the current file.
1021
1022:[range]w[rite][!] >> {file}
1023 Append the specified lines to {file}. '!' forces the
1024 write even if file does not exist.
1025
1026 *:w_c* *:write_c*
1027:[range]w[rite] !{cmd} Execute {cmd} with [range] lines as standard input
1028 (note the space in front of the '!'). {cmd} is
1029 executed like with ":!{cmd}", any '!' is replaced with
1030 the previous command |:!|.
1031
1032The default [range] for the ":w" command is the whole buffer (1,$).
1033If a file name is given with ":w" it becomes the alternate file. This can be
1034used, for example, when the write fails and you want to try again later with
1035":w #". This can be switched off by removing the 'A' flag from the
1036'cpoptions' option.
1037
1038 *:sav* *:saveas*
1039:sav[eas][!] {file} Save the current buffer under the name {file} and set
1040 the filename of the current buffer to {file}. The
1041 previous name is used for the alternate file name.
1042 The [!] is needed to overwrite an existing file.
1043 {not in Vi}
1044
1045 *:up* *:update*
1046:[range]up[date][!] [>>] [file]
1047 Like ":write", but only write when the buffer has been
1048 modified. {not in Vi}
1049
1050
1051WRITING WITH MULTIPLE BUFFERS *buffer-write*
1052
1053 *:wa* *:wall*
1054:wa[ll] Write all changed buffers. Buffers without a file
1055 name or which are readonly are not written. {not in
1056 Vi}
1057
1058:wa[ll]! Write all changed buffers, even the ones that are
1059 readonly. Buffers without a file name are not
1060 written. {not in Vi}
1061
1062
1063Vim will warn you if you try to overwrite a file that has been changed
1064elsewhere. See |timestamp|.
1065
1066 *backup* *E207* *E506* *E507* *E508* *E509* *E510*
1067If you write to an existing file (but do not append) while the 'backup',
1068'writebackup' or 'patchmode' option is on, a backup of the original file is
1069made. The file is either copied or renamed (see 'backupcopy'). After the
1070file has been successfully written and when the 'writebackup' option is on and
1071the 'backup' option is off, the backup file is deleted. When the 'patchmode'
1072option is on the backup file may be renamed.
1073
1074 *backup-table*
1075'backup' 'writebackup' action ~
1076 off off no backup made
1077 off on backup current file, deleted afterwards (default)
1078 on off delete old backup, backup current file
1079 on on delete old backup, backup current file
1080
1081When the 'backupskip' pattern matches with the name of the file which is
1082written, no backup file is made. The values of 'backup' and 'writebackup' are
1083ignored then.
1084
1085When the 'backup' option is on, an old backup file (with the same name as the
1086new backup file) will be deleted. If 'backup' is not set, but 'writebackup'
1087is set, an existing backup file will not be deleted. The backup file that is
1088made while the file is being written will have a different name.
1089
1090On some filesystems it's possible that in a crash you lose both the backup and
1091the newly written file (it might be there but contain bogus data). In that
1092case try recovery, because the swap file is synced to disk and might still be
1093there. |:recover|
1094
1095The directories given with the 'backupdir' option is used to put the backup
1096file in. (default: same directory as the written file).
1097
1098Whether the backup is a new file, which is a copy of the original file, or the
1099original file renamed depends on the 'backupcopy' option. See there for an
1100explanation of when the copy is made and when the file is renamed.
1101
1102If the creation of a backup file fails, the write is not done. If you want
1103to write anyway add a '!' to the command.
1104
1105 *write-readonly*
1106When the 'cpoptions' option contains 'W', Vim will refuse to overwrite a
1107readonly file. When 'W' is not present, ":w!" will overwrite a readonly file,
1108if the system allows it (the directory must be writable).
1109
1110 *write-fail*
1111If the writing of the new file fails, you have to be careful not to lose
1112your changes AND the original file. If there is no backup file and writing
1113the new file failed, you have already lost the original file! DON'T EXIT VIM
1114UNTIL YOU WRITE OUT THE FILE! If a backup was made, it is put back in place
1115of the original file (if possible). If you exit Vim, and lose the changes
1116you made, the original file will mostly still be there. If putting back the
1117original file fails, there will be an error message telling you that you
1118lost the original file.
1119
1120 *DOS-format-write*
1121If the 'fileformat' is "dos", <CR> <NL> is used for <EOL>. This is default
1122for MS-DOS, Win32 and OS/2. On other systems the message "[dos format]" is
1123shown to remind you that an unusual <EOL> was used.
1124 *Unix-format-write*
1125If the 'fileformat' is "unix", <NL> is used for <EOL>. On MS-DOS, Win32 and
1126OS/2 the message "[unix format]" is shown.
1127 *Mac-format-write*
1128If the 'fileformat' is "mac", <CR> is used for <EOL>. On non-Mac systems the
1129message "[mac format]" is shown.
1130
1131See also |file-formats| and the 'fileformat' and 'fileformats' options.
1132
1133 *ACL*
1134ACL stands for Access Control List. It is an advanced way to control access
1135rights for a file. It is used on new MS-Windows and Unix systems, but only
1136when the filesystem supports it.
1137 Vim attempts to preserve the ACL info when writing a file. The backup file
1138will get the ACL info of the original file.
1139 The ACL info is also used to check if a file is read-only (when opening the
1140file).
1141
1142 *read-only-share*
1143When MS-Windows shares a drive on the network it can be marked as read-only.
1144This means that even if the file read-only attribute is absent, and the ACL
1145settings on NT network shared drives allow writing to the file, you can still
1146not write to the file. Vim on Win32 platforms will detect read-only network
1147drives and will mark the file as read-only. You will not be able to override
1148it with |:write|.
1149
1150 *write-device*
1151When the file name is actually a device name, Vim will not make a backup (that
1152would be impossible). You need to use "!", since the device already exists.
1153Example for Unix: >
1154 :w! /dev/lpt0
1155and for MS-DOS or MS-Windows: >
1156 :w! lpt0
1157For Unix a device is detected when the name doesn't refer to a normal file or
1158a directory. A fifo or named pipe also looks like a device to Vim.
1159For MS-DOS and MS-Windows the device is detected by its name:
1160 AUX
1161 CON
1162 CLOCK$
1163 NUL
1164 PRN
1165 COMn n=1,2,3... etc
1166 LPTn n=1,2,3... etc
1167The names can be in upper- or lowercase.
1168
1169==============================================================================
11707. Writing and quitting *write-quit*
1171
1172 *:q* *:quit*
1173:q[uit] Quit the current window. Quit Vim if this is the last
1174 window. This fails when changes have been made and
1175 Vim refuses to |abandon| the current buffer, and when
1176 the last file in the argument list has not been
1177 edited.
1178
1179:conf[irm] q[uit] Quit, but give prompt when changes have been made, or
1180 the last file in the argument list has not been
1181 edited. See |:confirm| and 'confirm'. {not in Vi}
1182
1183:q[uit]! Quit without writing, also when visible buffers have
1184 changes. Does not exit when there are changed hidden
1185 buffers. Use ":qall!" to exit always.
1186
1187:cq[uit] Quit always, without writing, and return an error
1188 code. See |:cq|. Used for Manx's QuickFix mode (see
1189 |quickfix|). {not in Vi}
1190
1191 *:wq*
1192:wq Write the current file and quit. Writing fails when
1193 the file is read-only or the buffer does not have a
1194 name. Quitting fails when the last file in the
1195 argument list has not been edited.
1196
1197:wq! Write the current file and quit. Writing fails when
1198 the current buffer does not have a name.
1199
1200:wq {file} Write to {file} and quit. Quitting fails when the
1201 last file in the argument list has not been edited.
1202
1203:wq! {file} Write to {file} and quit.
1204
1205:[range]wq[!] [file] Same as above, but only write the lines in [range].
1206
1207 *:x* *:xit*
1208:[range]x[it][!] [file]
1209 Like ":wq", but write only when changes have been
1210 made.
1211 When 'hidden' is set and there are more windows, the
1212 current buffer becomes hidden, after writing the file.
1213
1214 *:exi* *:exit*
1215:[range]exi[t][!] [file]
1216 Same as :xit.
1217
1218 *ZZ*
1219ZZ Write current file, if modified, and quit (same as
1220 ":x"). (Note: If there are several windows for the
1221 current file, the file is written if it was modified
1222 and the window is closed).
1223
1224 *ZQ*
1225ZQ Quit without checking for changes (same as ":q!").
1226 {not in Vi}
1227
1228MULTIPLE WINDOWS AND BUFFERS *window-exit*
1229
1230 *:qa* *:qall*
1231:qa[ll] Exit Vim, unless there are some buffers which have been
1232 changed. (Use ":bmod" to go to the next modified buffer).
1233 When 'autowriteall' is set all changed buffers will be
1234 written, like |:wqall|. {not in Vi}
1235
1236:conf[irm] qa[ll]
1237 Exit Vim. Bring up a prompt when some buffers have been
1238 changed. See |:confirm|. {not in Vi}
1239
1240:qa[ll]! Exit Vim. Any changes to buffers are lost. {not in Vi}
1241
1242 *:quita* *:quitall*
1243:quita[ll][!] Same as ":qall". {not in Vi}
1244
1245:wqa[ll] *:wqa* *:wqall* *:xa* *:xall*
1246:xa[ll] Write all changed buffers and exit Vim. If there are buffers
1247 without a file name, which are readonly or which cannot be
1248 written for another reason, Vim will not quit. {not in Vi}
1249
1250:conf[irm] wqa[ll]
1251:conf[irm] xa[ll]
1252 Write all changed buffers and exit Vim. Bring up a prompt
1253 when some buffers are readonly or cannot be written for
1254 another reason. See |:confirm|. {not in Vi}
1255
1256:wqa[ll]!
1257:xa[ll]! Write all changed buffers, even the ones that are readonly,
1258 and exit Vim. If there are buffers without a file name or
1259 which cannot be written for another reason, Vim will not quit.
1260 {not in Vi}
1261
1262==============================================================================
12638. Editing binary files *edit-binary*
1264
1265Although Vim was made to edit text files, it is possible to edit binary
1266files. The |-b| Vim argument (b for binary) makes Vim do file I/O in binary
1267mode, and sets some options for editing binary files ('binary' on, 'textwidth'
1268to 0, 'modeline' off, 'expandtab' off). Setting the 'binary' option has the
1269same effect. Don't forget to do this before reading the file.
1270
1271There are a few things to remember when editing binary files:
1272- When editing executable files the number of characters must not change.
1273 Use only the "R" or "r" command to change text. Do not delete characters
1274 with "x" or by backspacing.
1275- Set the 'textwidth' option to 0. Otherwise lines will unexpectedly be
1276 split in two.
1277- When there are not many <EOL>s, the lines will become very long. If you
1278 want to edit a line that does not fit on the screen reset the 'wrap' option.
1279 Horizontal scrolling is used then. If a line becomes too long (more than
1280 about 32767 characters on the Amiga, much more on 32-bit systems, see
1281 |limits|) you cannot edit that line. The line will be split when reading
1282 the file. It is also possible that you get an "out of memory" error when
1283 reading the file.
1284- Make sure the 'binary' option is set BEFORE loading the
1285 file. Otherwise both <CR> <NL> and <NL> are considered to end a line
1286 and when the file is written the <NL> will be replaced with <CR> <NL>.
1287- <Nul> characters are shown on the screen as ^@. You can enter them with
1288 "CTRL-V CTRL-@" or "CTRL-V 000" {Vi cannot handle <Nul> characters in the
1289 file}
1290- To insert a <NL> character in the file split up a line. When writing the
1291 buffer to a file a <NL> will be written for the <EOL>.
1292- Vim normally appends an <EOL> at the end of the file if there is none.
1293 Setting the 'binary' option prevents this. If you want to add the final
1294 <EOL>, set the 'endofline' option. You can also read the value of this
1295 option to see if there was an <EOL> for the last line (you cannot see this
1296 in the text).
1297
1298==============================================================================
12999. Encryption *encryption*
1300
1301Vim is able to write files encrypted, and read them back. The encrypted text
1302cannot be read without the right key.
1303
1304Note: The swapfile and text in memory is not encrypted. A system
1305administrator will be able to see your text while you are editing it.
1306When filtering text with ":!filter" or using ":w !command" the text is not
1307encrypted, this may reveal it to others.
1308
1309WARNING: If you make a typo when entering the key and then write the file and
1310exit, the text will be lost!
1311
1312The normal way to work with encryption, is to use the ":X" command, which will
1313ask you to enter a key. A following write command will use that key to
1314encrypt the file. If you later edit the same file, Vim will ask you to enter
1315a key. If you type the same key as that was used for writing, the text will
1316be readable again. If you use a wrong key, it will be a mess.
1317
1318 *:X*
1319:X Prompt for an encryption key. The typing is done without showing the
1320 actual text, so that someone looking at the display won't see it.
1321 The typed key is stored in the 'key' option, which is used to encrypt
1322 the file when it is written. The file will remain unchanged until you
1323 write it. See also |-x|.
1324
1325The value of the 'key' options is used when text is written. When the option
1326is not empty, the written file will be encrypted, using the value as the
1327encryption key. A magic number is prepended, so that Vim can recognize that
1328the file is encrypted.
1329
1330To disable the encryption, reset the 'key' option to an empty value: >
1331 :set key=
1332
1333When reading a file that has been encrypted and this option is not empty, it
1334will be used for decryption. If the value is empty, you will be prompted to
1335enter the key. If you don't enter a key, the file is edited without being
1336decrypted.
1337
1338If want to start reading a file that uses a different key, set the 'key'
1339option to an empty string, so that Vim will prompt for a new one. Don't use
1340the ":set" command to enter the value, other people can read the command over
1341your shoulder.
1342
1343Since the value of the 'key' option is supposed to be a secret, its value can
1344never be viewed. You should not set this option in a vimrc file.
1345
1346An encrypted file can be recognized by the "file" command, if you add this
1347line to "/etc/magic", "/usr/share/misc/magic" or wherever your system has the
1348"magic" file: >
1349 0 string VimCrypt~ Vim encrypted file
1350
1351Notes:
1352- Encryption is not possible when doing conversion with 'charconvert'.
1353- Text you copy or delete goes to the numbered registers. The registers can
1354 be saved in the .viminfo file, where they could be read. Change your
1355 'viminfo' option to be safe.
1356- Someone can type commands in Vim when you walk away for a moment, he should
1357 not be able to get the key.
1358- If you make a typing mistake when entering the key, you might not be able to
1359 get your text back!
1360- If you type the key with a ":set key=value" command, it can be kept in the
1361 history, showing the 'key' value in a viminfo file.
1362- There is never 100% safety. The encryption in Vim has not been tested for
1363 robustness.
1364- The algorithm used is breakable. A 4 character key in about one hour, a 6
1365 character key in one day (on a Pentium 133 PC). This requires that you know
1366 some text that must appear in the file. An expert can break it for any key.
1367 When the text has been decrypted, this also means that the key can be
1368 revealed, and other files encrypted with the same key can be decrypted.
1369- Pkzip uses the same encryption, and US Govt has no objection to its export.
1370 Pkzip's public file APPNOTE.TXT describes this algorithm in detail.
1371- Vim originates from the Netherlands. That is where the sources come from.
1372 Thus the encryption code is not exported from the USA.
1373
1374==============================================================================
137510. Timestamps *timestamp* *timestamps*
1376
1377Vim remembers the modification timestamp of a file when you begin editing it.
1378This is used to avoid that you have two different versions of the same file
1379(without you knowing this).
1380
1381After a shell command is run (|:!cmd| |suspend| |:read!| |K|) timestamps are
1382compared for all buffers in a window. Vim will run any associated
1383|FileChangedShell| autocommands or display a warning for any files that have
1384changed. In the GUI this happens when Vim regains input focus.
1385
1386 *E321* *E462*
1387If you want to automatically reload a file when it has been changed outside of
1388Vim, set the 'autoread' option. This doesn't work at the moment you write the
1389file though, only when the file wasn't changed inside of Vim.
1390
1391Note that if a FileChangedShell autocommand is defined you will not get a
1392warning message or prompt. The autocommand is expected to handle this.
1393
1394There is no warning for a directory (e.g., in the |file-explorer|). But you
1395do get warned if you started editing a new file and it was created as a
1396directory later.
1397
1398When Vim notices the timestamp of a file has changed, and the file is being
1399edited in a buffer but has not changed, Vim checks if the contents of the file
1400is equal. This is done by reading the file again (into a hidden buffer, which
1401is immediately deleted again) and comparing the text. If the text is equal,
1402you will get no warning.
1403
1404If you don't get warned often enough you can use the following command.
1405
1406 *:checkt* *:checktime*
1407:checkt[ime] Check if any buffers were changed outside of Vim.
1408 This checks and warns you if you would end up with two
1409 versions of a file.
1410 If this is called from an autocommand, a ":global"
1411 command or is not typed the actual check is postponed
1412 until a moment the side effects (reloading the file)
1413 would be harmless.
1414 Each loaded buffer is checked for its associated file
1415 being changed. If the file was changed Vim will take
1416 action. If there are no changes in the buffer and
1417 'autoread' is set, the buffer is reloaded. Otherwise,
1418 you are offered the choice of reloading the file. If
1419 the file was deleted you get an error message.
1420 If the file previously didn't exist you get a warning
1421 if it exists now.
1422 Once a file has been checked the timestamp is reset,
1423 you will not be warned again.
1424
1425:[N]checkt[ime] {filename}
1426:[N]checkt[ime] [N]
1427 Check the timestamp of a specific buffer. The buffer
1428 may be specified by name, number or with a pattern.
1429
1430
1431Before writing a file the timestamp is checked. If it has changed, Vim will
1432ask if you really want to overwrite the file:
1433
1434 WARNING: The file has been changed since reading it!!!
1435 Do you really want to write to it (y/n)?
1436
1437If you hit 'y' Vim will continue writing the file. If you hit 'n' the write is
1438aborted. If you used ":wq" or "ZZ" Vim will not exit, you will get another
1439chance to write the file.
1440
1441The message would normally mean that somebody has written to the file after
1442the edit session started. This could be another person, in which case you
1443probably want to check if your changes to the file and the changes from the
1444other person should be merged. Write the file under another name and check for
1445differences (the "diff" program can be used for this).
1446
1447It is also possible that you modified the file yourself, from another edit
1448session or with another command (e.g., a filter command). Then you will know
1449which version of the file you want to keep.
1450
1451
1452 vim:tw=78:ts=8:ft=help:norl: