comparison runtime/doc/vim9.txt @ 30785:02b5d6f20db2 v9.0.0727

patch 9.0.0727: help in the repository differs from patched version too much Commit: https://github.com/vim/vim/commit/7c6cd443757348aa987eed87506549ab6b2079fe Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 11 21:54:04 2022 +0100 patch 9.0.0727: help in the repository differs from patched version too much Problem: Help in the repository differs from patched version too much. Solution: Make a patch for a few help files.
author Bram Moolenaar <Bram@vim.org>
date Tue, 11 Oct 2022 23:00:05 +0200
parents f68f43043842
children 5acd6f02ea35
comparison
equal deleted inserted replaced
30784:7e752660614b 30785:02b5d6f20db2
1 *vim9.txt* For Vim version 9.0. Last change: 2022 Oct 03 1 *vim9.txt* For Vim version 9.0. Last change: 2022 Oct 11
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
960 In compiled Vim9 script you get: 960 In compiled Vim9 script you get:
961 1 961 1
962 3 962 3
963 Generally, you should not change the list that is iterated over. Make a copy 963 Generally, you should not change the list that is iterated over. Make a copy
964 first if needed. 964 first if needed.
965 When looping over a list of lists, the nested lists can be changed. The loop
966 variable is "final", it cannot be changed but what its value can be changed.
965 *E1306* 967 *E1306*
966 The depth of loops, :for and :while loops added together, cannot exceed 10. 968 The depth of loops, :for and :while loops added together, cannot exceed 10.
967 969
968 970
969 Conditions and expressions ~ 971 Conditions and expressions ~