comparison runtime/doc/autocmd.txt @ 24278:4ab4ef0c48b1

Update runtime files. Commit: https://github.com/vim/vim/commit/dad4473f02e1fec86d43a2fc094536a4b27d3b25 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 31 20:07:33 2021 +0200 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Wed, 31 Mar 2021 20:15:04 +0200
parents 59efd230b373
children e3ec2ec8841a
comparison
equal deleted inserted replaced
24277:1ada4a68ac43 24278:4ab4ef0c48b1
1 *autocmd.txt* For Vim version 8.2. Last change: 2021 Jan 28 1 *autocmd.txt* For Vim version 8.2. Last change: 2021 Mar 13
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1517 matching autocommands were executed. 1517 matching autocommands were executed.
1518 1518
1519 *:doautoa* *:doautoall* 1519 *:doautoa* *:doautoall*
1520 :doautoa[ll] [<nomodeline>] [group] {event} [fname] 1520 :doautoa[ll] [<nomodeline>] [group] {event} [fname]
1521 Like ":doautocmd", but apply the autocommands to each 1521 Like ":doautocmd", but apply the autocommands to each
1522 loaded buffer. Note that [fname] is used to select 1522 loaded buffer. The current buffer is done last.
1523 the autocommands, not the buffers to which they are 1523
1524 applied. 1524 Note that [fname] is used to select the autocommands,
1525 not the buffers to which they are applied.
1526
1525 Careful: Don't use this for autocommands that delete a 1527 Careful: Don't use this for autocommands that delete a
1526 buffer, change to another buffer or change the 1528 buffer, change to another buffer or change the
1527 contents of a buffer; the result is unpredictable. 1529 contents of a buffer; the result is unpredictable.
1528 This command is intended for autocommands that set 1530 This command is intended for autocommands that set
1529 options, change highlighting, and things like that. 1531 options, change highlighting, and things like that.