comparison runtime/doc/autocmd.txt @ 15512:f0f06837a699

Update runtime files. commit https://github.com/vim/vim/commit/d09091d4955c5f41de69928f2db85611ed54ed23 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 17 16:07:22 2019 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Jan 2019 16:15:08 +0100
parents 3e2e1608efa4
children 7cfe57329284
comparison
equal deleted inserted replaced
15511:f41122780189 15512:f0f06837a699
1 *autocmd.txt* For Vim version 8.1. Last change: 2018 Dec 28 1 *autocmd.txt* For Vim version 8.1. Last change: 2019 Jan 11
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1015 triggered halfway executing another event, 1015 triggered halfway executing another event,
1016 especially if file I/O, a shell command or 1016 especially if file I/O, a shell command or
1017 anything else that takes time is involved. 1017 anything else that takes time is involved.
1018 *TextChanged* 1018 *TextChanged*
1019 TextChanged After a change was made to the text in the 1019 TextChanged After a change was made to the text in the
1020 current buffer in Normal mode. That is when 1020 current buffer in Normal mode. That is after
1021 |b:changedtick| has changed. 1021 |b:changedtick| has changed (also when that
1022 happened before the TextChanged autocommand
1023 was defined).
1022 Not triggered when there is typeahead or when 1024 Not triggered when there is typeahead or when
1023 an operator is pending. 1025 an operator is pending.
1024 Careful: This is triggered very often, don't 1026 Careful: This is triggered very often, don't
1025 do anything that the user does not expect or 1027 do anything that the user does not expect or
1026 that is slow. 1028 that is slow.